From b669580aeb5209004dec00a1b1447c7949fc0073 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Thu, 21 Dec 2023 00:55:51 -0600 Subject: [PATCH 001/223] VideoCommon: handle asset memory going over reserved limit correctly by erroring when the memory is exceeded and not allowing more assets to load until memory is released --- .../VideoCommon/Assets/CustomAssetLoader.cpp | 18 ++++++++++-------- .../VideoCommon/Assets/CustomAssetLoader.h | 7 +++++++ 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp b/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp index 134b18b49645..2812e422bfdc 100644 --- a/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp +++ b/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp @@ -3,7 +3,6 @@ #include "VideoCommon/Assets/CustomAssetLoader.h" -#include "Common/Logging/Log.h" #include "Common/MemoryUtil.h" #include "VideoCommon/Assets/CustomAssetLibrary.h" @@ -48,19 +47,22 @@ void CustomAssetLoader::Init() m_asset_load_thread.Reset("Custom Asset Loader", [this](std::weak_ptr asset) { if (auto ptr = asset.lock()) { + if (m_memory_exceeded) + return; + if (ptr->Load()) { std::lock_guard lk(m_asset_load_lock); const std::size_t asset_memory_size = ptr->GetByteSizeInMemory(); - if (m_max_memory_available >= m_total_bytes_loaded + asset_memory_size) - { - m_total_bytes_loaded += asset_memory_size; - m_assets_to_monitor.try_emplace(ptr->GetAssetId(), ptr); - } - else + m_total_bytes_loaded += asset_memory_size; + m_assets_to_monitor.try_emplace(ptr->GetAssetId(), ptr); + if (m_total_bytes_loaded > m_max_memory_available) { - ERROR_LOG_FMT(VIDEO, "Failed to load asset {} because there was not enough memory.", + ERROR_LOG_FMT(VIDEO, + "Asset memory exceeded with asset '{}', future assets won't load until " + "memory is available.", ptr->GetAssetId()); + m_memory_exceeded = true; } } } diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLoader.h b/Source/Core/VideoCommon/Assets/CustomAssetLoader.h index 920f62e8309e..ebf1e014568d 100644 --- a/Source/Core/VideoCommon/Assets/CustomAssetLoader.h +++ b/Source/Core/VideoCommon/Assets/CustomAssetLoader.h @@ -10,6 +10,7 @@ #include #include "Common/Flag.h" +#include "Common/Logging/Log.h" #include "Common/WorkQueueThread.h" #include "VideoCommon/Assets/CustomAsset.h" #include "VideoCommon/Assets/MaterialAsset.h" @@ -67,6 +68,11 @@ class CustomAssetLoader std::lock_guard lk(m_asset_load_lock); m_total_bytes_loaded -= a->GetByteSizeInMemory(); m_assets_to_monitor.erase(a->GetAssetId()); + if (m_max_memory_available >= m_total_bytes_loaded && m_memory_exceeded) + { + INFO_LOG_FMT(VIDEO, "Asset memory went below limit, new assets can begin loading."); + m_memory_exceeded = false; + } } delete a; }); @@ -85,6 +91,7 @@ class CustomAssetLoader std::size_t m_total_bytes_loaded = 0; std::size_t m_max_memory_available = 0; + std::atomic_bool m_memory_exceeded = false; std::map> m_assets_to_monitor; From 3ae535fa05980d37ad0a96bbf37848e4de606a7e Mon Sep 17 00:00:00 2001 From: AGuy27 <91433739+AGuy27@users.noreply.github.com> Date: Sat, 3 Feb 2024 00:35:16 -0500 Subject: [PATCH 002/223] Create G5BE4Z.ini Fixes Strike Force Bowling blank texture --- Data/Sys/GameSettings/G5BE4Z.ini | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Data/Sys/GameSettings/G5BE4Z.ini diff --git a/Data/Sys/GameSettings/G5BE4Z.ini b/Data/Sys/GameSettings/G5BE4Z.ini new file mode 100644 index 000000000000..41ce033c2bb7 --- /dev/null +++ b/Data/Sys/GameSettings/G5BE4Z.ini @@ -0,0 +1,3 @@ +[Video_Hacks] +EFBToTextureEnable = False +DeferEFBCopies = False From 1831a8cec51fa425249d46a97fcbc0d1188ef004 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Sat, 27 Jan 2024 02:15:31 +0400 Subject: [PATCH 003/223] BBA/HLE: Add missing PSH flag --- Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp index 84c47c3f3c67..04bb76340726 100644 --- a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp +++ b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp @@ -275,7 +275,7 @@ CEXIETHERNET::BuiltInBBAInterface::TryGetDataFromSocket(StackRef* ref) if (datasize > 0) { Common::TCPPacket packet(ref->bba_mac, ref->my_mac, ref->from, ref->to, ref->seq_num, - ref->ack_num, TCP_FLAG_ACK); + ref->ack_num, TCP_FLAG_ACK | TCP_FLAG_PSH); packet.data = std::vector(buffer.begin(), buffer.begin() + datasize); // build buffer From 573102d4cff1c7f74e5cb7567bc9cb95c42ff20b Mon Sep 17 00:00:00 2001 From: AGuy27 <91433739+AGuy27@users.noreply.github.com> Date: Sat, 3 Feb 2024 15:32:13 -0500 Subject: [PATCH 004/223] Update and rename G5BE4Z.ini to G5B.ini --- Data/Sys/GameSettings/{G5BE4Z.ini => G5B.ini} | 1 + 1 file changed, 1 insertion(+) rename Data/Sys/GameSettings/{G5BE4Z.ini => G5B.ini} (66%) diff --git a/Data/Sys/GameSettings/G5BE4Z.ini b/Data/Sys/GameSettings/G5B.ini similarity index 66% rename from Data/Sys/GameSettings/G5BE4Z.ini rename to Data/Sys/GameSettings/G5B.ini index 41ce033c2bb7..97e1e3b2c0f0 100644 --- a/Data/Sys/GameSettings/G5BE4Z.ini +++ b/Data/Sys/GameSettings/G5B.ini @@ -1,3 +1,4 @@ +# G5BE4Z - Strike Force Bowling [Video_Hacks] EFBToTextureEnable = False DeferEFBCopies = False From 1ed7b35710ed9184dbda84214e196d6d8c5bf38e Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 5 Feb 2024 19:41:25 -0500 Subject: [PATCH 005/223] Retain Save State Folder Adds a setting field under the hood to retain which folder the player last saved/loaded a state to/from, so that the dialog box to select a state to save/load reopens at that folder. --- Source/Core/Core/Config/UISettings.cpp | 1 + Source/Core/Core/Config/UISettings.h | 1 + Source/Core/DolphinQt/MainWindow.cpp | 19 +++++++++++++------ 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/Config/UISettings.cpp b/Source/Core/Core/Config/UISettings.cpp index 881868433cd1..c15b19a601d9 100644 --- a/Source/Core/Core/Config/UISettings.cpp +++ b/Source/Core/Core/Config/UISettings.cpp @@ -15,5 +15,6 @@ const Info MAIN_USE_GAME_COVERS{{System::Main, "General", "UseGameCovers"} #endif const Info MAIN_FOCUSED_HOTKEYS{{System::Main, "General", "HotkeysRequireFocus"}, true}; const Info MAIN_RECURSIVE_ISO_PATHS{{System::Main, "General", "RecursiveISOPaths"}, false}; +const Info MAIN_CURRENT_STATE_PATH{{System::Main, "General", "CurrentStatePath"}, ""}; } // namespace Config diff --git a/Source/Core/Core/Config/UISettings.h b/Source/Core/Core/Config/UISettings.h index 4bcc0a0d7143..79aec6ffdaf5 100644 --- a/Source/Core/Core/Config/UISettings.h +++ b/Source/Core/Core/Config/UISettings.h @@ -19,5 +19,6 @@ extern const Info MAIN_USE_DISCORD_PRESENCE; extern const Info MAIN_USE_GAME_COVERS; extern const Info MAIN_FOCUSED_HOTKEYS; extern const Info MAIN_RECURSIVE_ISO_PATHS; +extern const Info MAIN_CURRENT_STATE_PATH; } // namespace Config diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 72b075f12b44..ff028f5d376b 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -45,6 +45,7 @@ #include "Core/Config/AchievementSettings.h" #include "Core/Config/MainSettings.h" #include "Core/Config/NetplaySettings.h" +#include "Core/Config/UISettings.h" #include "Core/Config/WiimoteSettings.h" #include "Core/Core.h" #include "Core/FreeLookManager.h" @@ -1404,18 +1405,24 @@ void MainWindow::ShowInfinityBase() void MainWindow::StateLoad() { - QString path = - DolphinFileDialog::getOpenFileName(this, tr("Select a File"), QDir::currentPath(), - tr("All Save States (*.sav *.s##);; All Files (*)")); + QString dialog_path = (Config::Get(Config::MAIN_CURRENT_STATE_PATH).empty()) ? + QDir::currentPath() : + QString::fromStdString(Config::Get(Config::MAIN_CURRENT_STATE_PATH)); + QString path = DolphinFileDialog::getOpenFileName( + this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s##);; All Files (*)")); + Config::SetBase(Config::MAIN_CURRENT_STATE_PATH, QFileInfo(path).dir().path().toStdString()); if (!path.isEmpty()) State::LoadAs(path.toStdString()); } void MainWindow::StateSave() { - QString path = - DolphinFileDialog::getSaveFileName(this, tr("Select a File"), QDir::currentPath(), - tr("All Save States (*.sav *.s##);; All Files (*)")); + QString dialog_path = (Config::Get(Config::MAIN_CURRENT_STATE_PATH).empty()) ? + QDir::currentPath() : + QString::fromStdString(Config::Get(Config::MAIN_CURRENT_STATE_PATH)); + QString path = DolphinFileDialog::getSaveFileName( + this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s##);; All Files (*)")); + Config::SetBase(Config::MAIN_CURRENT_STATE_PATH, QFileInfo(path).dir().path().toStdString()); if (!path.isEmpty()) State::SaveAs(path.toStdString()); } From b5c5371848084f6b8738c3be85267c2cd2c9fbc2 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 6 Feb 2024 21:58:07 +0100 Subject: [PATCH 006/223] Arm64Emitter: Don't optimize ADD to MOV for SP Unlike ADD (immediate), MOV (register) treats SP as ZR. Therefore the ADDI2R optimization that was added in 67791d227c can't optimize ADD to MOV when exactly one of the registers is SP. There currently isn't any code in Dolphin that calls ADDI2R with parameters that would trigger this case. --- Source/Core/Common/Arm64Emitter.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/Arm64Emitter.cpp b/Source/Core/Common/Arm64Emitter.cpp index 4dd39c4357db..f769edc2f381 100644 --- a/Source/Core/Common/Arm64Emitter.cpp +++ b/Source/Core/Common/Arm64Emitter.cpp @@ -4222,9 +4222,15 @@ void ARM64XEmitter::ADDI2R_internal(ARM64Reg Rd, ARM64Reg Rn, u64 imm, bool nega // Special path for zeroes if (imm == 0 && !flags) { - if (Rd != Rn) + if (Rd == Rn) + { + return; + } + else if (DecodeReg(Rd) != DecodeReg(ARM64Reg::SP) && DecodeReg(Rn) != DecodeReg(ARM64Reg::SP)) + { MOV(Rd, Rn); - return; + return; + } } // Regular fast paths, aarch64 immediate instructions From 5949911a5aff7a7946fd71589c38897ffc970b36 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Fri, 10 Nov 2023 00:49:54 -0600 Subject: [PATCH 007/223] VideoCommon: Don't use indexed output for fbfetch A nonzero index makes no sense, and Mesa doesn't like it when you supply an index --- Source/Core/VideoCommon/PixelShaderGen.cpp | 13 +++++++++---- Source/Core/VideoCommon/UberShaderPixel.cpp | 13 +++++++++---- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Source/Core/VideoCommon/PixelShaderGen.cpp b/Source/Core/VideoCommon/PixelShaderGen.cpp index 0d6efe9f6ada..bf574b8fda74 100644 --- a/Source/Core/VideoCommon/PixelShaderGen.cpp +++ b/Source/Core/VideoCommon/PixelShaderGen.cpp @@ -1000,10 +1000,15 @@ ShaderCode GeneratePixelShaderCode(APIType api_type, const ShaderHostConfig& hos else #endif { - out.Write("{} {} {} {};\n", "FRAGMENT_OUTPUT_LOCATION_INDEXED(0, 0)", - use_framebuffer_fetch ? "FRAGMENT_INOUT" : "out", - uid_data->uint_output ? "uvec4" : "vec4", - use_framebuffer_fetch ? "real_ocol0" : "ocol0"); + if (use_framebuffer_fetch) + { + out.Write("FRAGMENT_OUTPUT_LOCATION(0) FRAGMENT_INOUT vec4 real_ocol0;\n"); + } + else + { + out.Write("FRAGMENT_OUTPUT_LOCATION_INDEXED(0, 0) out {} ocol0;\n", + uid_data->uint_output ? "uvec4" : "vec4"); + } if (!uid_data->no_dual_src) { diff --git a/Source/Core/VideoCommon/UberShaderPixel.cpp b/Source/Core/VideoCommon/UberShaderPixel.cpp index 2409dc41eb85..ca7658140f92 100644 --- a/Source/Core/VideoCommon/UberShaderPixel.cpp +++ b/Source/Core/VideoCommon/UberShaderPixel.cpp @@ -370,10 +370,15 @@ ShaderCode GenPixelShader(APIType api_type, const ShaderHostConfig& host_config, else #endif { - out.Write("{} {} {} {};\n", "FRAGMENT_OUTPUT_LOCATION_INDEXED(0, 0)", - use_framebuffer_fetch ? "FRAGMENT_INOUT" : "out", - uid_data->uint_output ? "uvec4" : "vec4", - use_framebuffer_fetch ? "real_ocol0" : "ocol0"); + if (use_framebuffer_fetch) + { + out.Write("FRAGMENT_OUTPUT_LOCATION(0) FRAGMENT_INOUT vec4 real_ocol0;\n"); + } + else + { + out.Write("FRAGMENT_OUTPUT_LOCATION_INDEXED(0, 0) out {} ocol0;\n", + uid_data->uint_output ? "uvec4" : "vec4"); + } if (use_dual_source) { From 33dd3b078cef5ef5f05dac2799a5dfeadb1b1ecf Mon Sep 17 00:00:00 2001 From: Sketch <75850871+SketchMaster2001@users.noreply.github.com> Date: Wed, 7 Feb 2024 09:36:36 -0500 Subject: [PATCH 008/223] Correctly log register errors --- .../Core/Core/IOS/Network/KD/NetKDRequest.cpp | 28 +++++++++++++++++-- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp b/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp index 56bda89f65f4..df1457f357e9 100644 --- a/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp +++ b/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp @@ -884,6 +884,19 @@ IPCReply NetKDRequestDevice::HandleRequestRegisterUserId(const IOS::HLE::IOCtlRe // Always 0 for some reason, never modified anywhere else memory.Write_U32(0, request.buffer_out + 4); + if (m_ios.GetIOSC().IsUsingDefaultId()) + { + // If the user is using the default console ID, the below will always throw an error if it needs + // to be registered. Due to the high likelihood of multiple users having the same Wii Number, + // Nintendo's register endpoint will most likely return a duplicate registration error. + m_config.SetCreationStage(NWC24::NWC24CreationStage::Registered); + m_config.WriteConfig(); + m_config.WriteCBK(); + + WriteReturnValue(memory, NWC24::WC24_OK, request.buffer_out); + return IPCReply{IPC_SUCCESS}; + } + // First check if the message config file is in the correct state to handle this. if (m_config.IsRegistered()) { @@ -936,14 +949,23 @@ IPCReply NetKDRequestDevice::HandleRequestRegisterUserId(const IOS::HLE::IOCtlRe const std::string response_str = {response->begin(), response->end()}; const std::string code = GetValueFromCGIResponse(response_str, "cd"); - if (code != "100") + s32 cgi_code{}; + const bool did_parse = TryParse(code, &cgi_code); + if (!did_parse) + { + ERROR_LOG_FMT(IOS_WC24, "NET_KD_REQ: IOCTL_NWC24_REQUEST_REGISTER_USER_ID: Mail server " + "returned invalid CGI response code."); + LogError(ErrorType::Account, NWC24::WC24_ERR_SERVER); + } + + if (cgi_code != 100) { ERROR_LOG_FMT(IOS_WC24, "NET_KD_REQ: IOCTL_NWC24_REQUEST_REGISTER_USER_ID: Mail server returned " "non-success code: {}", - code); + cgi_code); WriteReturnValue(memory, NWC24::WC24_ERR_SERVER, request.buffer_out); - LogError(ErrorType::Account, NWC24::WC24_ERR_SERVER); + LogError(ErrorType::CGI, cgi_code); return IPCReply{IPC_SUCCESS}; } From d17495a75a51b0c695554d40649ab1b2bc9c249e Mon Sep 17 00:00:00 2001 From: "Gregoire L. D." Date: Wed, 7 Feb 2024 19:15:27 +0100 Subject: [PATCH 009/223] Fix loading GBA configurations --- Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp b/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp index 2ca46691d2b6..1b5addcd282b 100644 --- a/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp +++ b/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp @@ -208,8 +208,9 @@ class INIGameConfigLayerLoader final : public Config::ConfigLayerLoader if (m_id == "00000000") return; - const std::array, 2> profile_info = {{ + const std::array, 3> profile_info = {{ std::make_tuple("Pad", "GCPad", Config::System::GCPad), + std::make_tuple("GBA", "GBA", Config::System::GCPad), std::make_tuple("Wiimote", "Wiimote", Config::System::WiiPad), }}; From e6ee217a7ce81ffd2e84d978aaf960874ec2a91d Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Tue, 6 Feb 2024 03:31:34 +0100 Subject: [PATCH 010/223] Core: Move Emulation IOS instance to System. --- Source/Core/Core/Boot/Boot.cpp | 6 ++--- Source/Core/Core/Boot/Boot_BS2Emu.cpp | 10 ++++---- Source/Core/Core/Boot/Boot_WiiWAD.cpp | 5 ++-- Source/Core/Core/Core.cpp | 2 +- Source/Core/Core/HW/HW.cpp | 4 ++-- Source/Core/Core/HW/ProcessorInterface.cpp | 4 ++-- Source/Core/Core/HW/SystemTimers.cpp | 2 +- Source/Core/Core/HW/WII_IPC.cpp | 8 +++---- Source/Core/Core/IOS/DI/DI.cpp | 2 +- Source/Core/Core/IOS/Device.cpp | 2 +- Source/Core/Core/IOS/ES/ES.cpp | 6 ++--- Source/Core/Core/IOS/IOS.cpp | 24 +++++++------------ Source/Core/Core/IOS/IOS.h | 3 +-- Source/Core/Core/System.cpp | 12 ++++++++++ Source/Core/Core/System.h | 7 ++++++ Source/Core/Core/WiiRoot.cpp | 4 ++-- Source/Core/Core/WiiUtils.cpp | 3 ++- Source/Core/DolphinNoGUI/Platform.cpp | 4 ++-- .../Config/WiimoteControllersWidget.cpp | 4 ++-- .../Core/DolphinQt/Debugger/NetworkWidget.cpp | 2 +- Source/Core/UICommon/UICommon.cpp | 2 +- 21 files changed, 65 insertions(+), 51 deletions(-) diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index 4399d1d5e570..ef87f3c396df 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -573,7 +573,7 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, // Because there is no TMD to get the requested system (IOS) version from, // we default to IOS58, which is the version used by the Homebrew Channel. SetupWiiMemory(system, IOS::HLE::IOSC::ConsoleType::Retail); - IOS::HLE::GetIOS()->BootIOS(Titles::IOS(58)); + system.GetIOS()->BootIOS(Titles::IOS(58)); } else { @@ -701,7 +701,7 @@ void UpdateStateFlags(std::function update_function) { CreateSystemMenuTitleDirs(); const std::string file_path = Common::GetTitleDataPath(Titles::SYSTEM_MENU) + "/" WII_STATE; - const auto fs = IOS::HLE::GetIOS()->GetFS(); + const auto fs = Core::System::GetInstance().GetIOS()->GetFS(); constexpr IOS::HLE::FS::Mode rw_mode = IOS::HLE::FS::Mode::ReadWrite; const auto file = fs->CreateAndOpenFile(IOS::SYSMENU_UID, IOS::SYSMENU_GID, file_path, {rw_mode, rw_mode, rw_mode}); @@ -721,7 +721,7 @@ void UpdateStateFlags(std::function update_function) void CreateSystemMenuTitleDirs() { - const auto& es = IOS::HLE::GetIOS()->GetESCore(); + const auto& es = Core::System::GetInstance().GetIOS()->GetESCore(); es.CreateTitleDirectories(Titles::SYSTEM_MENU, IOS::SYSMENU_GID); } diff --git a/Source/Core/Core/Boot/Boot_BS2Emu.cpp b/Source/Core/Core/Boot/Boot_BS2Emu.cpp index 1e1f9d993b35..09f9e5128a2e 100644 --- a/Source/Core/Core/Boot/Boot_BS2Emu.cpp +++ b/Source/Core/Core/Boot/Boot_BS2Emu.cpp @@ -362,7 +362,7 @@ bool CBoot::SetupWiiMemory(Core::System& system, IOS::HLE::IOSC::ConsoleType con const std::string settings_file_path(Common::GetTitleDataPath(Titles::SYSTEM_MENU) + "/" WII_SETTING); - const auto fs = IOS::HLE::GetIOS()->GetFS(); + const auto fs = system.GetIOS()->GetFS(); { Common::SettingsHandler::Buffer data; const auto file = fs->OpenFile(IOS::SYSMENU_UID, IOS::SYSMENU_GID, settings_file_path, @@ -502,7 +502,7 @@ static void WriteEmptyPlayRecord() { CreateSystemMenuTitleDirs(); const std::string file_path = Common::GetTitleDataPath(Titles::SYSTEM_MENU) + "/play_rec.dat"; - const auto fs = IOS::HLE::GetIOS()->GetFS(); + const auto fs = Core::System::GetInstance().GetIOS()->GetFS(); constexpr IOS::HLE::FS::Mode rw_mode = IOS::HLE::FS::Mode::ReadWrite; const auto playrec_file = fs->CreateAndOpenFile(IOS::SYSMENU_UID, IOS::SYSMENU_GID, file_path, {rw_mode, rw_mode, rw_mode}); @@ -559,11 +559,11 @@ bool CBoot::EmulatedBS2_Wii(Core::System& system, const Core::CPUThreadGuard& gu const u64 ios = ios_override >= 0 ? Titles::IOS(static_cast(ios_override)) : tmd.GetIOSId(); const auto console_type = volume.GetTicket(data_partition).GetConsoleType(); - if (!SetupWiiMemory(system, console_type) || !IOS::HLE::GetIOS()->BootIOS(ios)) + if (!SetupWiiMemory(system, console_type) || !system.GetIOS()->BootIOS(ios)) return false; auto di = - std::static_pointer_cast(IOS::HLE::GetIOS()->GetDeviceByName("/dev/di")); + std::static_pointer_cast(system.GetIOS()->GetDeviceByName("/dev/di")); di->InitializeIfFirstTime(); di->ChangePartition(data_partition); @@ -596,7 +596,7 @@ bool CBoot::EmulatedBS2_Wii(Core::System& system, const Core::CPUThreadGuard& gu // Warning: This call will set incorrect running game metadata if our volume parameter // doesn't point to the same disc as the one that's inserted in the emulated disc drive! - IOS::HLE::GetIOS()->GetESDevice()->DIVerify(tmd, volume.GetTicket(partition)); + system.GetIOS()->GetESDevice()->DIVerify(tmd, volume.GetTicket(partition)); return true; } diff --git a/Source/Core/Core/Boot/Boot_WiiWAD.cpp b/Source/Core/Core/Boot/Boot_WiiWAD.cpp index 848fcedbf85d..8b3d78033508 100644 --- a/Source/Core/Core/Boot/Boot_WiiWAD.cpp +++ b/Source/Core/Core/Boot/Boot_WiiWAD.cpp @@ -12,6 +12,7 @@ #include "Core/IOS/ES/Formats.h" #include "Core/IOS/IOS.h" #include "Core/IOS/IOSC.h" +#include "Core/System.h" #include "Core/WiiUtils.h" #include "DiscIO/VolumeWad.h" @@ -21,7 +22,7 @@ bool CBoot::BootNANDTitle(Core::System& system, const u64 title_id) state->type = 0x04; // TYPE_NANDBOOT }); - auto es = IOS::HLE::GetIOS()->GetESDevice(); + auto es = system.GetIOS()->GetESDevice(); const IOS::ES::TicketReader ticket = es->GetCore().FindSignedTicket(title_id); auto console_type = IOS::HLE::IOSC::ConsoleType::Retail; if (ticket.IsValid()) @@ -34,7 +35,7 @@ bool CBoot::BootNANDTitle(Core::System& system, const u64 title_id) bool CBoot::Boot_WiiWAD(Core::System& system, const DiscIO::VolumeWAD& wad) { - if (!WiiUtils::InstallWAD(*IOS::HLE::GetIOS(), wad, WiiUtils::InstallType::Temporary)) + if (!WiiUtils::InstallWAD(*system.GetIOS(), wad, WiiUtils::InstallType::Temporary)) { PanicAlertFmtT("Cannot boot this WAD because it could not be installed to the NAND."); return false; diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 4fd75d056fba..ce23f41fb563 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -1016,7 +1016,7 @@ void UpdateWantDeterminism(bool initial) RunAsCPUThread([&] { s_wants_determinism = new_want_determinism; - const auto ios = IOS::HLE::GetIOS(); + const auto ios = system.GetIOS(); if (ios) ios->UpdateWantDeterminism(new_want_determinism); diff --git a/Source/Core/Core/HW/HW.cpp b/Source/Core/Core/HW/HW.cpp index 61702e45c5fc..20aed37a1733 100644 --- a/Source/Core/Core/HW/HW.cpp +++ b/Source/Core/Core/HW/HW.cpp @@ -63,7 +63,7 @@ void Init(Core::System& system, const Sram* override_sram) void Shutdown(Core::System& system) { // IOS should always be shut down regardless of IsWii because it can be running in GC mode (MIOS). - IOS::HLE::Shutdown(); // Depends on Memory + IOS::HLE::Shutdown(system); // Depends on Memory system.GetWiiIPC().Shutdown(); system.GetSystemTimers().Shutdown(); @@ -111,7 +111,7 @@ void DoState(Core::System& system, PointerWrap& p) { system.GetWiiIPC().DoState(p); p.DoMarker("IOS"); - IOS::HLE::GetIOS()->DoState(p); + system.GetIOS()->DoState(p); p.DoMarker("IOS::HLE"); } diff --git a/Source/Core/Core/HW/ProcessorInterface.cpp b/Source/Core/Core/HW/ProcessorInterface.cpp index 9bd8a4be8806..679f5d40926e 100644 --- a/Source/Core/Core/HW/ProcessorInterface.cpp +++ b/Source/Core/Core/HW/ProcessorInterface.cpp @@ -232,7 +232,7 @@ void ProcessorInterfaceManager::ToggleResetButtonCallback(Core::System& system, void ProcessorInterfaceManager::IOSNotifyResetButtonCallback(Core::System& system, u64 userdata, s64 cyclesLate) { - const auto ios = IOS::HLE::GetIOS(); + const auto ios = system.GetIOS(); if (!ios) return; @@ -244,7 +244,7 @@ void ProcessorInterfaceManager::IOSNotifyResetButtonCallback(Core::System& syste void ProcessorInterfaceManager::IOSNotifyPowerButtonCallback(Core::System& system, u64 userdata, s64 cyclesLate) { - const auto ios = IOS::HLE::GetIOS(); + const auto ios = system.GetIOS(); if (!ios) return; diff --git a/Source/Core/Core/HW/SystemTimers.cpp b/Source/Core/Core/HW/SystemTimers.cpp index 47c2b064a1e9..022b94bf4d66 100644 --- a/Source/Core/Core/HW/SystemTimers.cpp +++ b/Source/Core/Core/HW/SystemTimers.cpp @@ -103,7 +103,7 @@ void SystemTimersManager::IPC_HLE_UpdateCallback(Core::System& system, u64 userd { if (system.IsWii()) { - IOS::HLE::GetIOS()->UpdateDevices(); + system.GetIOS()->UpdateDevices(); auto& system_timers = system.GetSystemTimers(); system.GetCoreTiming().ScheduleEvent(system_timers.m_ipc_hle_period - cycles_late, system_timers.m_event_type_ipc_hle); diff --git a/Source/Core/Core/HW/WII_IPC.cpp b/Source/Core/Core/HW/WII_IPC.cpp index e8db89ff3860..b3c7289a87f2 100644 --- a/Source/Core/Core/HW/WII_IPC.cpp +++ b/Source/Core/Core/HW/WII_IPC.cpp @@ -140,8 +140,8 @@ void WiiIPC::RegisterMMIO(MMIO::Mapping* mmio, u32 base) if ((val >> 2 & 1 && wii_ipc.m_ctrl.IY1) || (val >> 1 & 1 && wii_ipc.m_ctrl.IY2)) wii_ipc.m_ppc_irq_flags |= INT_CAUSE_IPC_BROADWAY; if (wii_ipc.m_ctrl.X1) - HLE::GetIOS()->EnqueueIPCRequest(wii_ipc.m_ppc_msg); - HLE::GetIOS()->UpdateIPC(); + system.GetIOS()->EnqueueIPCRequest(wii_ipc.m_ppc_msg); + system.GetIOS()->UpdateIPC(); system.GetCoreTiming().ScheduleEvent(0, wii_ipc.m_event_type_update_interrupts, 0); })); @@ -152,7 +152,7 @@ void WiiIPC::RegisterMMIO(MMIO::Mapping* mmio, u32 base) MMIO::ComplexWrite([](Core::System& system, u32, u32 val) { auto& wii_ipc = system.GetWiiIPC(); wii_ipc.m_ppc_irq_flags &= ~val; - HLE::GetIOS()->UpdateIPC(); + system.GetIOS()->UpdateIPC(); system.GetCoreTiming().ScheduleEvent(0, wii_ipc.m_event_type_update_interrupts, 0); })); @@ -163,7 +163,7 @@ void WiiIPC::RegisterMMIO(MMIO::Mapping* mmio, u32 base) wii_ipc.m_ppc_irq_masks = val; if (wii_ipc.m_ppc_irq_masks & INT_CAUSE_IPC_BROADWAY) // wtf? wii_ipc.Reset(); - HLE::GetIOS()->UpdateIPC(); + system.GetIOS()->UpdateIPC(); system.GetCoreTiming().ScheduleEvent(0, wii_ipc.m_event_type_update_interrupts, 0); })); diff --git a/Source/Core/Core/IOS/DI/DI.cpp b/Source/Core/Core/IOS/DI/DI.cpp index 3d8f228b029e..0f1413229f6c 100644 --- a/Source/Core/Core/IOS/DI/DI.cpp +++ b/Source/Core/Core/IOS/DI/DI.cpp @@ -602,7 +602,7 @@ std::optional DIDevice::StartImmediateTransfer(const IOCtlRe static std::shared_ptr GetDevice() { - auto ios = GetIOS(); + auto ios = Core::System::GetInstance().GetIOS(); if (!ios) return nullptr; auto di = ios->GetDeviceByName("/dev/di"); diff --git a/Source/Core/Core/IOS/Device.cpp b/Source/Core/Core/IOS/Device.cpp index ded8e0422426..d826f981a6d5 100644 --- a/Source/Core/Core/IOS/Device.cpp +++ b/Source/Core/Core/IOS/Device.cpp @@ -28,7 +28,7 @@ OpenRequest::OpenRequest(Core::System& system, const u32 address_) : Request(sys auto& memory = system.GetMemory(); path = memory.GetString(memory.Read_U32(address + 0xc)); flags = static_cast(memory.Read_U32(address + 0x10)); - const EmulationKernel* ios = GetIOS(); + const EmulationKernel* ios = system.GetIOS(); if (ios) { uid = ios->GetUidForPPC(); diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index fa063df947f8..42513ecd8bed 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -131,15 +131,15 @@ void ESDevice::InitializeEmulationState(CoreTiming::CoreTimingManager& core_timi { s_finish_init_event = core_timing.RegisterEvent("IOS-ESFinishInit", [](Core::System& system_, u64, s64) { - GetIOS()->GetESDevice()->FinishInit(); + system_.GetIOS()->GetESDevice()->FinishInit(); }); s_reload_ios_for_ppc_launch_event = core_timing.RegisterEvent( "IOS-ESReloadIOSForPPCLaunch", [](Core::System& system_, u64 ios_id, s64) { - GetIOS()->GetESDevice()->LaunchTitle(ios_id, HangPPC::Yes); + system_.GetIOS()->GetESDevice()->LaunchTitle(ios_id, HangPPC::Yes); }); s_bootstrap_ppc_for_launch_event = core_timing.RegisterEvent("IOS-ESBootstrapPPCForLaunch", [](Core::System& system_, u64, s64) { - GetIOS()->GetESDevice()->BootstrapPPC(); + system_.GetIOS()->GetESDevice()->BootstrapPPC(); }); } diff --git a/Source/Core/Core/IOS/IOS.cpp b/Source/Core/Core/IOS/IOS.cpp index 12e2df03848b..2f96cc99bba0 100644 --- a/Source/Core/Core/IOS/IOS.cpp +++ b/Source/Core/Core/IOS/IOS.cpp @@ -64,8 +64,6 @@ namespace IOS::HLE { -static std::unique_ptr s_ios; - constexpr u64 ENQUEUE_REQUEST_FLAG = 0x100000000ULL; static CoreTiming::EventType* s_event_enqueue; static CoreTiming::EventType* s_event_finish_ppc_bootstrap; @@ -284,7 +282,7 @@ Kernel::Kernel(IOSC::ConsoleType console_type) : m_iosc(console_type) { // Until the Wii root and NAND path stuff is entirely managed by IOS and made non-static, // using more than one IOS instance at a time is not supported. - ASSERT(GetIOS() == nullptr); + ASSERT(Core::System::GetInstance().GetIOS() == nullptr); m_is_responsible_for_nand_root = !Core::WiiRootIsInitialized(); if (m_is_responsible_for_nand_root) @@ -477,8 +475,8 @@ struct ARMBinary final static void FinishIOSBoot(Core::System& system, u64 ios_title_id) { // Shut down the active IOS first before switching to the new one. - s_ios.reset(); - s_ios = std::make_unique(system, ios_title_id); + system.SetIOS(nullptr); + system.SetIOS(std::make_unique(system, ios_title_id)); } static constexpr SystemTimers::TimeBaseTick GetIOSBootTicks(u32 version) @@ -959,8 +957,9 @@ void Init(Core::System& system) s_event_enqueue = core_timing.RegisterEvent("IPCEvent", [](Core::System& system_, u64 userdata, s64) { - if (s_ios) - s_ios->HandleIPCEvent(userdata); + auto* ios = system_.GetIOS(); + if (ios) + ios->HandleIPCEvent(userdata); }); ESDevice::InitializeEmulationState(core_timing); @@ -976,7 +975,7 @@ void Init(Core::System& system) core_timing.RegisterEvent("FinishDICommand", DIDevice::FinishDICommandCallback); // Start with IOS80 to simulate part of the Wii boot process. - s_ios = std::make_unique(system, Titles::SYSTEM_MENU_IOS); + system.SetIOS(std::make_unique(system, Titles::SYSTEM_MENU_IOS)); // On a Wii, boot2 launches the system menu IOS, which then launches the system menu // (which bootstraps the PPC). Bootstrapping the PPC results in memory values being set up. // This means that the constants in the 0x3100 region are always set up by the time @@ -985,17 +984,12 @@ void Init(Core::System& system) SetupMemory(system.GetMemory(), Titles::SYSTEM_MENU_IOS, MemorySetupType::Full); } -void Shutdown() +void Shutdown(Core::System& system) { - s_ios.reset(); + system.SetIOS(nullptr); ESDevice::FinalizeEmulationState(); } -EmulationKernel* GetIOS() -{ - return s_ios.get(); -} - // Based on a hardware test, a device takes at least ~2700 ticks to reply to an IPC request. // Depending on how much work a command performs, this can take much longer (10000+) // especially if the NAND filesystem is accessed. diff --git a/Source/Core/Core/IOS/IOS.h b/Source/Core/Core/IOS/IOS.h index 148be1e850dd..2f8fe0401712 100644 --- a/Source/Core/Core/IOS/IOS.h +++ b/Source/Core/Core/IOS/IOS.h @@ -217,7 +217,6 @@ class EmulationKernel final : public Kernel // Used for controlling and accessing an IOS instance that is tied to emulation. void Init(Core::System& system); -void Shutdown(); -EmulationKernel* GetIOS(); +void Shutdown(Core::System& system); } // namespace IOS::HLE diff --git a/Source/Core/Core/System.cpp b/Source/Core/Core/System.cpp index 8dbffa3abbad..9c97e6febea7 100644 --- a/Source/Core/Core/System.cpp +++ b/Source/Core/Core/System.cpp @@ -61,6 +61,8 @@ struct System::Impl bool m_sound_stream_running = false; bool m_audio_dump_started = false; + std::unique_ptr m_ios; + AudioInterface::AudioInterfaceManager m_audio_interface; CoreTiming::CoreTimingManager m_core_timing; CommandProcessor::CommandProcessorManager m_command_processor; @@ -140,6 +142,16 @@ void System::SetAudioDumpStarted(bool started) m_impl->m_audio_dump_started = started; } +IOS::HLE::EmulationKernel* System::GetIOS() const +{ + return m_impl->m_ios.get(); +} + +void System::SetIOS(std::unique_ptr ios) +{ + m_impl->m_ios = std::move(ios); +} + AudioInterface::AudioInterfaceManager& System::GetAudioInterface() const { return m_impl->m_audio_interface; diff --git a/Source/Core/Core/System.h b/Source/Core/Core/System.h index 2867f7a33249..fe60eabf1203 100644 --- a/Source/Core/Core/System.h +++ b/Source/Core/Core/System.h @@ -53,6 +53,10 @@ namespace GPFifo { class GPFifoManager; } +namespace IOS::HLE +{ +class EmulationKernel; +} namespace HSP { class HSPManager; @@ -148,6 +152,9 @@ class System bool IsAudioDumpStarted() const; void SetAudioDumpStarted(bool started); + IOS::HLE::EmulationKernel* GetIOS() const; + void SetIOS(std::unique_ptr ios); + AudioInterface::AudioInterfaceManager& GetAudioInterface() const; CPU::CPUManager& GetCPU() const; CoreTiming::CoreTimingManager& GetCoreTiming() const; diff --git a/Source/Core/Core/WiiRoot.cpp b/Source/Core/Core/WiiRoot.cpp index a6486d3fa506..9fae6a467b03 100644 --- a/Source/Core/Core/WiiRoot.cpp +++ b/Source/Core/Core/WiiRoot.cpp @@ -321,7 +321,7 @@ void InitializeWiiFileSystemContents( std::optional save_redirect, const BootSessionData& boot_session_data) { - const auto fs = IOS::HLE::GetIOS()->GetFS(); + const auto fs = Core::System::GetInstance().GetIOS()->GetFS(); // Some games (such as Mario Kart Wii) assume that NWC24 files will always be present // even upon the first launch as they are normally created by the system menu. @@ -397,7 +397,7 @@ void CleanUpWiiFileSystemContents(const BootSessionData& boot_session_data) File::MoveWithOverwrite(redirect.temp_path, redirect.real_path); } - IOS::HLE::EmulationKernel* ios = IOS::HLE::GetIOS(); + IOS::HLE::EmulationKernel* ios = Core::System::GetInstance().GetIOS(); // clear the redirects in the session FS, otherwise the back-copy might grab redirected files s_nand_redirects.clear(); diff --git a/Source/Core/Core/WiiUtils.cpp b/Source/Core/Core/WiiUtils.cpp index 92c2c19a0d98..2803844ac61c 100644 --- a/Source/Core/Core/WiiUtils.cpp +++ b/Source/Core/Core/WiiUtils.cpp @@ -40,6 +40,7 @@ #include "Core/IOS/USB/Bluetooth/BTReal.h" #include "Core/IOS/Uids.h" #include "Core/SysConf.h" +#include "Core/System.h" #include "DiscIO/DiscExtractor.h" #include "DiscIO/Enums.h" #include "DiscIO/Filesystem.h" @@ -1004,7 +1005,7 @@ bool RepairNAND(IOS::HLE::Kernel& ios) static std::shared_ptr GetBluetoothDevice() { - auto* ios = IOS::HLE::GetIOS(); + auto* ios = Core::System::GetInstance().GetIOS(); return ios ? ios->GetDeviceByName("/dev/usb/oh1/57e/305") : nullptr; } diff --git a/Source/Core/DolphinNoGUI/Platform.cpp b/Source/Core/DolphinNoGUI/Platform.cpp index 52321da95cd0..04319b5da40f 100644 --- a/Source/Core/DolphinNoGUI/Platform.cpp +++ b/Source/Core/DolphinNoGUI/Platform.cpp @@ -23,12 +23,12 @@ void Platform::UpdateRunningFlag() { if (m_shutdown_requested.TestAndClear()) { - const auto ios = IOS::HLE::GetIOS(); + auto& system = Core::System::GetInstance(); + const auto ios = system.GetIOS(); const auto stm = ios ? ios->GetDeviceByName("/dev/stm/eventhook") : nullptr; if (!m_tried_graceful_shutdown.IsSet() && stm && std::static_pointer_cast(stm)->HasHookInstalled()) { - auto& system = Core::System::GetInstance(); system.GetProcessorInterface().PowerButton_Tap(); m_tried_graceful_shutdown.Set(); } diff --git a/Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp b/Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp index 6fff6b9f3799..32092b114571 100644 --- a/Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp +++ b/Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp @@ -209,7 +209,7 @@ void WiimoteControllersWidget::ConnectWidgets() void WiimoteControllersWidget::OnBluetoothPassthroughResetPressed() { - const auto ios = IOS::HLE::GetIOS(); + const auto ios = Core::System::GetInstance().GetIOS(); if (!ios) { @@ -226,7 +226,7 @@ void WiimoteControllersWidget::OnBluetoothPassthroughResetPressed() void WiimoteControllersWidget::OnBluetoothPassthroughSyncPressed() { - const auto ios = IOS::HLE::GetIOS(); + const auto ios = Core::System::GetInstance().GetIOS(); if (!ios) { diff --git a/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp b/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp index d62cc3de8c2d..d825a22bb1dd 100644 --- a/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp @@ -252,7 +252,7 @@ void NetworkWidget::Update() // needed because there's a race condition on the IOS instance otherwise Core::CPUThreadGuard guard(Core::System::GetInstance()); - auto* ios = IOS::HLE::GetIOS(); + auto* ios = guard.GetSystem().GetIOS(); if (!ios) return; diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp index 9fccc1996596..eff685e5c784 100644 --- a/Source/Core/UICommon/UICommon.cpp +++ b/Source/Core/UICommon/UICommon.cpp @@ -483,7 +483,7 @@ void SetUserDirectory(std::string custom_path) bool TriggerSTMPowerEvent() { - const auto ios = IOS::HLE::GetIOS(); + const auto ios = Core::System::GetInstance().GetIOS(); if (!ios) return false; From 4dc1b659c63725d4bf443ea00fb7bb8ae86feb9d Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sat, 10 Feb 2024 22:40:40 -0500 Subject: [PATCH 011/223] Externals: Update MoltenVK to 1.2.7 --- Externals/MoltenVK/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Externals/MoltenVK/CMakeLists.txt b/Externals/MoltenVK/CMakeLists.txt index 09ad4121123b..ae8fa1c47477 100644 --- a/Externals/MoltenVK/CMakeLists.txt +++ b/Externals/MoltenVK/CMakeLists.txt @@ -1,6 +1,6 @@ include(ExternalProject) -set(MOLTENVK_VERSION "v1.2.3") +set(MOLTENVK_VERSION "v1.2.7") ExternalProject_Add(MoltenVK GIT_REPOSITORY https://github.com/KhronosGroup/MoltenVK.git From 48ae52976241e446b3ed7ad77bba7914005dd1df Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 11 Feb 2024 10:58:42 +0100 Subject: [PATCH 012/223] Android: Update Load Wii System Menu string in onPrepareOptionsMenu Because the wording of the Load Wii System Menu string can change depending on the contents of the NAND, we should update that menu item in a method that's guaranteed to get called every time the user opens the menu rather than one that's only guaranteed to be called once. --- .../java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt index 84d870c92145..5e601dfe2f66 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt @@ -121,13 +121,17 @@ class MainActivity : AppCompatActivity(), MainView, OnRefreshListener, ThemeProv override fun onCreateOptionsMenu(menu: Menu): Boolean { menuInflater.inflate(R.menu.menu_game_grid, menu) + return true + } + + override fun onPrepareOptionsMenu(menu: Menu): Boolean { if (WiiUtils.isSystemMenuInstalled()) { val resId = if (WiiUtils.isSystemMenuvWii()) R.string.grid_menu_load_vwii_system_menu_installed else R.string.grid_menu_load_wii_system_menu_installed menu.findItem(R.id.menu_load_wii_system_menu).title = getString(resId, WiiUtils.getSystemMenuVersion()) } - return true + return super.onPrepareOptionsMenu(menu) } /** From 06964a921d32965f1434896b50fd7ed936092ea1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 11 Feb 2024 11:15:18 +0100 Subject: [PATCH 013/223] Android: Don't check Wii Menu version before directory initialization Fixes a crash. --- .../dolphinemu/ui/main/MainActivity.kt | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt index 5e601dfe2f66..7f43d3094fb5 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.kt @@ -47,6 +47,8 @@ class MainActivity : AppCompatActivity(), MainView, OnRefreshListener, ThemeProv private lateinit var binding: ActivityMainBinding + private lateinit var menu: Menu + override fun onCreate(savedInstanceState: Bundle?) { installSplashScreen().setKeepOnScreenCondition { !DirectoryInitialization.areDolphinDirectoriesReady() } @@ -121,15 +123,22 @@ class MainActivity : AppCompatActivity(), MainView, OnRefreshListener, ThemeProv override fun onCreateOptionsMenu(menu: Menu): Boolean { menuInflater.inflate(R.menu.menu_game_grid, menu) + this.menu = menu return true } override fun onPrepareOptionsMenu(menu: Menu): Boolean { - if (WiiUtils.isSystemMenuInstalled()) { - val resId = - if (WiiUtils.isSystemMenuvWii()) R.string.grid_menu_load_vwii_system_menu_installed else R.string.grid_menu_load_wii_system_menu_installed - menu.findItem(R.id.menu_load_wii_system_menu).title = - getString(resId, WiiUtils.getSystemMenuVersion()) + AfterDirectoryInitializationRunner().runWithLifecycle(this) { + if (WiiUtils.isSystemMenuInstalled()) { + val resId = + if (WiiUtils.isSystemMenuvWii()) R.string.grid_menu_load_vwii_system_menu_installed else R.string.grid_menu_load_wii_system_menu_installed + + // If this callback ends up running after another call to onCreateOptionsMenu, + // we need to use the new Menu passed to the latest call of onCreateOptionsMenu. + // Therefore, we use a field here instead of the onPrepareOptionsMenu argument. + this.menu.findItem(R.id.menu_load_wii_system_menu).title = + getString(resId, WiiUtils.getSystemMenuVersion()) + } } return super.onPrepareOptionsMenu(menu) } From b404da78c4bc20d84bbb9c980ca7c269bd6cfda9 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 11 Feb 2024 11:34:51 +0100 Subject: [PATCH 014/223] Android: Mention download size in the Wii Menu not installed message Google Play's policies require us to tell the user the size of any large download. The size seems to vary by just a megabyte or two across regions in my testing, so I'm listing a rough size for all the regions. I'm also taking the opportunity to shorten the message to make it easier to read. --- 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 894c2a40e103..251886b98aa4 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -478,7 +478,7 @@ Failed to import save file. Please launch the game once, then try again. Merging a new NAND over your currently selected NAND will overwrite any channels and savegames that already exist. This process is not reversible, so it is recommended that you keep backups of both NANDs. Are you sure you want to continue? Not installed - The Wii Menu is currently not installed. Would you like to install it now?\nAn internet connection is required to download the update. It is recommended to download the update on Wi-Fi, as the amount of data downloaded may be large. + The Wii Menu isn\'t installed. Would you like to install it now?\n\nRoughly 110 MiB of data will be downloaded from the internet. A Wi-Fi connection is recommended. Details From 7c276c19935691bb24e30b402a70b449b5dd68cb Mon Sep 17 00:00:00 2001 From: Sepalani Date: Sun, 11 Feb 2024 22:55:23 +0400 Subject: [PATCH 015/223] EXI: Don't kill Dolphin when receiving BBA_IOB According to @Kirbymimi it doesn't crash on real hardware. Testing was done by sending many UDP packets to an unbound port. --- Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp index 0e7a1d02767b..549ace3a6e63 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp @@ -143,9 +143,7 @@ void CEXIETHERNET::ImmWrite(u32 data, u32 size) if (transfer.address == BBA_IOB && transfer.region == transfer.MX) { ERROR_LOG_FMT(SP1, - "Usage of BBA_IOB indicates that the rx packet descriptor has been corrupted. " - "Killing Dolphin..."); - std::exit(0); + "Usage of BBA_IOB indicates that the rx packet descriptor has been corrupted."); } // transfer has been setup From ecfcae87184bc13bb4b9a170b6e72d1442bacb57 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sun, 4 Feb 2024 17:10:07 -0600 Subject: [PATCH 016/223] Externals: add tinygltf, a library used to load or save GLTF mesh files --- .gitmodules | 3 +++ CMakeLists.txt | 1 + Externals/tinygltf/CMakeLists.txt | 11 +++++++++ Externals/tinygltf/exports.props | 14 ++++++++++++ Externals/tinygltf/tinygltf | 1 + Externals/tinygltf/tinygltf.vcxproj | 35 +++++++++++++++++++++++++++++ Source/Core/DolphinLib.vcxproj | 1 + Source/dolphin-emu.sln | 11 +++++++++ 8 files changed, 77 insertions(+) create mode 100644 Externals/tinygltf/CMakeLists.txt create mode 100644 Externals/tinygltf/exports.props create mode 160000 Externals/tinygltf/tinygltf create mode 100644 Externals/tinygltf/tinygltf.vcxproj diff --git a/.gitmodules b/.gitmodules index 18429a82e692..c1019fc939ac 100644 --- a/.gitmodules +++ b/.gitmodules @@ -75,3 +75,6 @@ [submodule "hidapi-src"] path = Externals/hidapi/hidapi-src url = https://github.com/libusb/hidapi +[submodule "Externals/tinygltf/tinygltf"] + path = Externals/tinygltf/tinygltf + url = https://github.com/syoyo/tinygltf.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 88e8f4a8f5ba..1ff8bd9db347 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -638,6 +638,7 @@ add_subdirectory(Externals/glslang) if(WIN32 OR APPLE) add_subdirectory(Externals/spirv_cross) endif() +add_subdirectory(Externals/tinygltf) if(ENABLE_VULKAN) add_definitions(-DHAS_VULKAN) diff --git a/Externals/tinygltf/CMakeLists.txt b/Externals/tinygltf/CMakeLists.txt new file mode 100644 index 000000000000..a551d6def381 --- /dev/null +++ b/Externals/tinygltf/CMakeLists.txt @@ -0,0 +1,11 @@ +add_library(tinygltf STATIC) +target_compile_definitions(tinygltf PUBLIC TINYGLTF_NOEXCEPTION) +target_compile_definitions(tinygltf PUBLIC TINYGLTF_NO_EXTERNAL_IMAGE) +target_compile_definitions(tinygltf PUBLIC TINYGLTF_USE_CPP14) +if (NOT MSVC) + target_compile_features(tinygltf PRIVATE cxx_std_20) +endif() +target_sources(tinygltf PRIVATE + tinygltf/tiny_gltf.cc) +target_include_directories(tinygltf INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) +dolphin_disable_warnings_msvc(tinygltf) diff --git a/Externals/tinygltf/exports.props b/Externals/tinygltf/exports.props new file mode 100644 index 000000000000..7e2fde81cf9d --- /dev/null +++ b/Externals/tinygltf/exports.props @@ -0,0 +1,14 @@ + + + + + $(ExternalsDir)tinygltf;%(AdditionalIncludeDirectories) + TINYGLTF_NOEXCEPTION;TINYGLTF_NO_EXTERNAL_IMAGE;TINYGLTF_USE_CPP14;%(PreprocessorDefinitions) + + + + + {8bda3693-4999-4d11-9e52-8d08c30b643a} + + + diff --git a/Externals/tinygltf/tinygltf b/Externals/tinygltf/tinygltf new file mode 160000 index 000000000000..c5641f2c22d1 --- /dev/null +++ b/Externals/tinygltf/tinygltf @@ -0,0 +1 @@ +Subproject commit c5641f2c22d117da7971504591a8f6a41ece488b diff --git a/Externals/tinygltf/tinygltf.vcxproj b/Externals/tinygltf/tinygltf.vcxproj new file mode 100644 index 000000000000..e33d949e56df --- /dev/null +++ b/Externals/tinygltf/tinygltf.vcxproj @@ -0,0 +1,35 @@ + + + + + + {8bda3693-4999-4d11-9e52-8d08c30b643a} + + + + + + + + + + + + + + tinygltf;%(AdditionalIncludeDirectories) + + + + + + + + + + + + + + + diff --git a/Source/Core/DolphinLib.vcxproj b/Source/Core/DolphinLib.vcxproj index d2071d6618fa..da443ea45ba3 100644 --- a/Source/Core/DolphinLib.vcxproj +++ b/Source/Core/DolphinLib.vcxproj @@ -58,6 +58,7 @@ + diff --git a/Source/dolphin-emu.sln b/Source/dolphin-emu.sln index a123e396dd99..d4a6de1913c2 100644 --- a/Source/dolphin-emu.sln +++ b/Source/dolphin-emu.sln @@ -91,6 +91,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spng", "..\Externals\libspn EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "rcheevos", "..\Externals\rcheevos\rcheevos.vcxproj", "{CC99A910-3752-4465-95AA-7DC240D92A99}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tinygltf", "..\Externals\tinygltf\tinygltf.vcxproj", "{8BDA3693-4999-4D11-9E52-8D08C30B643A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 @@ -439,6 +441,14 @@ Global {CC99A910-3752-4465-95AA-7DC240D92A99}.Release|ARM64.Build.0 = Release|ARM64 {CC99A910-3752-4465-95AA-7DC240D92A99}.Release|x64.ActiveCfg = Release|x64 {CC99A910-3752-4465-95AA-7DC240D92A99}.Release|x64.Build.0 = Release|x64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Debug|ARM64.Build.0 = Debug|ARM64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Debug|x64.ActiveCfg = Debug|x64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Debug|x64.Build.0 = Debug|x64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Release|ARM64.ActiveCfg = Release|ARM64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Release|ARM64.Build.0 = Release|ARM64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Release|x64.ActiveCfg = Release|x64 + {8BDA3693-4999-4D11-9E52-8D08C30B643A}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -477,6 +487,7 @@ Global {3F17D282-A77D-4931-B844-903AD0809A5E} = {87ADDFF9-5768-4DA2-A33B-2477593D6677} {447B7B1E-1D74-4AEF-B2B9-6EB41C5D5313} = {87ADDFF9-5768-4DA2-A33B-2477593D6677} {CC99A910-3752-4465-95AA-7DC240D92A99} = {87ADDFF9-5768-4DA2-A33B-2477593D6677} + {8BDA3693-4999-4D11-9E52-8D08C30B643A} = {87ADDFF9-5768-4DA2-A33B-2477593D6677} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {64B0A343-3B94-4522-9C24-6937FE5EFB22} From 60772ed9d26244534a57e5d9a098af4cbfb948cd Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sun, 4 Feb 2024 17:17:24 -0600 Subject: [PATCH 017/223] VideoCommon: add functionality to prepare for a mesh asset that is loaded from a GLTF file --- Source/Core/DolphinLib.props | 2 + Source/Core/VideoCommon/Assets/MeshAsset.cpp | 648 +++++++++++++++++++ Source/Core/VideoCommon/Assets/MeshAsset.h | 60 ++ Source/Core/VideoCommon/CMakeLists.txt | 3 + 4 files changed, 713 insertions(+) create mode 100644 Source/Core/VideoCommon/Assets/MeshAsset.cpp create mode 100644 Source/Core/VideoCommon/Assets/MeshAsset.h diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 59cecdf5dc67..74b3185753ba 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -656,6 +656,7 @@ + @@ -1293,6 +1294,7 @@ + diff --git a/Source/Core/VideoCommon/Assets/MeshAsset.cpp b/Source/Core/VideoCommon/Assets/MeshAsset.cpp new file mode 100644 index 000000000000..b8dd029375e0 --- /dev/null +++ b/Source/Core/VideoCommon/Assets/MeshAsset.cpp @@ -0,0 +1,648 @@ +// Copyright 2023 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "VideoCommon/Assets/MeshAsset.h" + +#include +#include +#include + +#include + +#include "Common/IOFile.h" +#include "Common/Logging/Log.h" +#include "Common/StringUtil.h" + +namespace VideoCommon +{ +namespace +{ +Common::Matrix44 BuildMatrixFromNode(const tinygltf::Node& node) +{ + if (!node.matrix.empty()) + { + Common::Matrix44 matrix; + for (std::size_t i = 0; i < node.matrix.size(); i++) + { + matrix.data[i] = static_cast(node.matrix[i]); + } + return matrix; + } + + Common::Matrix44 matrix = Common::Matrix44::Identity(); + + // Check individual components + + if (!node.scale.empty()) + { + matrix *= Common::Matrix44::FromMatrix33(Common::Matrix33::Scale( + Common::Vec3{static_cast(node.scale[0]), static_cast(node.scale[1]), + static_cast(node.scale[2])})); + } + + if (!node.rotation.empty()) + { + matrix *= Common::Matrix44::FromQuaternion(Common::Quaternion( + static_cast(node.rotation[3]), static_cast(node.rotation[0]), + static_cast(node.rotation[1]), static_cast(node.rotation[2]))); + } + + if (!node.translation.empty()) + { + matrix *= Common::Matrix44::Translate(Common::Vec3{static_cast(node.translation[0]), + static_cast(node.translation[1]), + static_cast(node.translation[2])}); + } + + return matrix; +} + +bool GLTFComponentTypeToAttributeFormat(int component_type, AttributeFormat* format) +{ + switch (component_type) + { + case TINYGLTF_COMPONENT_TYPE_BYTE: + { + format->type = ComponentFormat::Byte; + format->integer = false; + } + break; + case TINYGLTF_COMPONENT_TYPE_DOUBLE: + { + return false; + } + break; + case TINYGLTF_COMPONENT_TYPE_FLOAT: + { + format->type = ComponentFormat::Float; + format->integer = false; + } + break; + case TINYGLTF_COMPONENT_TYPE_INT: + { + format->type = ComponentFormat::Float; + format->integer = true; + } + break; + case TINYGLTF_COMPONENT_TYPE_SHORT: + { + format->type = ComponentFormat::Short; + format->integer = false; + } + break; + case TINYGLTF_COMPONENT_TYPE_UNSIGNED_BYTE: + { + format->type = ComponentFormat::UByte; + format->integer = false; + } + break; + case TINYGLTF_COMPONENT_TYPE_UNSIGNED_INT: + { + return false; + } + break; + case TINYGLTF_COMPONENT_TYPE_UNSIGNED_SHORT: + { + format->type = ComponentFormat::UShort; + format->integer = false; + } + break; + }; + + return true; +} + +bool UpdateVertexStrideFromPrimitive(const tinygltf::Model& model, u32 accessor_index, + MeshDataChunk* chunk) +{ + const tinygltf::Accessor& accessor = model.accessors[accessor_index]; + + const int component_count = tinygltf::GetNumComponentsInType(accessor.type); + if (component_count == -1) + { + ERROR_LOG_FMT(VIDEO, "Failed to update vertex stride, component count was invalid"); + return false; + } + + const int component_size = + tinygltf::GetComponentSizeInBytes(static_cast(accessor.componentType)); + if (component_size == -1) + { + ERROR_LOG_FMT(VIDEO, "Failed to update vertex stride, component size was invalid"); + return false; + } + + chunk->vertex_stride += component_size * component_count; + return true; +} + +bool CopyBufferDataFromPrimitive(const tinygltf::Model& model, u32 accessor_index, + std::size_t* outbound_offset, MeshDataChunk* chunk) +{ + const tinygltf::Accessor& accessor = model.accessors[accessor_index]; + + const int component_count = tinygltf::GetNumComponentsInType(accessor.type); + if (component_count == -1) + { + ERROR_LOG_FMT(VIDEO, "Failed to copy buffer data from primitive, component count was invalid"); + return false; + } + + const int component_size = + tinygltf::GetComponentSizeInBytes(static_cast(accessor.componentType)); + if (component_size == -1) + { + ERROR_LOG_FMT(VIDEO, "Failed to copy buffer data from primitive, component size was invalid"); + return false; + } + + const tinygltf::BufferView& buffer_view = model.bufferViews[accessor.bufferView]; + const tinygltf::Buffer& buffer = model.buffers[buffer_view.buffer]; + + if (buffer_view.byteStride == 0) + { + // Data is tightly packed + const auto data = &buffer.data[accessor.byteOffset + buffer_view.byteOffset]; + for (std::size_t i = 0; i < accessor.count; i++) + { + const std::size_t vertex_data_offset = i * chunk->vertex_stride + *outbound_offset; + memcpy(&chunk->vertex_data[vertex_data_offset], &data[i * component_size * component_count], + component_size * component_count); + } + } + else + { + // Data is interleaved + const auto data = &buffer.data[accessor.byteOffset + buffer_view.byteOffset]; + for (std::size_t i = 0; i < accessor.count; i++) + { + const std::size_t vertex_data_offset = i * chunk->vertex_stride + *outbound_offset; + const std::size_t gltf_data_offset = i * buffer_view.byteStride; + + memcpy(&chunk->vertex_data[vertex_data_offset], &data[gltf_data_offset], + component_size * component_count); + } + } + + *outbound_offset += component_size * component_count; + + return true; +} + +bool ReadGLTFMesh(std::string_view mesh_file, const tinygltf::Model& model, + const tinygltf::Mesh& mesh, const Common::Matrix44& mat, MeshData* data) +{ + for (std::size_t primitive_index = 0; primitive_index < mesh.primitives.size(); ++primitive_index) + { + MeshDataChunk chunk; + chunk.transform = mat; + const tinygltf::Primitive& primitive = mesh.primitives[primitive_index]; + if (primitive.indices == -1) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' is expected to have indices but doesn't have any", mesh_file); + return false; + } + chunk.material_name = model.materials[primitive.material].name; + const tinygltf::Accessor& index_accessor = model.accessors[primitive.indices]; + const tinygltf::BufferView& index_buffer_view = model.bufferViews[index_accessor.bufferView]; + const tinygltf::Buffer& index_buffer = model.buffers[index_buffer_view.buffer]; + const int index_stride = index_accessor.ByteStride(index_buffer_view); + if (index_stride == -1) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' has invalid stride", mesh_file); + return false; + } + // TODO C++23: use make_unique_overwrite + chunk.indices = std::unique_ptr(new u16[index_accessor.count]); + auto index_src = &index_buffer.data[index_accessor.byteOffset + index_buffer_view.byteOffset]; + for (std::size_t i = 0; i < index_accessor.count; i++) + { + if (index_accessor.componentType == TINYGLTF_COMPONENT_TYPE_UNSIGNED_SHORT) + { + std::memcpy(&chunk.indices[i], &index_src[i * index_stride], sizeof(u16)); + } + else if (index_accessor.componentType == TINYGLTF_COMPONENT_TYPE_UNSIGNED_BYTE) + { + u8 unsigned_byte; + std::memcpy(&unsigned_byte, &index_src[i * index_stride], sizeof(u8)); + chunk.indices[i] = unsigned_byte; + } + else if (index_accessor.componentType == TINYGLTF_COMPONENT_TYPE_UNSIGNED_INT) + { + // TODO: update Dolphin to support u32 indices + ERROR_LOG_FMT( + VIDEO, + "Mesh '{}' uses an indice format of unsigned int which is not currently supported", + mesh_file); + return false; + } + } + + chunk.num_indices = static_cast(index_accessor.count); + + if (primitive.mode == TINYGLTF_MODE_TRIANGLES) + { + chunk.primitive_type = PrimitiveType::Triangles; + } + else if (primitive.mode == TINYGLTF_MODE_TRIANGLE_STRIP) + { + chunk.primitive_type = PrimitiveType::TriangleStrip; + } + else if (primitive.mode == TINYGLTF_MODE_TRIANGLE_FAN) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' requires triangle fan but that is not supported", mesh_file); + return false; + } + else if (primitive.mode == TINYGLTF_MODE_LINE) + { + chunk.primitive_type = PrimitiveType::Lines; + } + else if (primitive.mode == TINYGLTF_MODE_POINTS) + { + chunk.primitive_type = PrimitiveType::Points; + } + + chunk.vertex_stride = 0; + static constexpr std::array all_names = { + "POSITION", "NORMAL", "COLOR_0", "COLOR_1", "TEXCOORD_0", "TEXCOORD_1", + "TEXCOORD_2", "TEXCOORD_3", "TEXCOORD_4", "TEXCOORD_5", "TEXCOORD_6", "TEXCOORD_7", + }; + for (std::size_t i = 0; i < all_names.size(); i++) + { + const auto it = primitive.attributes.find(std::string{all_names[i]}); + if (it != primitive.attributes.end()) + { + if (!UpdateVertexStrideFromPrimitive(model, it->second, &chunk)) + return false; + } + } + chunk.vertex_declaration.stride = chunk.vertex_stride; + + const auto position_it = primitive.attributes.find("POSITION"); + if (position_it == primitive.attributes.end()) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' does not provide a POSITION attribute, that is required", + mesh_file); + return false; + } + std::size_t outbound_offset = 0; + const tinygltf::Accessor& pos_accessor = model.accessors[position_it->second]; + chunk.num_vertices = static_cast(pos_accessor.count); + // TODO C++23: use make_unique_overwrite + chunk.vertex_data = std::unique_ptr(new u8[chunk.num_vertices * chunk.vertex_stride]); + if (!CopyBufferDataFromPrimitive(model, position_it->second, &outbound_offset, &chunk)) + return false; + chunk.components_available = 0; + chunk.vertex_declaration.position.enable = true; + chunk.vertex_declaration.position.components = 3; + chunk.vertex_declaration.position.offset = 0; + if (!GLTFComponentTypeToAttributeFormat(pos_accessor.componentType, + &chunk.vertex_declaration.position)) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' has invalid attribute format for position", mesh_file); + return false; + } + + // Save off min and max position in case we want to compute bounds + // GLTF spec expects these values to exist but error if they don't + if (pos_accessor.minValues.size() != 3) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' is expected to have a minimum value but it is missing", + mesh_file); + return false; + } + chunk.minimum_position.x = static_cast(pos_accessor.minValues[0]); + chunk.minimum_position.y = static_cast(pos_accessor.minValues[1]); + chunk.minimum_position.z = static_cast(pos_accessor.minValues[2]); + + if (pos_accessor.maxValues.size() != 3) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' is expected to have a maximum value but it is missing", + mesh_file); + return false; + } + chunk.maximum_position.x = static_cast(pos_accessor.maxValues[0]); + chunk.maximum_position.y = static_cast(pos_accessor.maxValues[1]); + chunk.maximum_position.z = static_cast(pos_accessor.maxValues[2]); + + static constexpr std::array color_names = { + "COLOR_0", + "COLOR_1", + }; + for (std::size_t i = 0; i < color_names.size(); i++) + { + const auto color_it = primitive.attributes.find(std::string{color_names[i]}); + if (color_it != primitive.attributes.end()) + { + chunk.vertex_declaration.colors[i].offset = static_cast(outbound_offset); + if (!CopyBufferDataFromPrimitive(model, color_it->second, &outbound_offset, &chunk)) + return false; + chunk.components_available |= VB_HAS_COL0 << i; + + chunk.vertex_declaration.colors[i].enable = true; + chunk.vertex_declaration.colors[i].components = 3; + const tinygltf::Accessor& accessor = model.accessors[color_it->second]; + if (!GLTFComponentTypeToAttributeFormat(accessor.componentType, + &chunk.vertex_declaration.colors[i])) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' has invalid attribute format for {}", mesh_file, + color_names[i]); + return false; + } + } + else + { + chunk.vertex_declaration.colors[i].enable = false; + } + } + + const auto normal_it = primitive.attributes.find("NORMAL"); + if (normal_it != primitive.attributes.end()) + { + chunk.vertex_declaration.normals[0].offset = static_cast(outbound_offset); + if (!CopyBufferDataFromPrimitive(model, normal_it->second, &outbound_offset, &chunk)) + return false; + chunk.components_available |= VB_HAS_NORMAL; + chunk.vertex_declaration.normals[0].enable = true; + chunk.vertex_declaration.normals[0].components = 3; + const tinygltf::Accessor& accessor = model.accessors[normal_it->second]; + if (!GLTFComponentTypeToAttributeFormat(accessor.componentType, + &chunk.vertex_declaration.normals[0])) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' has invalid attribute format for NORMAL", mesh_file); + return false; + } + } + else + { + chunk.vertex_declaration.normals[0].enable = false; + } + + static constexpr std::array texcoord_names = { + "TEXCOORD_0", "TEXCOORD_1", "TEXCOORD_2", "TEXCOORD_3", + "TEXCOORD_4", "TEXCOORD_5", "TEXCOORD_6", "TEXCOORD_7", + }; + for (std::size_t i = 0; i < texcoord_names.size(); i++) + { + const auto texture_it = primitive.attributes.find(std::string{texcoord_names[i]}); + if (texture_it != primitive.attributes.end()) + { + chunk.vertex_declaration.texcoords[i].offset = static_cast(outbound_offset); + if (!CopyBufferDataFromPrimitive(model, texture_it->second, &outbound_offset, &chunk)) + return false; + chunk.components_available |= VB_HAS_UV0 << i; + chunk.vertex_declaration.texcoords[i].enable = true; + chunk.vertex_declaration.texcoords[i].components = 2; + const tinygltf::Accessor& accessor = model.accessors[texture_it->second]; + if (!GLTFComponentTypeToAttributeFormat(accessor.componentType, + &chunk.vertex_declaration.texcoords[i])) + { + ERROR_LOG_FMT(VIDEO, "Mesh '{}' has invalid attribute format for {}", mesh_file, + texcoord_names[i]); + return false; + } + } + else + { + chunk.vertex_declaration.texcoords[i].enable = false; + } + } + + // Position matrix can be enabled if the draw that is using + // this mesh needs it + chunk.vertex_declaration.posmtx.enable = false; + + data->m_mesh_chunks.push_back(std::move(chunk)); + } + + return true; +} + +bool ReadGLTFNodes(std::string_view mesh_file, const tinygltf::Model& model, + const tinygltf::Node& node, const Common::Matrix44& mat, MeshData* data) +{ + if (node.mesh != -1) + { + if (!ReadGLTFMesh(mesh_file, model, model.meshes[node.mesh], mat, data)) + return false; + } + + for (std::size_t i = 0; i < node.children.size(); i++) + { + const tinygltf::Node& child = model.nodes[node.children[i]]; + const auto child_mat = mat * BuildMatrixFromNode(child); + if (!ReadGLTFNodes(mesh_file, model, child, child_mat, data)) + return false; + } + + return true; +} + +bool ReadGLTFMaterials(std::string_view mesh_file, const tinygltf::Model& model, MeshData* data) +{ + for (std::size_t i = 0; i < model.materials.size(); i++) + { + const tinygltf::Material& material = model.materials[i]; + + // TODO: support converting material data into Dolphin material assets + data->m_mesh_material_to_material_asset_id.insert_or_assign(material.name, ""); + } + + return true; +} + +bool ReadGLTF(std::string_view mesh_file, const tinygltf::Model& model, MeshData* data) +{ + int scene_index = model.defaultScene; + if (scene_index == -1) + scene_index = 0; + + const auto& scene = model.scenes[scene_index]; + const auto scene_node_indices = scene.nodes; + for (std::size_t i = 0; i < scene_node_indices.size(); i++) + { + const tinygltf::Node& node = model.nodes[scene_node_indices[i]]; + const auto mat = BuildMatrixFromNode(node); + if (!ReadGLTFNodes(mesh_file, model, node, mat, data)) + return false; + } + + return ReadGLTFMaterials(mesh_file, model, data); +} +} // namespace +bool MeshData::FromJson(const VideoCommon::CustomAssetLibrary::AssetID& asset_id, + const picojson::object& json, MeshData* data) +{ + if (const auto iter = json.find("material_mapping"); iter != json.end()) + { + if (!iter->second.is()) + { + ERROR_LOG_FMT( + VIDEO, + "Asset '{}' failed to parse json, expected 'material_mapping' to be of type object", + asset_id); + return false; + } + + for (const auto& [material_name, asset_id_json] : iter->second.get()) + { + if (!asset_id_json.is()) + { + ERROR_LOG_FMT( + VIDEO, + "Asset '{}' failed to parse json, material name '{}' linked to a non-string value", + asset_id, material_name); + return false; + } + + data->m_mesh_material_to_material_asset_id[material_name] = asset_id_json.to_str(); + } + } + return true; +} + +void MeshData::ToJson(picojson::object& obj, const MeshData& data) +{ + picojson::object material_mapping; + for (const auto& [material_name, asset_id] : data.m_mesh_material_to_material_asset_id) + { + material_mapping.emplace(material_name, asset_id); + } + obj.emplace("material_mapping", std::move(material_mapping)); +} + +bool MeshData::FromDolphinMesh(std::span raw_data, MeshData* data) +{ + std::size_t offset = 0; + + std::size_t chunk_size = 0; + std::memcpy(&chunk_size, raw_data.data(), sizeof(std::size_t)); + offset += sizeof(std::size_t); + + data->m_mesh_chunks.reserve(chunk_size); + for (std::size_t i = 0; i < chunk_size; i++) + { + MeshDataChunk chunk; + + std::memcpy(&chunk.num_vertices, raw_data.data() + offset, sizeof(u32)); + offset += sizeof(u32); + + std::memcpy(&chunk.vertex_stride, raw_data.data() + offset, sizeof(u32)); + offset += sizeof(u32); + + // TODO C++23: use make_unique_overwrite + chunk.vertex_data = std::unique_ptr(new u8[chunk.num_vertices * chunk.vertex_stride]); + std::memcpy(chunk.vertex_data.get(), raw_data.data() + offset, + chunk.num_vertices * chunk.vertex_stride); + offset += chunk.num_vertices * chunk.vertex_stride; + + std::memcpy(&chunk.num_indices, raw_data.data() + offset, sizeof(u32)); + offset += sizeof(u32); + + // TODO C++23: use make_unique_overwrite + chunk.indices = std::unique_ptr(new u16[chunk.num_indices]); + std::memcpy(chunk.indices.get(), raw_data.data() + offset, chunk.num_indices * sizeof(u16)); + offset += chunk.num_indices * sizeof(u16); + + std::memcpy(&chunk.vertex_declaration, raw_data.data() + offset, + sizeof(PortableVertexDeclaration)); + offset += sizeof(PortableVertexDeclaration); + + std::memcpy(&chunk.primitive_type, raw_data.data() + offset, sizeof(PrimitiveType)); + offset += sizeof(PrimitiveType); + + std::memcpy(&chunk.components_available, raw_data.data() + offset, sizeof(u32)); + offset += sizeof(u32); + + std::memcpy(&chunk.minimum_position, raw_data.data() + offset, sizeof(Common::Vec3)); + offset += sizeof(Common::Vec3); + + std::memcpy(&chunk.maximum_position, raw_data.data() + offset, sizeof(Common::Vec3)); + offset += sizeof(Common::Vec3); + + std::memcpy(&chunk.transform.data[0], raw_data.data() + offset, + chunk.transform.data.size() * sizeof(float)); + offset += chunk.transform.data.size() * sizeof(float); + + std::size_t material_name_size = 0; + std::memcpy(&material_name_size, raw_data.data() + offset, sizeof(std::size_t)); + offset += sizeof(std::size_t); + + chunk.material_name.assign(raw_data.data() + offset, + raw_data.data() + offset + material_name_size); + offset += material_name_size * sizeof(char); + + data->m_mesh_chunks.push_back(std::move(chunk)); + } + + return true; +} + +bool MeshData::ToDolphinMesh(File::IOFile* file_data, const MeshData& data) +{ + const std::size_t chunk_size = data.m_mesh_chunks.size(); + file_data->WriteBytes(&chunk_size, sizeof(std::size_t)); + for (const auto& chunk : data.m_mesh_chunks) + { + if (!file_data->WriteBytes(&chunk.num_vertices, sizeof(u32))) + return false; + if (!file_data->WriteBytes(&chunk.vertex_stride, sizeof(u32))) + return false; + if (!file_data->WriteBytes(chunk.vertex_data.get(), chunk.num_vertices * chunk.vertex_stride)) + return false; + if (!file_data->WriteBytes(&chunk.num_indices, sizeof(u32))) + return false; + if (!file_data->WriteBytes(chunk.indices.get(), chunk.num_indices * sizeof(u16))) + return false; + if (!file_data->WriteBytes(&chunk.vertex_declaration, sizeof(PortableVertexDeclaration))) + return false; + if (!file_data->WriteBytes(&chunk.primitive_type, sizeof(PrimitiveType))) + return false; + if (!file_data->WriteBytes(&chunk.components_available, sizeof(u32))) + return false; + if (!file_data->WriteBytes(&chunk.minimum_position, sizeof(Common::Vec3))) + return false; + if (!file_data->WriteBytes(&chunk.maximum_position, sizeof(Common::Vec3))) + return false; + if (!file_data->WriteBytes(&chunk.transform.data[0], + chunk.transform.data.size() * sizeof(float))) + { + return false; + } + + const std::size_t material_name_size = chunk.material_name.size(); + if (!file_data->WriteBytes(&material_name_size, sizeof(std::size_t))) + return false; + if (!file_data->WriteBytes(&chunk.material_name[0], chunk.material_name.size() * sizeof(char))) + return false; + } + return true; +} + +bool MeshData::FromGLTF(std::string_view gltf_file, MeshData* data) +{ + if (gltf_file.ends_with(".glb")) + { + ERROR_LOG_FMT(VIDEO, "File '{}' with glb extension is not supported at this time", gltf_file); + return false; + } + + if (gltf_file.ends_with(".gltf")) + { + tinygltf::Model model; + tinygltf::TinyGLTF loader; + std::string model_errors; + std::string model_warnings; + if (!loader.LoadASCIIFromFile(&model, &model_errors, &model_warnings, std::string{gltf_file})) + { + ERROR_LOG_FMT(VIDEO, "File '{}' was invalid GLTF, error: {}, warning: {}", gltf_file, + model_errors, model_warnings); + return false; + } + return ReadGLTF(gltf_file, model, data); + } + + ERROR_LOG_FMT(VIDEO, "GLTF '{}' has invalid extension", gltf_file); + return false; +} +} // namespace VideoCommon diff --git a/Source/Core/VideoCommon/Assets/MeshAsset.h b/Source/Core/VideoCommon/Assets/MeshAsset.h new file mode 100644 index 000000000000..eb23f39783a9 --- /dev/null +++ b/Source/Core/VideoCommon/Assets/MeshAsset.h @@ -0,0 +1,60 @@ +// Copyright 2023 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include +#include +#include +#include + +#include + +#include "Common/CommonTypes.h" +#include "Common/Matrix.h" + +#include "VideoCommon/Assets/CustomAsset.h" +#include "VideoCommon/NativeVertexFormat.h" +#include "VideoCommon/RenderState.h" + +namespace File +{ +class IOFile; +} + +namespace VideoCommon +{ +struct MeshDataChunk +{ + std::unique_ptr vertex_data; + u32 vertex_stride; + u32 num_vertices; + std::unique_ptr indices; + u32 num_indices; + PortableVertexDeclaration vertex_declaration; + PrimitiveType primitive_type; + u32 components_available; + Common::Vec3 minimum_position; + Common::Vec3 maximum_position; + Common::Matrix44 transform; + std::string material_name; +}; + +struct MeshData +{ + static bool FromJson(const CustomAssetLibrary::AssetID& asset_id, const picojson::object& json, + MeshData* data); + static void ToJson(picojson::object& obj, const MeshData& data); + + static bool FromDolphinMesh(std::span raw_data, MeshData* data); + + static bool ToDolphinMesh(File::IOFile* file_data, const MeshData& data); + + static bool FromGLTF(std::string_view gltf_file, MeshData* data); + + std::vector m_mesh_chunks; + std::map> + m_mesh_material_to_material_asset_id; +}; +} // namespace VideoCommon diff --git a/Source/Core/VideoCommon/CMakeLists.txt b/Source/Core/VideoCommon/CMakeLists.txt index 36cf30a9d1f6..89ec66d04874 100644 --- a/Source/Core/VideoCommon/CMakeLists.txt +++ b/Source/Core/VideoCommon/CMakeLists.txt @@ -20,6 +20,8 @@ add_library(videocommon Assets/DirectFilesystemAssetLibrary.h Assets/MaterialAsset.cpp Assets/MaterialAsset.h + Assets/MeshAsset.cpp + Assets/MeshAsset.h Assets/ShaderAsset.cpp Assets/ShaderAsset.h Assets/TextureAsset.cpp @@ -216,6 +218,7 @@ PRIVATE imgui implot glslang + tinygltf ) if(_M_X86_64) From 3da2e15e6b95f02f66df461e87c8b896e450fdab Mon Sep 17 00:00:00 2001 From: Peter Lafreniere Date: Sun, 11 Feb 2024 20:55:31 -0500 Subject: [PATCH 018/223] IOFile: avoid clearing errors on null file struct When performing a default compilation with recent GCC & glibc, the use of -Werror=nonnull causes a build error. The error is given as IOFile::ClearError() can call std::clearerr() with a null file, which can trigger a null-pointer dereference in libc. Change the std::clearerr() call to be conditional on a file being open. --- Source/Core/Common/IOFile.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Common/IOFile.h b/Source/Core/Common/IOFile.h index 4b12c3188853..b5895333b1be 100644 --- a/Source/Core/Common/IOFile.h +++ b/Source/Core/Common/IOFile.h @@ -116,7 +116,8 @@ class IOFile void ClearError() { m_good = true; - std::clearerr(m_file); + if (IsOpen()) + std::clearerr(m_file); } private: From f0d363eea73b213667d6ec198170b1bb069feeb4 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Mon, 12 Feb 2024 04:12:44 +0100 Subject: [PATCH 019/223] Core/DSPHLE: Construct accelerator in AX and AXWii constructors. This fixes an issue introduced by 3b0444be6bf38ca5c20f5b9b8916c54fd8f6fa36 where the m_accelerator would not be initialized when loading a savestate if the current UCode mismatched the UCode in the savestate, leading to a crash. --- Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp | 10 +++++++--- Source/Core/Core/HW/DSPHLE/UCodes/AX.h | 3 +++ Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp | 11 ++++++----- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp index 15001f8db3ac..2dc000dbfe05 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp @@ -27,9 +27,15 @@ namespace DSP::HLE { -AXUCode::AXUCode(DSPHLE* dsphle, u32 crc) : UCodeInterface(dsphle, crc) +AXUCode::AXUCode(DSPHLE* dsphle, u32 crc, bool dummy) : UCodeInterface(dsphle, crc) +{ +} + +AXUCode::AXUCode(DSPHLE* dsphle, u32 crc) : AXUCode(dsphle, crc, false) { INFO_LOG_FMT(DSPHLE, "Instantiating AXUCode: crc={:08x}", crc); + + m_accelerator = std::make_unique(dsphle->GetSystem().GetDSP()); } AXUCode::~AXUCode() = default; @@ -37,8 +43,6 @@ AXUCode::~AXUCode() = default; void AXUCode::Initialize() { InitializeShared(); - - m_accelerator = std::make_unique(m_dsphle->GetSystem().GetDSP()); } void AXUCode::InitializeShared() diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AX.h b/Source/Core/Core/HW/DSPHLE/UCodes/AX.h index 76951d5f681c..a4d8cb05f40a 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/AX.h +++ b/Source/Core/Core/HW/DSPHLE/UCodes/AX.h @@ -110,6 +110,9 @@ class AXUCode /* not final: subclassed by AXWiiUCode */ : public UCodeInterface std::unique_ptr m_accelerator; + // Constructs without any GC-specific state, so it can be used by the deriving AXWii. + AXUCode(DSPHLE* dsphle, u32 crc, bool dummy); + void InitializeShared(); bool LoadResamplingCoefficients(bool require_same_checksum, u32 desired_checksum); diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp index cbdb814d3676..36cd154f9ba7 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp @@ -20,21 +20,22 @@ namespace DSP::HLE { -AXWiiUCode::AXWiiUCode(DSPHLE* dsphle, u32 crc) : AXUCode(dsphle, crc), m_last_main_volume(0x8000) +AXWiiUCode::AXWiiUCode(DSPHLE* dsphle, u32 crc) + : AXUCode(dsphle, crc, false), m_last_main_volume(0x8000) { + INFO_LOG_FMT(DSPHLE, "Instantiating AXWiiUCode: crc={:08x}", crc); + for (u16& volume : m_last_aux_volumes) volume = 0x8000; - INFO_LOG_FMT(DSPHLE, "Instantiating AXWiiUCode"); - m_old_axwii = (crc == 0xfa450138) || (crc == 0x7699af32); + + m_accelerator = std::make_unique(dsphle->GetSystem().GetDSP()); } void AXWiiUCode::Initialize() { InitializeShared(); - - m_accelerator = std::make_unique(m_dsphle->GetSystem().GetDSP()); } void AXWiiUCode::HandleCommandList() From 2ab877586def383692c893e3948ccc6865966f3c Mon Sep 17 00:00:00 2001 From: iwubcode Date: Mon, 12 Feb 2024 18:42:01 -0600 Subject: [PATCH 020/223] VideoCommon: make mesh asset data loadable by asset loader --- .../VideoCommon/Assets/CustomAssetLibrary.h | 4 + .../VideoCommon/Assets/CustomAssetLoader.cpp | 6 + .../VideoCommon/Assets/CustomAssetLoader.h | 5 + .../Assets/DirectFilesystemAssetLibrary.cpp | 107 ++++++++++++++++++ .../Assets/DirectFilesystemAssetLibrary.h | 1 + Source/Core/VideoCommon/Assets/MeshAsset.cpp | 15 +++ Source/Core/VideoCommon/Assets/MeshAsset.h | 9 ++ 7 files changed, 147 insertions(+) diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLibrary.h b/Source/Core/VideoCommon/Assets/CustomAssetLibrary.h index 78cea9a3e90f..b4831ea6506e 100644 --- a/Source/Core/VideoCommon/Assets/CustomAssetLibrary.h +++ b/Source/Core/VideoCommon/Assets/CustomAssetLibrary.h @@ -11,6 +11,7 @@ namespace VideoCommon { struct MaterialData; +struct MeshData; struct PixelShaderData; struct TextureData; @@ -48,5 +49,8 @@ class CustomAssetLibrary // Loads a material virtual LoadInfo LoadMaterial(const AssetID& asset_id, MaterialData* data) = 0; + + // Loads a mesh + virtual LoadInfo LoadMesh(const AssetID& asset_id, MeshData* data) = 0; }; } // namespace VideoCommon diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp b/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp index 134b18b49645..dfe640ffe8a8 100644 --- a/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp +++ b/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp @@ -97,4 +97,10 @@ CustomAssetLoader::LoadMaterial(const CustomAssetLibrary::AssetID& asset_id, { return LoadOrCreateAsset(asset_id, m_materials, std::move(library)); } + +std::shared_ptr CustomAssetLoader::LoadMesh(const CustomAssetLibrary::AssetID& asset_id, + std::shared_ptr library) +{ + return LoadOrCreateAsset(asset_id, m_meshes, std::move(library)); +} } // namespace VideoCommon diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLoader.h b/Source/Core/VideoCommon/Assets/CustomAssetLoader.h index 920f62e8309e..7ddb746ca6a8 100644 --- a/Source/Core/VideoCommon/Assets/CustomAssetLoader.h +++ b/Source/Core/VideoCommon/Assets/CustomAssetLoader.h @@ -13,6 +13,7 @@ #include "Common/WorkQueueThread.h" #include "VideoCommon/Assets/CustomAsset.h" #include "VideoCommon/Assets/MaterialAsset.h" +#include "VideoCommon/Assets/MeshAsset.h" #include "VideoCommon/Assets/ShaderAsset.h" #include "VideoCommon/Assets/TextureAsset.h" @@ -47,6 +48,9 @@ class CustomAssetLoader std::shared_ptr LoadMaterial(const CustomAssetLibrary::AssetID& asset_id, std::shared_ptr library); + std::shared_ptr LoadMesh(const CustomAssetLibrary::AssetID& asset_id, + std::shared_ptr library); + private: // TODO C++20: use a 'derived_from' concept against 'CustomAsset' when available template @@ -80,6 +84,7 @@ class CustomAssetLoader std::map> m_game_textures; std::map> m_pixel_shaders; std::map> m_materials; + std::map> m_meshes; std::thread m_asset_monitor_thread; Common::Flag m_asset_monitor_thread_shutdown; diff --git a/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp b/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp index ff20d117c290..be5159b44811 100644 --- a/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp +++ b/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp @@ -4,13 +4,16 @@ #include "VideoCommon/Assets/DirectFilesystemAssetLibrary.h" #include +#include #include #include "Common/FileUtil.h" +#include "Common/IOFile.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" #include "VideoCommon/Assets/MaterialAsset.h" +#include "VideoCommon/Assets/MeshAsset.h" #include "VideoCommon/Assets/ShaderAsset.h" #include "VideoCommon/Assets/TextureAsset.h" #include "VideoCommon/RenderState.h" @@ -220,6 +223,110 @@ CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadMaterial(const As return LoadInfo{json_data.size(), GetLastAssetWriteTime(asset_id)}; } +CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadMesh(const AssetID& asset_id, + MeshData* data) +{ + const auto asset_map = GetAssetMapForID(asset_id); + + // Asset map for a mesh is the mesh and some metadata + if (asset_map.size() != 2) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' expected to have two files mapped!", asset_id); + return {}; + } + + const auto metadata = asset_map.find("metadata"); + const auto mesh = asset_map.find("mesh"); + if (metadata == asset_map.end()) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' expected to have a metadata entry mapped!", asset_id); + return {}; + } + + if (mesh == asset_map.end()) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' expected to have a mesh entry mapped!", asset_id); + return {}; + } + + std::size_t metadata_size; + { + std::error_code ec; + metadata_size = std::filesystem::file_size(metadata->second, ec); + if (ec) + { + ERROR_LOG_FMT(VIDEO, + "Asset '{}' error - failed to get mesh metadata file size with error '{}'!", + asset_id, ec); + return {}; + } + } + std::size_t mesh_size; + { + std::error_code ec; + mesh_size = std::filesystem::file_size(mesh->second, ec); + if (ec) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to get mesh file size with error '{}'!", + asset_id, ec); + return {}; + } + } + const auto approx_mem_size = metadata_size + mesh_size; + + File::IOFile file(PathToString(mesh->second), "rb"); + if (!file.IsOpen()) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to open mesh file '{}'!", asset_id, + PathToString(mesh->second)); + return {}; + } + + std::vector bytes; + bytes.reserve(file.GetSize()); + file.ReadBytes(bytes.data(), file.GetSize()); + if (!MeshData::FromDolphinMesh(bytes, data)) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the mesh file '{}'!", asset_id, + PathToString(mesh->second)); + 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()) + { + 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( + VIDEO, + "Asset '{}' error - failed to load the json file '{}', due to root not being an object!", + asset_id, PathToString(metadata->second)); + return {}; + } + + const auto& root_obj = root.get(); + + if (!MeshData::FromJson(asset_id, root_obj, data)) + return {}; + + return LoadInfo{approx_mem_size, GetLastAssetWriteTime(asset_id)}; +} + CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadTexture(const AssetID& asset_id, TextureData* data) { diff --git a/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.h b/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.h index 244b49c88b66..c4d99baf82c1 100644 --- a/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.h +++ b/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.h @@ -23,6 +23,7 @@ class DirectFilesystemAssetLibrary final : public CustomAssetLibrary LoadInfo LoadTexture(const AssetID& asset_id, TextureData* data) override; LoadInfo LoadPixelShader(const AssetID& asset_id, PixelShaderData* data) override; LoadInfo LoadMaterial(const AssetID& asset_id, MaterialData* data) override; + LoadInfo LoadMesh(const AssetID& asset_id, MeshData* data) override; // Gets the latest time from amongst all the files in the asset map TimeType GetLastAssetWriteTime(const AssetID& asset_id) const override; diff --git a/Source/Core/VideoCommon/Assets/MeshAsset.cpp b/Source/Core/VideoCommon/Assets/MeshAsset.cpp index b8dd029375e0..05a4ba096179 100644 --- a/Source/Core/VideoCommon/Assets/MeshAsset.cpp +++ b/Source/Core/VideoCommon/Assets/MeshAsset.cpp @@ -12,6 +12,7 @@ #include "Common/IOFile.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" +#include "VideoCommon/Assets/CustomAssetLibrary.h" namespace VideoCommon { @@ -645,4 +646,18 @@ bool MeshData::FromGLTF(std::string_view gltf_file, MeshData* data) ERROR_LOG_FMT(VIDEO, "GLTF '{}' has invalid extension", gltf_file); return false; } + +CustomAssetLibrary::LoadInfo MeshAsset::LoadImpl(const CustomAssetLibrary::AssetID& asset_id) +{ + auto potential_data = std::make_shared(); + const auto loaded_info = m_owning_library->LoadMesh(asset_id, potential_data.get()); + if (loaded_info.m_bytes_loaded == 0) + return {}; + { + std::lock_guard lk(m_data_lock); + m_loaded = true; + m_data = std::move(potential_data); + } + return loaded_info; +} } // namespace VideoCommon diff --git a/Source/Core/VideoCommon/Assets/MeshAsset.h b/Source/Core/VideoCommon/Assets/MeshAsset.h index eb23f39783a9..a678b14ceeaf 100644 --- a/Source/Core/VideoCommon/Assets/MeshAsset.h +++ b/Source/Core/VideoCommon/Assets/MeshAsset.h @@ -57,4 +57,13 @@ struct MeshData std::map> m_mesh_material_to_material_asset_id; }; + +class MeshAsset final : public CustomLoadableAsset +{ +public: + using CustomLoadableAsset::CustomLoadableAsset; + +private: + CustomAssetLibrary::LoadInfo LoadImpl(const CustomAssetLibrary::AssetID& asset_id) override; +}; } // namespace VideoCommon From a1d6a54eaaa309fd2bcc72a876cb751dce6a1673 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Tue, 13 Feb 2024 11:44:41 -0800 Subject: [PATCH 021/223] DolphinTool: Fix parsing of command line bzip2 flag Use "bzip2" instead of "bzip" in optparse's compression choices for the convert command. This is both more accurate and matches what the ParseCompressionTypeString function expects. The mismatch between the two parsing functions prevented compression using bzip2 because either ParseCompressionTypeString or optparse would generate an error when using "bzip" or "bzip2" respectively. Fixes https://bugs.dolphin-emu.org/issues/13427 --- Source/Core/DolphinTool/ConvertCommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinTool/ConvertCommand.cpp b/Source/Core/DolphinTool/ConvertCommand.cpp index ec128da54ba7..ed494ef2d855 100644 --- a/Source/Core/DolphinTool/ConvertCommand.cpp +++ b/Source/Core/DolphinTool/ConvertCommand.cpp @@ -102,7 +102,7 @@ int ConvertCommand(const std::vector& args) .action("store") .help("Compression method to use when converting to WIA/RVZ. Suggested value for RVZ: zstd " "[%choices]") - .choices({"none", "zstd", "bzip", "lzma", "lzma2"}); + .choices({"none", "zstd", "bzip2", "lzma", "lzma2"}); parser.add_option("-l", "--compression_level") .type("int") From 394af40db5f3b90a7da01900052229537014aeb1 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 15 Feb 2024 16:33:18 -0500 Subject: [PATCH 022/223] Improved achievements disabled messaging Most obviously, there is no longer a warning message to the player in the achievement window that achievements are disabled if a game is not currently running. --- Source/Core/Core/AchievementManager.cpp | 6 ++++++ Source/Core/Core/ConfigManager.cpp | 3 ++- Source/Core/Core/Core.cpp | 1 + .../Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp | 5 +---- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c0b35d430f4c..7bb1cfa7eb76 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -884,10 +884,14 @@ void AchievementManager::SetDisabled(bool disable) INFO_LOG_FMT(ACHIEVEMENTS, "Achievement Manager has been disabled."); OSD::AddMessage("Please close all games to re-enable achievements.", OSD::Duration::VERY_LONG, OSD::Color::RED); + m_update_callback(); } if (previously_disabled && !disable) + { INFO_LOG_FMT(ACHIEVEMENTS, "Achievement Manager has been re-enabled."); + m_update_callback(); + } }; const AchievementManager::NamedIconMap& AchievementManager::GetChallengeIcons() const @@ -926,6 +930,7 @@ void AchievementManager::Logout() { std::lock_guard lg{m_lock}; CloseGame(); + SetDisabled(false); m_player_badge.name.clear(); Config::SetBaseOrCurrent(Config::RA_API_TOKEN, ""); } @@ -937,6 +942,7 @@ void AchievementManager::Logout() void AchievementManager::Shutdown() { CloseGame(); + SetDisabled(false); m_is_runtime_initialized = false; m_queue.Shutdown(); // DON'T log out - keep those credentials for next run. diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index d0a399d939ab..5ad626f56ec4 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -170,7 +170,8 @@ void SConfig::SetRunningGameMetadata(const std::string& game_id, const std::stri return; #ifdef USE_RETRO_ACHIEVEMENTS - AchievementManager::GetInstance().SetDisabled(true); + if (game_id != "00000000") + AchievementManager::GetInstance().SetDisabled(true); #endif // USE_RETRO_ACHIEVEMENTS if (game_id == "00000000") diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 4fd75d056fba..326331b5bd38 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -291,6 +291,7 @@ void Stop() // - Hammertime! #ifdef USE_RETRO_ACHIEVEMENTS AchievementManager::GetInstance().CloseGame(); + AchievementManager::GetInstance().SetDisabled(false); #endif // USE_RETRO_ACHIEVEMENTS s_is_stopping = true; diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index 9bbec01a9f0a..e844d22d39e4 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -150,10 +150,7 @@ void AchievementHeaderWidget::UpdateData() m_game_progress_hard->setVisible(false); m_game_progress_soft->setVisible(false); m_rich_presence->setVisible(false); - if (instance.IsDisabled()) - { - m_locked_warning->setVisible(true); - } + m_locked_warning->setVisible(instance.IsDisabled()); } } From 56ff19c51301d3b029e71a71c3f54f72bb2fb808 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Fri, 24 Nov 2023 16:00:03 -0800 Subject: [PATCH 023/223] BalloonTip: Rework BalloonTip drawing * Fix irregularly shaped corners * Remove extra space for BalloonTips with no message or no title * When the target tip location is not on a screen, put the tooltip on the mouse's screen instead of the primary screen * Fix description getting cut off when the title was too long * Expose border width as a parameter * Fix spacing and sizing issues with larger border widths --- .../Config/ToolTipControls/BalloonTip.cpp | 393 +++++++++++------- .../Config/ToolTipControls/BalloonTip.h | 18 +- .../Config/ToolTipControls/ToolTipWidget.h | 2 +- 3 files changed, 256 insertions(+), 157 deletions(-) diff --git a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp index 435b60e4621f..672a4381f821 100644 --- a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp +++ b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp @@ -6,24 +6,25 @@ #include #include -#include -#include -#include +#include +#include +#include #include #include #include #include -#include -#include - +#include +#include +#include #include +#include +#include +#include #if defined(__APPLE__) #include #endif -#include "Core/Config/MainSettings.h" - #include "DolphinQt/Settings.h" namespace @@ -31,8 +32,9 @@ namespace std::unique_ptr s_the_balloon_tip = nullptr; } // namespace -void BalloonTip::ShowBalloon(const QIcon& icon, const QString& title, const QString& message, - const QPoint& pos, QWidget* parent, ShowArrow show_arrow) +void BalloonTip::ShowBalloon(const QString& title, const QString& message, + const QPoint& target_arrow_tip_position, QWidget* const parent, + const ShowArrow show_arrow, const int border_width) { HideBalloon(); if (message.isEmpty() && title.isEmpty()) @@ -42,10 +44,10 @@ void BalloonTip::ShowBalloon(const QIcon& icon, const QString& title, const QStr QString the_message = message; the_message.replace(QStringLiteral(""), QStringLiteral("")); the_message.replace(QStringLiteral(""), QStringLiteral("")); - QToolTip::showText(pos, the_message, parent); + QToolTip::showText(target_arrow_tip_position, the_message, parent); #else - s_the_balloon_tip = std::make_unique(PrivateTag{}, icon, title, message, parent); - s_the_balloon_tip->UpdateBoundsAndRedraw(pos, show_arrow); + s_the_balloon_tip = std::make_unique(PrivateTag{}, title, message, parent); + s_the_balloon_tip->UpdateBoundsAndRedraw(target_arrow_tip_position, show_arrow, border_width); #endif } @@ -54,20 +56,16 @@ void BalloonTip::HideBalloon() #if defined(__APPLE__) QToolTip::hideText(); #else - if (!s_the_balloon_tip) + if (s_the_balloon_tip == nullptr) return; s_the_balloon_tip->hide(); s_the_balloon_tip.reset(); #endif } -BalloonTip::BalloonTip(PrivateTag, const QIcon& icon, QString title, QString message, - QWidget* parent) +BalloonTip::BalloonTip(PrivateTag, const QString& title, QString message, QWidget* const parent) : QWidget(nullptr, Qt::ToolTip) { - setAttribute(Qt::WA_DeleteOnClose); - setAutoFillBackground(true); - QColor window_color; QColor text_color; QColor dolphin_emphasis; @@ -78,43 +76,41 @@ BalloonTip::BalloonTip(PrivateTag, const QIcon& icon, QString title, QString mes .arg(text_color.rgba(), 0, 16); setStyleSheet(style_sheet); - // Replace text in our our message - // if specific "tags" are used + // Replace text in our our message if specific "tags" are used message.replace(QStringLiteral(""), QStringLiteral("").arg(dolphin_emphasis.rgba(), 0, 16)); message.replace(QStringLiteral(""), QStringLiteral("")); - auto* title_label = new QLabel; - title_label->installEventFilter(this); - title_label->setText(title); - QFont f = title_label->font(); - f.setBold(true); - title_label->setFont(f); - title_label->setTextFormat(Qt::RichText); - title_label->setSizePolicy(QSizePolicy::Policy::MinimumExpanding, - QSizePolicy::Policy::MinimumExpanding); - - auto* message_label = new QLabel; - message_label->installEventFilter(this); - message_label->setText(message); - message_label->setTextFormat(Qt::RichText); - message_label->setAlignment(Qt::AlignTop | Qt::AlignLeft); - - const int limit = message_label->screen()->availableGeometry().width() / 3; - message_label->setMaximumWidth(limit); - message_label->setSizePolicy(QSizePolicy::Policy::MinimumExpanding, - QSizePolicy::Policy::MinimumExpanding); - if (message_label->sizeHint().width() > limit) + auto* const balloontip_layout = new QVBoxLayout; + balloontip_layout->setSizeConstraint(QLayout::SetFixedSize); + setLayout(balloontip_layout); + + const auto create_label = [=](const QString& text) { + QLabel* const label = new QLabel; + balloontip_layout->addWidget(label); + + label->setText(text); + label->setTextFormat(Qt::RichText); + + const int max_width = label->screen()->availableGeometry().width() / 3; + label->setMaximumWidth(max_width); + if (label->sizeHint().width() > max_width) + label->setWordWrap(true); + + return label; + }; + + if (!title.isEmpty()) { - message_label->setWordWrap(true); - } + QLabel* const title_label = create_label(title); - auto* layout = new QGridLayout; - layout->addWidget(title_label, 0, 0, 1, 2); + QFont title_font = title_label->font(); + title_font.setBold(true); + title_label->setFont(title_font); + } - layout->addWidget(message_label, 1, 0, 1, 3); - layout->setSizeConstraint(QLayout::SetMinimumSize); - setLayout(layout); + if (!message.isEmpty()) + create_label(message); } void BalloonTip::paintEvent(QPaintEvent*) @@ -123,116 +119,215 @@ void BalloonTip::paintEvent(QPaintEvent*) painter.drawPixmap(rect(), m_pixmap); } -void BalloonTip::UpdateBoundsAndRedraw(const QPoint& pos, ShowArrow show_arrow) +void BalloonTip::UpdateBoundsAndRedraw(const QPoint& target_arrow_tip_position, + const ShowArrow show_arrow, const int border_full_width) { - m_show_arrow = show_arrow == ShowArrow::Yes; + const float border_half_width = border_full_width / 2.0; - QScreen* screen = QGuiApplication::screenAt(pos); - if (!screen) - screen = QGuiApplication::primaryScreen(); - const QRect screen_rect = screen->geometry(); + // This should be odd so that the arrow tip is a single pixel wide. + const int arrow_full_width = 35; + const float arrow_half_width = arrow_full_width / 2.0; + // The y distance between the inner edge of the rectangle border and the inner tip of the arrow + // border, and also the distance between the outer edge of the rectangle border and the outer tip + // of the arrow border + const int arrow_height = (1 + arrow_full_width) / 2; - QSize sh = sizeHint(); - // The look should resemble the default tooltip style set in Settings::ApplyStyle() - const int border = 1; - const int arrow_height = 18; - const int arrow_width = 18; - const int arrow_offset = 52; - const int rect_center = 7; - const bool arrow_at_bottom = (pos.y() - sh.height() - arrow_height > 0); - const bool arrow_at_left = (pos.x() + sh.width() - arrow_width < screen_rect.width()); - const int default_padding = 10; - layout()->setContentsMargins(border + 3 + default_padding, - border + (arrow_at_bottom ? 0 : arrow_height) + 2 + default_padding, - border + 3 + default_padding, - border + (arrow_at_bottom ? arrow_height : 0) + 2 + default_padding); - updateGeometry(); - sh = sizeHint(); - - int ml, mr, mt, mb; - QSize sz = sizeHint(); - if (arrow_at_bottom) - { - ml = mt = 0; - mr = sz.width() - 1; - mb = sz.height() - arrow_height - 1; - } - else - { - ml = 0; - mt = arrow_height; - mr = sz.width() - 1; - mb = sz.height() - 1; - } + // Distance between the label layout and the inner rectangle border edge + const int balloon_interior_padding = 12; + // Prevent the corners of the label layout from portruding into the rounded rectangle corners at + // larger border sizes. + const int rounded_corner_margin = border_half_width / 4; + const int horizontal_margin = + border_full_width + rounded_corner_margin + balloon_interior_padding; + const int vertical_margin = horizontal_margin + arrow_height; - QPainterPath path; - path.moveTo(ml + rect_center, mt); - if (!arrow_at_bottom && arrow_at_left) - { - if (m_show_arrow) - { - path.lineTo(ml + arrow_offset - arrow_width, mt); - path.lineTo(ml + arrow_offset, mt - arrow_height); - path.lineTo(ml + arrow_offset + arrow_width, mt); - } - move(qMax(pos.x() - arrow_offset, screen_rect.left() + 2), pos.y()); - } - else if (!arrow_at_bottom && !arrow_at_left) - { - if (m_show_arrow) - { - path.lineTo(mr - arrow_offset - arrow_width, mt); - path.lineTo(mr - arrow_offset, mt - arrow_height); - path.lineTo(mr - arrow_offset + arrow_width, mt); - } - move(qMin(pos.x() - sh.width() + arrow_offset, screen_rect.right() - sh.width() - 2), pos.y()); - } - path.lineTo(mr - rect_center, mt); - path.arcTo(QRect(mr - rect_center * 2, mt, rect_center * 2, rect_center * 2), 90, -90); - path.lineTo(mr, mb - rect_center); - path.arcTo(QRect(mr - rect_center * 2, mb - rect_center * 2, rect_center * 2, rect_center * 2), 0, - -90); - if (arrow_at_bottom && !arrow_at_left) + // Create enough space around the layout containing the title and message to draw the balloon and + // both arrow tips (at most one of which will be visible) + layout()->setContentsMargins(horizontal_margin, vertical_margin, horizontal_margin, + vertical_margin); + + QSize size_hint = sizeHint(); + + // These positions represent the middle of each edge of the BalloonTip's rounded rectangle + const float rect_width = size_hint.width() - border_full_width; + const float rect_height = size_hint.height() - border_full_width - 2 * arrow_height; + const float rect_top = border_half_width + arrow_height; + const float rect_bottom = rect_top + rect_height; + const float rect_left = border_half_width; + // rect_right isn't used for anything + + // Qt defines the radius of a rounded rectangle as "the radius of the ellipses defining the + // corner". Unlike the rectangle's edges this corresponds to the outside of the rounded curve + // instead of its middle, so we add the full width to the inner radius instead of the half width + const float corner_base_inner_radius = 7.0; + const float corner_outer_radius = corner_base_inner_radius + border_full_width; + + // This value is arbitrary but works well. + const int base_arrow_x_offset = 34; + // Adjust the offset inward to compensate for the border and rounded corner widths. This ensures + // the arrow is on the flat part of the top/bottom border. + const int adjusted_arrow_x_offset = + base_arrow_x_offset + border_full_width + static_cast(border_half_width); + // If the border is wide enough (or the BalloonTip small enough) the offset might end up past the + // midpoint; if that happens just use the midpoint instead + const int centered_arrow_x_offset = (size_hint.width() - arrow_full_width) / 2; + // If the arrow is on the left this is the distance between the left edge of the BalloonTip and + // the left edge of the arrow interior; otherwise the distance between the right edges. + const int arrow_nearest_edge_x_offset = + std::min(adjusted_arrow_x_offset, centered_arrow_x_offset); + const int arrow_tip_x_offset = arrow_nearest_edge_x_offset + arrow_half_width; + + // The BalloonTip should be contained entirely within the screen that contains the target + // position. + QScreen* screen = QGuiApplication::screenAt(target_arrow_tip_position); + if (screen == nullptr) { - if (m_show_arrow) - { - path.lineTo(mr - arrow_offset + arrow_width, mb); - path.lineTo(mr - arrow_offset, mb + arrow_height); - path.lineTo(mr - arrow_offset - arrow_width, mb); - } - move(qMin(pos.x() - sh.width() + arrow_offset, screen_rect.right() - sh.width() - 2), - pos.y() - sh.height()); + // If the target position isn't on any screen (which can happen if the window is partly off the + // screen and the user hovers over the label) then use the screen containing the cursor instead. + screen = QGuiApplication::screenAt(QCursor::pos()); } - else if (arrow_at_bottom && arrow_at_left) + const QRect screen_rect = screen->geometry(); + + QPainterPath rect_path; + rect_path.addRoundedRect(rect_left, rect_top, rect_width, rect_height, corner_outer_radius, + corner_outer_radius); + + // The default pen cap style Qt::SquareCap extends drawn lines one half width before the starting + // point and one half width after the ending point such that the starting and ending points are + // surrounded by drawn pixels in both dimensions instead of just for the width. This is a + // reasonable default but we need to draw lines precisely, and this behavior causes problems when + // drawing lines of length and width 1 (which we do for the arrow interior, and also the arrow + // border when border_full_width is 1). For those lines to correctly end up as a pixel we would + // need to offset the start and end points by 0.5 inward. However, doing that would lead them to + // be at the same point, and if the endpoints of a line are the same Qt simply doesn't draw it + // regardless of the cap style. + // + // Using Qt::FlatCap instead fixes the issue. + + m_pixmap = QPixmap(size_hint); + + QPen border_pen(m_border_color, border_full_width); + border_pen.setCapStyle(Qt::FlatCap); + + QPainter balloon_painter(&m_pixmap); + balloon_painter.setPen(border_pen); + balloon_painter.setBrush(palette().color(QPalette::Window)); + balloon_painter.drawPath(rect_path); + + QBitmap mask_bitmap(size_hint); + mask_bitmap.fill(Qt::color0); + + QPen mask_pen(Qt::color1, border_full_width); + mask_pen.setCapStyle(Qt::FlatCap); + + QPainter mask_painter(&mask_bitmap); + mask_painter.setPen(mask_pen); + mask_painter.setBrush(QBrush(Qt::color1)); + mask_painter.drawPath(rect_path); + + const bool arrow_at_bottom = + target_arrow_tip_position.y() - size_hint.height() + arrow_height >= 0; + const bool arrow_at_left = + target_arrow_tip_position.x() + size_hint.width() - arrow_tip_x_offset < screen_rect.width(); + + const float arrow_base_y = + arrow_at_bottom ? rect_bottom - border_half_width : rect_top + border_half_width; + + const float arrow_tip_vertical_offset = arrow_at_bottom ? arrow_height : -arrow_height; + const float arrow_tip_interior_y = arrow_base_y + arrow_tip_vertical_offset; + const float arrow_tip_exterior_y = + arrow_tip_interior_y + (arrow_at_bottom ? border_full_width : -border_full_width); + const float arrow_base_left_edge_x = + arrow_at_left ? arrow_nearest_edge_x_offset : + size_hint.width() - arrow_nearest_edge_x_offset - arrow_full_width; + const float arrow_base_right_edge_x = arrow_base_left_edge_x + arrow_full_width; + const float arrow_tip_x = arrow_base_left_edge_x + arrow_half_width; + + if (show_arrow == ShowArrow::Yes) { - if (m_show_arrow) + // Drawing diagonal lines in Qt is filled with edge cases and inexplicable behavior. Getting it + // to do what you want at one border size is simple enough, but doing so flexibly is an exercise + // in futility. Some examples: + // * For some values of x, diagonal lines of width x and x+1 are drawn exactly the same. + // * When drawing a triangle where p1 and p3 have exactly the same y value, they can be drawn at + // different heights. + // * Lines of width 1 sometimes get drawn one pixel past where they should even with FlatCap, + // but only on the left side (regardless of which direction the stroke was). + // + // Instead of dealing with all that, fake it with vertical lines which are much better behaved. + // Draw a bunch of vertical lines with width 1 to form the arrow border and interior. + + QPainterPath arrow_border_path; + QPainterPath arrow_interior_fill_path; + const float y_end_offset = arrow_at_bottom ? border_full_width : -border_full_width; + + // Draw the arrow border and interior lines from the outside inward. Each loop iteration draws + // one pair of border lines and one pair of interior lines. + for (int i = 1; i <= arrow_half_width; i++) { - path.lineTo(arrow_offset + arrow_width, mb); - path.lineTo(arrow_offset, mb + arrow_height); - path.lineTo(arrow_offset - arrow_width, mb); + const float x_offset_from_arrow_base_edge = i - 0.5; + const float border_y_start = arrow_base_y + (arrow_at_bottom ? i : -i); + const float border_y_end = border_y_start + y_end_offset; + const float interior_y_start = arrow_base_y; + const float interior_y_end = border_y_start; + const float left_line_x = arrow_base_left_edge_x + x_offset_from_arrow_base_edge; + const float right_line_x = arrow_base_right_edge_x - x_offset_from_arrow_base_edge; + + arrow_border_path.moveTo(left_line_x, border_y_start); + arrow_border_path.lineTo(left_line_x, border_y_end); + + arrow_border_path.moveTo(right_line_x, border_y_start); + arrow_border_path.lineTo(right_line_x, border_y_end); + + arrow_interior_fill_path.moveTo(left_line_x, interior_y_start); + arrow_interior_fill_path.lineTo(left_line_x, interior_y_end); + + arrow_interior_fill_path.moveTo(right_line_x, interior_y_start); + arrow_interior_fill_path.lineTo(right_line_x, interior_y_end); } - move(qMax(pos.x() - arrow_offset, screen_rect.x() + 2), pos.y() - sh.height()); + // The middle border line + arrow_border_path.moveTo(arrow_tip_x, arrow_tip_interior_y); + arrow_border_path.lineTo(arrow_tip_x, arrow_tip_interior_y + y_end_offset); + + // The middle interior line + arrow_interior_fill_path.moveTo(arrow_tip_x, arrow_base_y); + arrow_interior_fill_path.lineTo(arrow_tip_x, arrow_tip_interior_y); + + border_pen.setWidth(1); + + balloon_painter.setPen(border_pen); + balloon_painter.drawPath(arrow_border_path); + + QPen arrow_interior_fill_pen(palette().color(QPalette::Window), 1); + arrow_interior_fill_pen.setCapStyle(Qt::FlatCap); + balloon_painter.setPen(arrow_interior_fill_pen); + balloon_painter.drawPath(arrow_interior_fill_path); + + mask_pen.setWidth(1); + mask_painter.setPen(mask_pen); + + mask_painter.drawPath(arrow_border_path); + mask_painter.drawPath(arrow_interior_fill_path); } - path.lineTo(ml + rect_center, mb); - path.arcTo(QRect(ml, mb - rect_center * 2, rect_center * 2, rect_center * 2), -90, -90); - path.lineTo(ml, mt + rect_center); - path.arcTo(QRect(ml, mt, rect_center * 2, rect_center * 2), 180, -90); - - // Set the mask - QBitmap bitmap(sizeHint()); - bitmap.fill(Qt::color0); - QPainter painter1(&bitmap); - painter1.setPen(QPen(Qt::color1, border)); - painter1.setBrush(QBrush(Qt::color1)); - painter1.drawPath(path); - setMask(bitmap); - - // Draw the border - m_pixmap = QPixmap(sz); - QPainter painter2(&m_pixmap); - painter2.setPen(QPen(m_border_color)); - painter2.setBrush(palette().color(QPalette::Window)); - painter2.drawPath(path); + + setMask(mask_bitmap); + + // Place the arrow tip at the target position whether the arrow tip is drawn or not + const int target_balloontip_global_x = + target_arrow_tip_position.x() - static_cast(arrow_tip_x); + const int rightmost_valid_balloontip_global_x = screen_rect.width() - size_hint.width(); + // If the balloon would extend off the screen, push it left or right until it's not + const int actual_balloontip_global_x = + std::max(0, std::min(rightmost_valid_balloontip_global_x, target_balloontip_global_x)); + // The tip pixel should be in the middle of the control, and arrow_tip_exterior_y is at the bottom + // of that pixel. When arrow_at_bottom is true the arrow is above arrow_tip_exterior_y and so the + // tip pixel is in the right place, but when it's false the arrow is below arrow_tip_exterior_y + // so the tip pixel would be the one below that. Make this adjustment to fix that. + const int tip_pixel_adjustment = arrow_at_bottom ? 0 : 1; + const int actual_balloontip_global_y = + target_arrow_tip_position.y() - arrow_tip_exterior_y - tip_pixel_adjustment; + + move(actual_balloontip_global_x, actual_balloontip_global_y); show(); } diff --git a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.h b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.h index a0a918325b01..c5df392df948 100644 --- a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.h +++ b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.h @@ -3,10 +3,14 @@ #pragma once -#include +#include #include #include +class QPaintEvent; +class QPoint; +class QString; + class BalloonTip : public QWidget { Q_OBJECT @@ -21,15 +25,16 @@ class BalloonTip : public QWidget Yes, No }; - static void ShowBalloon(const QIcon& icon, const QString& title, const QString& msg, - const QPoint& pos, QWidget* parent, - ShowArrow show_arrow = ShowArrow::Yes); + static void ShowBalloon(const QString& title, const QString& message, + const QPoint& target_arrow_tip_position, QWidget* parent, + ShowArrow show_arrow = ShowArrow::Yes, int border_width = 1); static void HideBalloon(); - BalloonTip(PrivateTag, const QIcon& icon, QString title, QString msg, QWidget* parent); + BalloonTip(PrivateTag, const QString& title, QString message, QWidget* parent); private: - void UpdateBoundsAndRedraw(const QPoint&, ShowArrow); + void UpdateBoundsAndRedraw(const QPoint& target_arrow_tip_position, ShowArrow show_arrow, + int border_width); protected: void paintEvent(QPaintEvent*) override; @@ -37,5 +42,4 @@ class BalloonTip : public QWidget private: QColor m_border_color; QPixmap m_pixmap; - bool m_show_arrow = true; }; diff --git a/Source/Core/DolphinQt/Config/ToolTipControls/ToolTipWidget.h b/Source/Core/DolphinQt/Config/ToolTipControls/ToolTipWidget.h index 1f7c57434553..727ae114625d 100644 --- a/Source/Core/DolphinQt/Config/ToolTipControls/ToolTipWidget.h +++ b/Source/Core/DolphinQt/Config/ToolTipControls/ToolTipWidget.h @@ -37,7 +37,7 @@ class ToolTipWidget : public Derived this->killTimer(*m_timer_id); m_timer_id.reset(); - BalloonTip::ShowBalloon(QIcon(), m_title, m_description, + BalloonTip::ShowBalloon(m_title, m_description, this->parentWidget()->mapToGlobal(GetToolTipPosition()), this); } From acb18a58cf77130592d06bd6c7841a2fb05b8996 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Fri, 16 Feb 2024 12:40:45 -0500 Subject: [PATCH 024/223] Make the path given to `CMAKE_USER_MAKE_RULES_OVERRIDE` absolute --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ff8bd9db347..5f43174bcf8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ endif() # This is inserted into the Info.plist as well. set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15.0" CACHE STRING "") -set(CMAKE_USER_MAKE_RULES_OVERRIDE "CMake/FlagsOverride.cmake") +set(CMAKE_USER_MAKE_RULES_OVERRIDE "${CMAKE_CURRENT_SOURCE_DIR}/CMake/FlagsOverride.cmake") project(dolphin-emu) From 52410813f22def236c7ce28390fbd18cb0b582d4 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 18 Feb 2024 04:40:25 +0100 Subject: [PATCH 025/223] Common: Add utility function that wraps localtime_s() or localtime_t(). --- Source/Core/Common/CMakeLists.txt | 2 ++ Source/Core/Common/TimeUtil.cpp | 24 ++++++++++++++++++++++++ Source/Core/Common/TimeUtil.h | 13 +++++++++++++ Source/Core/DolphinLib.props | 2 ++ 4 files changed, 41 insertions(+) create mode 100644 Source/Core/Common/TimeUtil.cpp create mode 100644 Source/Core/Common/TimeUtil.h diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index 61bc9155da4a..1431239af253 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -138,6 +138,8 @@ add_library(common Thread.h Timer.cpp Timer.h + TimeUtil.cpp + TimeUtil.h TraversalClient.cpp TraversalClient.h TraversalProto.h diff --git a/Source/Core/Common/TimeUtil.cpp b/Source/Core/Common/TimeUtil.cpp new file mode 100644 index 000000000000..39d989fb3fe4 --- /dev/null +++ b/Source/Core/Common/TimeUtil.cpp @@ -0,0 +1,24 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Common/TimeUtil.h" + +#include +#include + +namespace Common +{ +std::optional Localtime(std::time_t time) +{ + std::tm local_time; +#ifdef _MSC_VER + if (localtime_s(&local_time, &time) != 0) + return std::nullopt; +#else + std::tm* result = localtime_r(&time, &local_time); + if (result != &local_time) + return std::nullopt; +#endif + return local_time; +} +} // Namespace Common diff --git a/Source/Core/Common/TimeUtil.h b/Source/Core/Common/TimeUtil.h new file mode 100644 index 000000000000..ff9ca02a12b7 --- /dev/null +++ b/Source/Core/Common/TimeUtil.h @@ -0,0 +1,13 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +namespace Common +{ +// Threadsafe and error-checking variant of std::localtime() +std::optional Localtime(std::time_t time); +} // Namespace Common diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 74b3185753ba..42ae7ba5e635 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -161,6 +161,7 @@ + @@ -832,6 +833,7 @@ + From d3140e72c3f59f203c6c85049c5bcd25f9b14f3b Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 18 Feb 2024 04:45:37 +0100 Subject: [PATCH 026/223] Core: Fix crash when inspecting a savestate with a timestamp that causes localtime() to error out. --- Source/Core/Core/State.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index e3e9a441c282..d60747deebb5 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -29,6 +29,7 @@ #include "Common/IOFile.h" #include "Common/MsgHandler.h" #include "Common/Thread.h" +#include "Common/TimeUtil.h" #include "Common/Timer.h" #include "Common/Version.h" #include "Common/WorkQueueThread.h" @@ -282,10 +283,12 @@ static std::string SystemTimeAsDoubleToString(double time) { // revert adjustments from GetSystemTimeAsDouble() to get a normal Unix timestamp again const time_t seconds = static_cast(time) + DOUBLE_TIME_OFFSET; - const tm local_time = fmt::localtime(seconds); + const auto local_time = Common::Localtime(seconds); + if (!local_time) + return ""; // fmt is locale agnostic by default, so explicitly use current locale. - return fmt::format(std::locale{""}, "{:%x %X}", local_time); + return fmt::format(std::locale{""}, "{:%x %X}", *local_time); } static std::string MakeStateFilename(int number); From edbf8f1772dad8eb69a99c808e87ac5835b6b81c Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 16 Feb 2024 22:13:20 -0600 Subject: [PATCH 027/223] Common: add json utility functions for Vec3 serialization --- Source/Core/Common/JsonUtil.cpp | 20 ++++++++++++++++++++ Source/Core/Common/JsonUtil.h | 20 +++++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 Source/Core/Common/JsonUtil.cpp diff --git a/Source/Core/Common/JsonUtil.cpp b/Source/Core/Common/JsonUtil.cpp new file mode 100644 index 000000000000..d16f37f4f36e --- /dev/null +++ b/Source/Core/Common/JsonUtil.cpp @@ -0,0 +1,20 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Common/JsonUtil.h" + +picojson::object ToJsonObject(const Common::Vec3& vec) +{ + picojson::object obj; + obj.emplace("x", vec.x); + obj.emplace("y", vec.y); + obj.emplace("z", vec.z); + return obj; +} + +void FromJson(const picojson::object& obj, Common::Vec3& vec) +{ + vec.x = ReadNumericOrDefault(obj, "x"); + vec.y = ReadNumericOrDefault(obj, "y"); + vec.z = ReadNumericOrDefault(obj, "z"); +} diff --git a/Source/Core/Common/JsonUtil.h b/Source/Core/Common/JsonUtil.h index 131eb941a882..cee52432ffc8 100644 --- a/Source/Core/Common/JsonUtil.h +++ b/Source/Core/Common/JsonUtil.h @@ -3,10 +3,13 @@ #pragma once -#include +#include #include +#include "Common/MathUtil.h" +#include "Common/Matrix.h" + // Ideally this would use a concept like, 'template ' to constrain it, // but unfortunately we'd need to require clang 15 for that, since the ranges library isn't // fully implemented until then, but this should suffice. @@ -24,3 +27,18 @@ picojson::array ToJsonArray(const Range& data) return result; } + +template +Type ReadNumericOrDefault(const picojson::object& obj, const std::string& key, + Type default_value = Type{}) +{ + const auto it = obj.find(key); + if (it == obj.end()) + return default_value; + if (!it->second.is()) + return default_value; + return MathUtil::SaturatingCast(it->second.get()); +} + +picojson::object ToJsonObject(const Common::Vec3& vec); +void FromJson(const picojson::object& obj, Common::Vec3& vec); From 638808c94486ee98e7598ff55a098e8c64bb9da5 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 18 Feb 2024 20:06:32 +0100 Subject: [PATCH 028/223] IOS/FS: Display the invalid path in the ASSERT in BuildFilename(). --- Source/Core/Core/IOS/FS/HostBackend/FS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/FS/HostBackend/FS.cpp b/Source/Core/Core/IOS/FS/HostBackend/FS.cpp index 503a8c4607c5..699e333db165 100644 --- a/Source/Core/Core/IOS/FS/HostBackend/FS.cpp +++ b/Source/Core/Core/IOS/FS/HostBackend/FS.cpp @@ -46,7 +46,7 @@ HostFileSystem::HostFilename HostFileSystem::BuildFilename(const std::string& wi if (wii_path.compare(0, 1, "/") == 0) return HostFilename{m_root_path + Common::EscapePath(wii_path), false}; - ASSERT(false); + ASSERT_MSG(IOS_FS, false, "Invalid Wii path '{}' given to BuildFilename()", wii_path); return HostFilename{m_root_path, false}; } From a1147dae6e7dadc0def660a3067d0e9f519711b0 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sun, 18 Feb 2024 15:39:19 -0600 Subject: [PATCH 029/223] VideoCommon: move factory names to be a static inside each action class, so that they can be reused in the future for serialization --- .../Runtime/Actions/CustomPipelineAction.h | 2 ++ .../GraphicsModSystem/Runtime/Actions/MoveAction.h | 2 ++ .../GraphicsModSystem/Runtime/Actions/PrintAction.h | 3 +++ .../GraphicsModSystem/Runtime/Actions/ScaleAction.h | 2 ++ .../GraphicsModSystem/Runtime/Actions/SkipAction.h | 1 + .../Runtime/GraphicsModActionFactory.cpp | 10 +++++----- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h index 8413ec187e1a..99026b99cea9 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -21,6 +22,7 @@ class CustomPipelineAction final : public GraphicsModAction std::string m_pixel_material_asset; }; + static constexpr std::string_view factory_name = "custom_pipeline"; static std::unique_ptr Create(const picojson::value& json_data, std::shared_ptr library); diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h index 273cab1cfc02..b7a0358ce81f 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include @@ -12,6 +13,7 @@ class MoveAction final : public GraphicsModAction { public: + static constexpr std::string_view factory_name = "move"; static std::unique_ptr Create(const picojson::value& json_data); explicit MoveAction(Common::Vec3 position_offset); void OnProjection(GraphicsModActionData::Projection* projection) override; diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/PrintAction.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/PrintAction.h index 73a8103ad49d..82a21c152ff8 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/PrintAction.h +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/PrintAction.h @@ -3,11 +3,14 @@ #pragma once +#include + #include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModAction.h" class PrintAction final : public GraphicsModAction { public: + static constexpr std::string_view factory_name = "print"; void OnDrawStarted(GraphicsModActionData::DrawStarted*) override; void OnEFB(GraphicsModActionData::EFB*) override; void OnProjection(GraphicsModActionData::Projection*) override; diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/ScaleAction.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/ScaleAction.h index 7192fe0c767c..4673ed2d1864 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/ScaleAction.h +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/ScaleAction.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include @@ -12,6 +13,7 @@ class ScaleAction final : public GraphicsModAction { public: + static constexpr std::string_view factory_name = "scale"; static std::unique_ptr Create(const picojson::value& json_data); explicit ScaleAction(Common::Vec3 scale); void OnEFB(GraphicsModActionData::EFB*) override; diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/SkipAction.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/SkipAction.h index 59de81035566..8cda643c5ab5 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/SkipAction.h +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/SkipAction.h @@ -8,6 +8,7 @@ class SkipAction final : public GraphicsModAction { public: + static constexpr std::string_view factory_name = "skip"; void OnDrawStarted(GraphicsModActionData::DrawStarted*) override; void OnEFB(GraphicsModActionData::EFB*) override; }; diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp index 6ff64aa038d9..1059595ef13b 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp @@ -14,23 +14,23 @@ namespace GraphicsModActionFactory std::unique_ptr Create(std::string_view name, const picojson::value& json_data, std::shared_ptr library) { - if (name == "print") + if (name == PrintAction::factory_name) { return std::make_unique(); } - else if (name == "skip") + else if (name == SkipAction::factory_name) { return std::make_unique(); } - else if (name == "move") + else if (name == MoveAction::factory_name) { return MoveAction::Create(json_data); } - else if (name == "scale") + else if (name == ScaleAction::factory_name) { return ScaleAction::Create(json_data); } - else if (name == "custom_pipeline") + else if (name == CustomPipelineAction::factory_name) { return CustomPipelineAction::Create(json_data, std::move(library)); } From e5b73fec082f10756dfd1edd928b257c2bdffa60 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sat, 17 Feb 2024 13:11:21 -0500 Subject: [PATCH 030/223] Fixes to Achievement points count/mastery Two minor updates to improve the Achievement Manager's handling of a player's completion rate. One, UnlockStatus and the unlock map now track achievement category, such that TallyScore does not count unofficial achievements in counts/points. Two, the determinations for mastery/completion are now improved to check (1) that the achievement triggering this is CORE (not UNOFFICIAL) and (2) that it has not already been unlocked at this level on the site, which should be sufficient to determine that the unlocking of this particular achievement completes/masters the game. --- Source/Core/Core/AchievementManager.cpp | 47 ++++++++++++++----------- Source/Core/Core/AchievementManager.h | 1 + 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c0b35d430f4c..a5911532c213 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -359,11 +359,11 @@ void AchievementManager::ActivateDeactivateAchievements() bool encore = Config::Get(Config::RA_ENCORE_ENABLED); for (u32 ix = 0; ix < m_game_data.num_achievements; ix++) { - u32 points = (m_game_data.achievements[ix].category == RC_ACHIEVEMENT_CATEGORY_UNOFFICIAL) ? - 0 : - m_game_data.achievements[ix].points; - auto iter = m_unlock_map.insert( - {m_game_data.achievements[ix].id, UnlockStatus{.game_data_index = ix, .points = points}}); + auto iter = + m_unlock_map.insert({m_game_data.achievements[ix].id, + UnlockStatus{.game_data_index = ix, + .points = m_game_data.achievements[ix].points, + .category = m_game_data.achievements[ix].category}}); ActivateDeactivateAchievement(iter.first->first, enabled, unofficial, encore); } INFO_LOG_FMT(ACHIEVEMENTS, "Achievements (de)activated."); @@ -800,6 +800,8 @@ AchievementManager::PointSpread AchievementManager::TallyScore() const return spread; for (const auto& entry : m_unlock_map) { + if (entry.second.category != RC_ACHIEVEMENT_CATEGORY_CORE) + continue; u32 points = entry.second.points; spread.total_count++; spread.total_points += points; @@ -1460,22 +1462,27 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_runtime_event_ (Config::Get(Config::RA_BADGES_ENABLED)) ? DecodeBadgeToOSDIcon(it->second.unlocked_badge.badge) : nullptr); - PointSpread spread = TallyScore(); - if (spread.hard_points == spread.total_points) - { - OSD::AddMessage( - fmt::format("Congratulations! {} has mastered {}", m_display_name, m_game_data.title), - OSD::Duration::VERY_LONG, OSD::Color::YELLOW, - (Config::Get(Config::RA_BADGES_ENABLED)) ? DecodeBadgeToOSDIcon(m_game_badge.badge) : - nullptr); - } - else if (spread.hard_points + spread.soft_points == spread.total_points) + if (m_game_data.achievements[game_data_index].category == RC_ACHIEVEMENT_CATEGORY_CORE) { - OSD::AddMessage( - fmt::format("Congratulations! {} has completed {}", m_display_name, m_game_data.title), - OSD::Duration::VERY_LONG, OSD::Color::CYAN, - (Config::Get(Config::RA_BADGES_ENABLED)) ? DecodeBadgeToOSDIcon(m_game_badge.badge) : - nullptr); + PointSpread spread = TallyScore(); + if (spread.hard_points == spread.total_points && + it->second.remote_unlock_status != UnlockStatus::UnlockType::HARDCORE) + { + OSD::AddMessage( + fmt::format("Congratulations! {} has mastered {}", m_display_name, m_game_data.title), + OSD::Duration::VERY_LONG, OSD::Color::YELLOW, + (Config::Get(Config::RA_BADGES_ENABLED)) ? DecodeBadgeToOSDIcon(m_game_badge.badge) : + nullptr); + } + else if (spread.hard_points + spread.soft_points == spread.total_points && + it->second.remote_unlock_status == UnlockStatus::UnlockType::LOCKED) + { + OSD::AddMessage( + fmt::format("Congratulations! {} has completed {}", m_display_name, m_game_data.title), + OSD::Duration::VERY_LONG, OSD::Color::CYAN, + (Config::Get(Config::RA_BADGES_ENABLED)) ? DecodeBadgeToOSDIcon(m_game_badge.badge) : + nullptr); + } } ActivateDeactivateAchievement(event_id, Config::Get(Config::RA_ACHIEVEMENTS_ENABLED), Config::Get(Config::RA_UNOFFICIAL_ENABLED), diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index ff5c72206661..7d6c9441b1c8 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -89,6 +89,7 @@ class AchievementManager u32 points = 0; BadgeStatus locked_badge; BadgeStatus unlocked_badge; + u32 category = RC_ACHIEVEMENT_CATEGORY_CORE; }; static constexpr std::string_view GRAY = "transparent"; From edaafaae2f83f7f37c98bf2d179f08b3b6a38482 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Mon, 19 Feb 2024 11:41:01 -0500 Subject: [PATCH 031/223] Have dolphin_scmrev run `ScmRevGen` from `CMAKE_CURRENT_SOURCE_DIR` --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f43174bcf8d..f90545d96fc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -788,7 +788,7 @@ if(NOT GIT_FOUND) 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_SOURCE_DIR}/CMake/ScmRevGen.cmake + ${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 VERBATIM ) From 95ee0ac7819f29b39e80112edd9104cad6f0502e Mon Sep 17 00:00:00 2001 From: Filoppi Date: Tue, 20 Feb 2024 02:42:52 +0200 Subject: [PATCH 032/223] Video: Fix aspect ratio heuristics getting stuck to widescreen (or to non widescreen) (`m_is_game_widescreen` variable) if the user first forced the aspect ratio to 16:9/4:3 and then set it back to Auto. --- Source/Core/VideoCommon/Widescreen.cpp | 36 +++++++++++++++++++++----- Source/Core/VideoCommon/Widescreen.h | 1 + 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/Source/Core/VideoCommon/Widescreen.cpp b/Source/Core/VideoCommon/Widescreen.cpp index 6cc12c7fc1c4..616d89baa29c 100644 --- a/Source/Core/VideoCommon/Widescreen.cpp +++ b/Source/Core/VideoCommon/Widescreen.cpp @@ -33,24 +33,39 @@ WidescreenManager::WidescreenManager() void WidescreenManager::Update() { + std::optional is_game_widescreen; + auto& system = Core::System::GetInstance(); if (system.IsWii()) - m_is_game_widescreen = Config::Get(Config::SYSCONF_WIDESCREEN); + is_game_widescreen = Config::Get(Config::SYSCONF_WIDESCREEN); // suggested_aspect_mode overrides SYSCONF_WIDESCREEN if (g_ActiveConfig.suggested_aspect_mode == AspectMode::ForceStandard) - m_is_game_widescreen = false; + is_game_widescreen = false; else if (g_ActiveConfig.suggested_aspect_mode == AspectMode::ForceWide) - m_is_game_widescreen = true; + is_game_widescreen = true; // If widescreen hack is disabled override game's AR if UI is set to 4:3 or 16:9. if (!g_ActiveConfig.bWidescreenHack) { const auto aspect_mode = g_ActiveConfig.aspect_mode; if (aspect_mode == AspectMode::ForceStandard) - m_is_game_widescreen = false; + is_game_widescreen = false; else if (aspect_mode == AspectMode::ForceWide) - m_is_game_widescreen = true; + is_game_widescreen = true; + + // Reset settings to default if heuristics aren't currently running and + // the user selected the automatic aspect ratio. + if (!is_game_widescreen.has_value() && !m_widescreen_heuristics_active_and_successful && + aspect_mode == AspectMode::Auto) + { + is_game_widescreen = false; + } + } + + if (is_game_widescreen.has_value()) + { + m_is_game_widescreen = is_game_widescreen.value(); } } @@ -62,12 +77,16 @@ void WidescreenManager::UpdateWidescreenHeuristic() // If suggested_aspect_mode (GameINI) is configured don't use heuristic. if (g_ActiveConfig.suggested_aspect_mode != AspectMode::Auto) + { + m_widescreen_heuristics_active_and_successful = false; return; + } Update(); - // If widescreen hack isn't active and aspect_mode (user setting) - // is set to a forced aspect ratio, don't use heuristic. + m_widescreen_heuristics_active_and_successful = false; + + // If widescreen hack isn't active and aspect_mode (UI) is 4:3 or 16:9 don't use heuristic. if (!g_ActiveConfig.bWidescreenHack && (g_ActiveConfig.aspect_mode == AspectMode::ForceStandard || g_ActiveConfig.aspect_mode == AspectMode::ForceWide)) return; @@ -92,6 +111,7 @@ void WidescreenManager::UpdateWidescreenHeuristic() { // If either perspective or orthographic projections look anamorphic, it's a safe bet. m_is_game_widescreen = true; + m_widescreen_heuristics_active_and_successful = true; } else if (looks_normal(persp) || (m_was_orthographically_anamorphic && looks_normal(ortho))) { @@ -102,6 +122,7 @@ void WidescreenManager::UpdateWidescreenHeuristic() // Unless we were in a situation which was orthographically anamorphic // we won't consider orthographic data for changes from 16:9 to 4:3. m_is_game_widescreen = false; + m_widescreen_heuristics_active_and_successful = true; } m_was_orthographically_anamorphic = ortho_looks_anamorphic; @@ -114,5 +135,6 @@ void WidescreenManager::DoState(PointerWrap& p) if (p.IsReadMode()) { m_was_orthographically_anamorphic = false; + m_widescreen_heuristics_active_and_successful = false; } } diff --git a/Source/Core/VideoCommon/Widescreen.h b/Source/Core/VideoCommon/Widescreen.h index 586aa48e8497..5ddce82cd3cd 100644 --- a/Source/Core/VideoCommon/Widescreen.h +++ b/Source/Core/VideoCommon/Widescreen.h @@ -29,6 +29,7 @@ class WidescreenManager bool m_is_game_widescreen = false; bool m_was_orthographically_anamorphic = false; + bool m_widescreen_heuristics_active_and_successful = false; Common::EventHook m_update_widescreen; Common::EventHook m_config_changed; From 3f102ea8c2ccdce4365fdbd1cd04bf4284ba2f11 Mon Sep 17 00:00:00 2001 From: Filoppi Date: Mon, 18 Dec 2023 01:00:47 +0200 Subject: [PATCH 033/223] Video: Make the game resolution (within the window) snap to the XFB size if they are within a ~1 pixel treshold on one axis only. This takes care of making the image clearer in some edge cases where the game was already running at near perfect 4:3 with no stretching, and the VI aspect ratio didn't match the XFB by one pixel, making the image stretched and blurry. -Video: Fix `FindClosestIntegerResolution() using the window aspect ratio and not the draw aspect ratio, causing it to prefer stretching over black bars in cases when it wasn't desirable. --- Source/Core/VideoCommon/FramebufferManager.h | 2 +- Source/Core/VideoCommon/Present.cpp | 47 ++++++++++++++++++-- Source/Core/VideoCommon/Present.h | 5 ++- 3 files changed, 48 insertions(+), 6 deletions(-) diff --git a/Source/Core/VideoCommon/FramebufferManager.h b/Source/Core/VideoCommon/FramebufferManager.h index 7921a70d4181..e6e7cdc920e8 100644 --- a/Source/Core/VideoCommon/FramebufferManager.h +++ b/Source/Core/VideoCommon/FramebufferManager.h @@ -194,7 +194,7 @@ class FramebufferManager final void DoLoadState(PointerWrap& p); void DoSaveState(PointerWrap& p); - float m_efb_scale = 0.0f; + float m_efb_scale = 1.0f; PixelFormat m_prev_efb_format; std::unique_ptr m_efb_color_texture; diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index 8f773ae630a4..d475c15c249b 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -69,6 +69,32 @@ static std::tuple FindClosestIntegerResolution(float width, float heig return std::make_tuple(int_width, int_height); } +static void TryToSnapToXFBSize(int& width, int& height, int xfb_width, int xfb_height) +{ + // Screen is blanking (e.g. game booting up), nothing to do here + if (xfb_width == 0 || xfb_height == 0) + return; + + // If there's only 1 pixel of either horizontal or vertical resolution difference, + // make the output size match a multiple of the XFB native resolution, + // to achieve the highest quality (least scaling). + // The reason why the threshold is 1 pixel (per internal resolution multiplier) is because of + // minor inaccuracies of the VI aspect ratio (and because some resolutions are rounded + // while other are floored). + const unsigned int efb_scale = g_framebuffer_manager->GetEFBScale(); + const unsigned int pixel_difference_width = std::abs(width - xfb_width); + const unsigned int pixel_difference_height = std::abs(height - xfb_height); + // We ignore this if there's an offset on both hor and ver size, + // as then we'd be changing the aspect ratio too much and would need to + // re-calculate a lot of stuff (like black bars). + if ((pixel_difference_width <= efb_scale && pixel_difference_height == 0) || + (pixel_difference_height <= efb_scale && pixel_difference_width == 0)) + { + width = xfb_width; + height = xfb_height; + } +} + Presenter::Presenter() { m_config_changed = @@ -114,6 +140,7 @@ bool Presenter::FetchXFB(u32 xfb_addr, u32 fb_width, u32 fb_stride, u32 fb_heigh { // Game is blanking the screen m_xfb_entry.reset(); + m_xfb_rect = MathUtil::Rectangle(); m_last_xfb_id = std::numeric_limits::max(); } else @@ -534,6 +561,7 @@ void Presenter::UpdateDrawRectangle() // FIXME: this breaks at very low widget sizes // Make ControllerInterface aware of the render window region actually being used // to adjust mouse cursor inputs. + // This also fails to acknowledge "g_ActiveConfig.bCrop". g_controller_interface.SetAspectRatioAdjustment(draw_aspect_ratio / win_aspect_ratio); float draw_width = draw_aspect_ratio; @@ -576,10 +604,20 @@ void Presenter::UpdateDrawRectangle() } else { + // Find the best integer resolution: the closest aspect ratio with the least black bars + const float updated_draw_aspect_ratio = draw_width / draw_height; const auto int_draw_res = - FindClosestIntegerResolution(draw_width, draw_height, win_aspect_ratio); + FindClosestIntegerResolution(draw_width, draw_height, updated_draw_aspect_ratio); int_draw_width = std::get<0>(int_draw_res); int_draw_height = std::get<1>(int_draw_res); + if (!g_ActiveConfig.bCrop) + { + TryToSnapToXFBSize(int_draw_width, int_draw_height, m_xfb_rect.GetWidth(), + m_xfb_rect.GetHeight()); + // We can't draw something bigger than the window, it will crop + int_draw_width = std::min(int_draw_width, static_cast(win_width)); + int_draw_height = std::min(int_draw_height, static_cast(win_height)); + } } m_target_rectangle.left = static_cast(std::round(win_width / 2.0 - int_draw_width / 2.0)); @@ -620,13 +658,14 @@ std::tuple Presenter::CalculateOutputDimensions(int width, int height, if (!allow_stretch && aspect_mode == AspectMode::Stretch) aspect_mode = AspectMode::Auto; - // Find the closest integer aspect ratio, - // this avoids a small black line from being drawn on one of the four edges if (!g_ActiveConfig.bCrop && aspect_mode != AspectMode::Stretch) { + // Find the closest integer resolution for the aspect ratio, + // this avoids a small black line from being drawn on one of the four edges const float draw_aspect_ratio = CalculateDrawAspectRatio(allow_stretch); - const auto [int_width, int_height] = + auto [int_width, int_height] = FindClosestIntegerResolution(scaled_width, scaled_height, draw_aspect_ratio); + TryToSnapToXFBSize(int_width, int_height, m_xfb_rect.GetWidth(), m_xfb_rect.GetHeight()); width = int_width; height = int_height; } diff --git a/Source/Core/VideoCommon/Present.h b/Source/Core/VideoCommon/Present.h index 3a36bf091347..9723e1aa1968 100644 --- a/Source/Core/VideoCommon/Present.h +++ b/Source/Core/VideoCommon/Present.h @@ -138,7 +138,8 @@ class Presenter u32 m_auto_resolution_scale = 1; RcTcacheEntry m_xfb_entry; - MathUtil::Rectangle m_xfb_rect; + // Internal resolution multiplier scaled XFB size + MathUtil::Rectangle m_xfb_rect{0, 0, MAX_XFB_WIDTH, MAX_XFB_HEIGHT}; // Tracking of XFB textures so we don't render duplicate frames. u64 m_last_xfb_id = std::numeric_limits::max(); @@ -156,8 +157,10 @@ class Presenter // XFB tracking u64 m_last_xfb_ticks = 0; u32 m_last_xfb_addr = 0; + // Native XFB width u32 m_last_xfb_width = MAX_XFB_WIDTH; u32 m_last_xfb_stride = 0; + // Native XFB height u32 m_last_xfb_height = MAX_XFB_HEIGHT; Common::EventHook m_config_changed; From a84dc3123e1e2f586851d6f11b59975d1e6cce24 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Tue, 20 Feb 2024 08:09:06 -0500 Subject: [PATCH 034/223] Use `CMAKE_CURRENT_SOURCE_DIR` for the CMake module path --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f90545d96fc8..869862eb754a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,7 +156,7 @@ if(UNIX) endif() list(APPEND CMAKE_MODULE_PATH - ${CMAKE_SOURCE_DIR}/CMake + ${CMAKE_CURRENT_SOURCE_DIR}/CMake ) # Support functions From d66b96b1c034dd547f781d3364f0624b805d0c90 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 20 Feb 2024 12:59:01 -0500 Subject: [PATCH 035/223] Properly enable RetroAchievements hardcore mode RetroAchievements plans to use the user_agent in unlock requests to determine which software version was used to play the game, and can filter older software versions out. As such, I have been given the go-ahead to remove the hardcoded line that forces hardcore to always be false. --- Source/Core/Core/AchievementManager.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 9b061544c843..a851372ba121 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -24,8 +24,6 @@ #include "VideoCommon/OnScreenDisplay.h" #include "VideoCommon/VideoEvents.h" -static constexpr bool hardcore_mode_enabled = false; - static std::unique_ptr DecodeBadgeToOSDIcon(const AchievementManager::Badge& badge); AchievementManager& AchievementManager::GetInstance() @@ -373,12 +371,13 @@ void AchievementManager::ActivateDeactivateLeaderboards() { if (!Config::Get(Config::RA_ENABLED) || !IsLoggedIn()) return; - bool leaderboards_enabled = Config::Get(Config::RA_LEADERBOARDS_ENABLED); + bool leaderboards_enabled = + Config::Get(Config::RA_LEADERBOARDS_ENABLED) && Config::Get(Config::RA_HARDCORE_ENABLED); for (u32 ix = 0; ix < m_game_data.num_leaderboards; ix++) { auto leaderboard = m_game_data.leaderboards[ix]; u32 leaderboard_id = leaderboard.id; - if (m_is_game_loaded && leaderboards_enabled && hardcore_mode_enabled) + if (m_is_game_loaded && leaderboards_enabled) { rc_runtime_activate_lboard(&m_runtime, leaderboard_id, leaderboard.definition, nullptr, 0); m_queue.EmplaceItem([this, leaderboard_id] { @@ -798,6 +797,7 @@ AchievementManager::PointSpread AchievementManager::TallyScore() const PointSpread spread{}; if (!IsGameLoaded()) return spread; + bool hardcore_mode_enabled = Config::Get(Config::RA_HARDCORE_ENABLED); for (const auto& entry : m_unlock_map) { if (entry.second.category != RC_ACHIEVEMENT_CATEGORY_CORE) @@ -1303,6 +1303,7 @@ void AchievementManager::ActivateDeactivateAchievement(AchievementId id, bool en const UnlockStatus& status = it->second; u32 index = status.game_data_index; bool active = (rc_runtime_get_achievement(&m_runtime, id) != nullptr); + bool hardcore_mode_enabled = Config::Get(Config::RA_HARDCORE_ENABLED); // Deactivate achievements if game is not loaded bool activate = m_is_game_loaded; @@ -1357,6 +1358,7 @@ AchievementManager::ResponseType AchievementManager::AwardAchievement(Achievemen { std::string username = Config::Get(Config::RA_USERNAME); std::string api_token = Config::Get(Config::RA_API_TOKEN); + bool hardcore_mode_enabled = Config::Get(Config::RA_HARDCORE_ENABLED); rc_api_award_achievement_request_t award_request = {.username = username.c_str(), .api_token = api_token.c_str(), .achievement_id = achievement_id, @@ -1426,7 +1428,7 @@ void AchievementManager::DisplayWelcomeMessage() { std::lock_guard lg{m_lock}; PointSpread spread = TallyScore(); - if (hardcore_mode_enabled) + if (Config::Get(Config::RA_HARDCORE_ENABLED)) { OSD::AddMessage( fmt::format("You have {}/{} achievements worth {}/{} points", spread.hard_unlocks, @@ -1451,6 +1453,7 @@ void AchievementManager::DisplayWelcomeMessage() void AchievementManager::HandleAchievementTriggeredEvent(const rc_runtime_event_t* runtime_event) { + bool hardcore_mode_enabled = Config::Get(Config::RA_HARDCORE_ENABLED); const auto event_id = runtime_event->id; auto it = m_unlock_map.find(event_id); if (it == m_unlock_map.end()) From 48fbbdba7ca8b84bc6e8a5c2cd4f7b6a38422bca Mon Sep 17 00:00:00 2001 From: Filoppi Date: Mon, 18 Dec 2023 20:16:58 +0200 Subject: [PATCH 036/223] Video: update widescreen heuristic code to never get stuck to specific old values when changing settings --- Source/Core/VideoCommon/Widescreen.cpp | 130 +++++++++++++++---------- Source/Core/VideoCommon/Widescreen.h | 13 ++- 2 files changed, 87 insertions(+), 56 deletions(-) diff --git a/Source/Core/VideoCommon/Widescreen.cpp b/Source/Core/VideoCommon/Widescreen.cpp index 616d89baa29c..d35ba758ec2c 100644 --- a/Source/Core/VideoCommon/Widescreen.cpp +++ b/Source/Core/VideoCommon/Widescreen.cpp @@ -4,6 +4,7 @@ #include "VideoCommon/Widescreen.h" #include "Common/ChunkFile.h" +#include "Common/Logging/Log.h" #include "Core/Config/SYSCONFSettings.h" #include "Core/System.h" @@ -13,12 +14,34 @@ std::unique_ptr g_widescreen; WidescreenManager::WidescreenManager() { - Update(); + std::optional is_game_widescreen = GetWidescreenOverride(); + if (is_game_widescreen.has_value()) + m_is_game_widescreen = is_game_widescreen.value(); + + // Throw a warning as unsupported aspect ratio modes have no specific behavior to them + const bool is_valid_suggested_aspect_mode = + g_ActiveConfig.suggested_aspect_mode == AspectMode::Auto || + g_ActiveConfig.suggested_aspect_mode == AspectMode::ForceStandard || + g_ActiveConfig.suggested_aspect_mode == AspectMode::ForceWide; + if (!is_valid_suggested_aspect_mode) + { + WARN_LOG_FMT(VIDEO, + "Invalid suggested aspect ratio mode: only Auto, 4:3 and 16:9 are supported"); + } m_config_changed = ConfigChangedEvent::Register( [this](u32 bits) { if (bits & (CONFIG_CHANGE_BIT_ASPECT_RATIO)) - Update(); + { + std::optional is_game_widescreen = GetWidescreenOverride(); + // If the widescreen flag isn't being overridden by any settings, + // reset it to default if heuristic aren't running or to the last + // heuristic value if they were running. + if (!is_game_widescreen.has_value()) + is_game_widescreen = (m_heuristic_state == HeuristicState::Active_Found_Anamorphic); + if (is_game_widescreen.has_value()) + m_is_game_widescreen = is_game_widescreen.value(); + } }, "Widescreen"); @@ -31,7 +54,7 @@ WidescreenManager::WidescreenManager() } } -void WidescreenManager::Update() +std::optional WidescreenManager::GetWidescreenOverride() const { std::optional is_game_widescreen; @@ -53,79 +76,78 @@ void WidescreenManager::Update() is_game_widescreen = false; else if (aspect_mode == AspectMode::ForceWide) is_game_widescreen = true; - - // Reset settings to default if heuristics aren't currently running and - // the user selected the automatic aspect ratio. - if (!is_game_widescreen.has_value() && !m_widescreen_heuristics_active_and_successful && - aspect_mode == AspectMode::Auto) - { - is_game_widescreen = false; - } } - if (is_game_widescreen.has_value()) - { - m_is_game_widescreen = is_game_widescreen.value(); - } + return is_game_widescreen; } // Heuristic to detect if a GameCube game is in 16:9 anamorphic widescreen mode. // Cheats that change the game aspect ratio to natively unsupported ones won't be recognized here. void WidescreenManager::UpdateWidescreenHeuristic() { + // Reset to baseline state before the update const auto flush_statistics = g_vertex_manager->ResetFlushAspectRatioCount(); + const bool was_orthographically_anamorphic = m_was_orthographically_anamorphic; + m_heuristic_state = HeuristicState::Inactive; + m_was_orthographically_anamorphic = false; // If suggested_aspect_mode (GameINI) is configured don't use heuristic. + // We also don't need to check "GetWidescreenOverride()" in this case as + // nothing would have changed there. if (g_ActiveConfig.suggested_aspect_mode != AspectMode::Auto) - { - m_widescreen_heuristics_active_and_successful = false; return; - } - Update(); - - m_widescreen_heuristics_active_and_successful = false; + std::optional is_game_widescreen = GetWidescreenOverride(); // If widescreen hack isn't active and aspect_mode (UI) is 4:3 or 16:9 don't use heuristic. - if (!g_ActiveConfig.bWidescreenHack && (g_ActiveConfig.aspect_mode == AspectMode::ForceStandard || - g_ActiveConfig.aspect_mode == AspectMode::ForceWide)) - return; + if (g_ActiveConfig.bWidescreenHack || (g_ActiveConfig.aspect_mode != AspectMode::ForceStandard && + g_ActiveConfig.aspect_mode != AspectMode::ForceWide)) + { + // Modify the threshold based on which aspect ratio we're already using: + // If the game's in 4:3, it probably won't switch to anamorphic, and vice-versa. + const u32 transition_threshold = g_ActiveConfig.widescreen_heuristic_transition_threshold; - // Modify the threshold based on which aspect ratio we're already using: - // If the game's in 4:3, it probably won't switch to anamorphic, and vice-versa. - const u32 transition_threshold = g_ActiveConfig.widescreen_heuristic_transition_threshold; + const auto looks_normal = [transition_threshold](auto& counts) { + return counts.normal_vertex_count > counts.anamorphic_vertex_count * transition_threshold; + }; + const auto looks_anamorphic = [transition_threshold](auto& counts) { + return counts.anamorphic_vertex_count > counts.normal_vertex_count * transition_threshold; + }; - const auto looks_normal = [transition_threshold](auto& counts) { - return counts.normal_vertex_count > counts.anamorphic_vertex_count * transition_threshold; - }; - const auto looks_anamorphic = [transition_threshold](auto& counts) { - return counts.anamorphic_vertex_count > counts.normal_vertex_count * transition_threshold; - }; + const auto& persp = flush_statistics.perspective; + const auto& ortho = flush_statistics.orthographic; - const auto& persp = flush_statistics.perspective; - const auto& ortho = flush_statistics.orthographic; + const auto ortho_looks_anamorphic = looks_anamorphic(ortho); + const auto persp_looks_normal = looks_normal(persp); - const auto ortho_looks_anamorphic = looks_anamorphic(ortho); + if (looks_anamorphic(persp) || ortho_looks_anamorphic) + { + // If either perspective or orthographic projections look anamorphic, it's a safe bet. + is_game_widescreen = true; + m_heuristic_state = HeuristicState::Active_Found_Anamorphic; + } + else if (persp_looks_normal || looks_normal(ortho)) + { + // Many widescreen games (or AR/GeckoCodes) use anamorphic perspective projections + // with NON-anamorphic orthographic projections. + // This can cause incorrect changes to 4:3 when perspective projections are temporarily not + // shown. e.g. Animal Crossing's inventory menu. + // Unless we were in a situation which was orthographically anamorphic + // we won't consider orthographic data for changes from 16:9 to 4:3. + if (persp_looks_normal || was_orthographically_anamorphic) + is_game_widescreen = false; + m_heuristic_state = HeuristicState::Active_Found_Normal; + } + else + { + m_heuristic_state = HeuristicState::Active_NotFound; + } - if (looks_anamorphic(persp) || ortho_looks_anamorphic) - { - // If either perspective or orthographic projections look anamorphic, it's a safe bet. - m_is_game_widescreen = true; - m_widescreen_heuristics_active_and_successful = true; - } - else if (looks_normal(persp) || (m_was_orthographically_anamorphic && looks_normal(ortho))) - { - // Many widescreen games (or AR/GeckoCodes) use anamorphic perspective projections - // with NON-anamorphic orthographic projections. - // This can cause incorrect changes to 4:3 when perspective projections are temporarily not - // shown. e.g. Animal Crossing's inventory menu. - // Unless we were in a situation which was orthographically anamorphic - // we won't consider orthographic data for changes from 16:9 to 4:3. - m_is_game_widescreen = false; - m_widescreen_heuristics_active_and_successful = true; + m_was_orthographically_anamorphic = ortho_looks_anamorphic; } - m_was_orthographically_anamorphic = ortho_looks_anamorphic; + if (is_game_widescreen.has_value()) + m_is_game_widescreen = is_game_widescreen.value(); } void WidescreenManager::DoState(PointerWrap& p) @@ -135,6 +157,6 @@ void WidescreenManager::DoState(PointerWrap& p) if (p.IsReadMode()) { m_was_orthographically_anamorphic = false; - m_widescreen_heuristics_active_and_successful = false; + m_heuristic_state = HeuristicState::Inactive; } } diff --git a/Source/Core/VideoCommon/Widescreen.h b/Source/Core/VideoCommon/Widescreen.h index 5ddce82cd3cd..f58ff7880cbf 100644 --- a/Source/Core/VideoCommon/Widescreen.h +++ b/Source/Core/VideoCommon/Widescreen.h @@ -24,12 +24,21 @@ class WidescreenManager void DoState(PointerWrap& p); private: - void Update(); + enum class HeuristicState + { + Inactive, + Active_NotFound, + Active_Found_Normal, + Active_Found_Anamorphic, + }; + + // Returns whether the widescreen state wants to change, and its target value + std::optional GetWidescreenOverride() const; void UpdateWidescreenHeuristic(); bool m_is_game_widescreen = false; bool m_was_orthographically_anamorphic = false; - bool m_widescreen_heuristics_active_and_successful = false; + HeuristicState m_heuristic_state = HeuristicState::Inactive; Common::EventHook m_update_widescreen; Common::EventHook m_config_changed; From 56b82e764c5dc895781b769d45fb0ba9bc04f7c7 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 26 Feb 2024 22:21:05 -0500 Subject: [PATCH 037/223] Clear active challenges when game closes Failing to do this was causing challenge icons to carry over into the next game if a game was closed while the icons were active, even if the next game to run was a completely different game entirely with completely different badges. --- Source/Core/Core/AchievementManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 9b061544c843..cd09562b0575 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -908,6 +908,7 @@ void AchievementManager::CloseGame() if (m_is_game_loaded) { m_is_game_loaded = false; + m_active_challenges.clear(); ActivateDeactivateAchievements(); ActivateDeactivateLeaderboards(); ActivateDeactivateRichPresence(); From 67f60bec7e59dbb24930b23246fa44aa089c9861 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 7 Dec 2023 09:18:38 -0800 Subject: [PATCH 038/223] PowerPC: Implement BranchWatch This new component can track code paths by watching branch hits. --- Source/Core/Core/CMakeLists.txt | 2 + Source/Core/Core/Debugger/BranchWatch.cpp | 314 ++++++++++++++++++ Source/Core/Core/Debugger/BranchWatch.h | 278 ++++++++++++++++ .../Core/PowerPC/Interpreter/Interpreter.cpp | 5 +- .../Core/PowerPC/Interpreter/Interpreter.h | 7 +- .../Core/Core/PowerPC/JitCommon/JitBase.cpp | 2 +- Source/Core/Core/PowerPC/JitCommon/JitBase.h | 4 +- Source/Core/Core/PowerPC/PowerPC.h | 4 + Source/Core/Core/System.cpp | 4 +- Source/Core/DolphinLib.props | 2 + 10 files changed, 614 insertions(+), 8 deletions(-) create mode 100644 Source/Core/Core/Debugger/BranchWatch.cpp create mode 100644 Source/Core/Core/Debugger/BranchWatch.h diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 1dcbc14ce7ba..290947e7221a 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -61,6 +61,8 @@ add_library(core CoreTiming.h CPUThreadConfigCallback.cpp CPUThreadConfigCallback.h + Debugger/BranchWatch.cpp + Debugger/BranchWatch.h Debugger/CodeTrace.cpp Debugger/CodeTrace.h Debugger/DebugInterface.h diff --git a/Source/Core/Core/Debugger/BranchWatch.cpp b/Source/Core/Core/Debugger/BranchWatch.cpp new file mode 100644 index 000000000000..cefc38ddb29d --- /dev/null +++ b/Source/Core/Core/Debugger/BranchWatch.cpp @@ -0,0 +1,314 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/Debugger/BranchWatch.h" + +#include +#include +#include + +#include + +#include "Common/Assert.h" +#include "Common/BitField.h" +#include "Common/CommonTypes.h" +#include "Core/Core.h" +#include "Core/PowerPC/Gekko.h" +#include "Core/PowerPC/MMU.h" + +namespace Core +{ +void BranchWatch::Clear(const CPUThreadGuard&) +{ + m_selection.clear(); + m_collection_vt.clear(); + m_collection_vf.clear(); + m_collection_pt.clear(); + m_collection_pf.clear(); + m_recording_phase = Phase::Blacklist; + m_blacklist_size = 0; +} + +// This is a bitfield aggregate of metadata required to reconstruct a BranchWatch's Collections and +// Selection from a text file (a snapshot). For maximum forward compatibility, should that ever be +// required, the StorageType is an unsigned long long instead of something more reasonable like an +// unsigned int or u8. This is because the snapshot text file format contains no version info. +union USnapshotMetadata +{ + using Inspection = BranchWatch::SelectionInspection; + using StorageType = unsigned long long; + + static_assert(Inspection::EndOfEnumeration == Inspection{(1u << 3) + 1}); + + StorageType hex; + + BitField<0, 1, bool, StorageType> is_virtual; + BitField<1, 1, bool, StorageType> condition; + BitField<2, 1, bool, StorageType> is_selected; + BitField<3, 4, Inspection, StorageType> inspection; + + USnapshotMetadata() : hex(0) {} + explicit USnapshotMetadata(bool is_virtual_, bool condition_, bool is_selected_, + Inspection inspection_) + : USnapshotMetadata() + { + is_virtual = is_virtual_; + condition = condition_; + is_selected = is_selected_; + inspection = inspection_; + } +}; + +void BranchWatch::Save(const CPUThreadGuard& guard, std::FILE* file) const +{ + if (!CanSave()) + { + ASSERT_MSG(CORE, false, "BranchWatch can not be saved."); + return; + } + if (file == nullptr) + return; + + const auto routine = [&](const Collection& collection, bool is_virtual, bool condition) { + for (const Collection::value_type& kv : collection) + { + const auto iter = std::find_if( + m_selection.begin(), m_selection.end(), + [&](const Selection::value_type& value) { return value.collection_ptr == &kv; }); + fmt::println(file, "{:08x} {:08x} {:08x} {} {} {:x}", kv.first.origin_addr, + kv.first.destin_addr, kv.first.original_inst.hex, kv.second.total_hits, + kv.second.hits_snapshot, + iter == m_selection.end() ? + USnapshotMetadata(is_virtual, condition, false, {}).hex : + USnapshotMetadata(is_virtual, condition, true, iter->inspection).hex); + } + }; + routine(m_collection_vt, true, true); + routine(m_collection_pt, false, true); + routine(m_collection_vf, true, false); + routine(m_collection_pf, false, false); +} + +void BranchWatch::Load(const CPUThreadGuard& guard, std::FILE* file) +{ + if (file == nullptr) + return; + + Clear(guard); + + u32 origin_addr, destin_addr, inst_hex; + std::size_t total_hits, hits_snapshot; + USnapshotMetadata snapshot_metadata = {}; + while (std::fscanf(file, "%x %x %x %zu %zu %llx", &origin_addr, &destin_addr, &inst_hex, + &total_hits, &hits_snapshot, &snapshot_metadata.hex) == 6) + { + const bool is_virtual = snapshot_metadata.is_virtual; + const bool condition = snapshot_metadata.condition; + + const auto [kv_iter, emplace_success] = + GetCollection(is_virtual, condition) + .try_emplace({{origin_addr, destin_addr}, inst_hex}, + BranchWatchCollectionValue{total_hits, hits_snapshot}); + + if (!emplace_success) + continue; + + if (snapshot_metadata.is_selected) + { + // TODO C++20: Parenthesized initialization of aggregates has bad compiler support. + m_selection.emplace_back(BranchWatchSelectionValueType{&*kv_iter, is_virtual, condition, + snapshot_metadata.inspection}); + } + else if (hits_snapshot != 0) + { + ++m_blacklist_size; // This will be very wrong when not in Blacklist mode. That's ok. + } + } + + if (!m_selection.empty()) + m_recording_phase = Phase::Reduction; +} + +void BranchWatch::IsolateHasExecuted(const CPUThreadGuard&) +{ + switch (m_recording_phase) + { + case Phase::Blacklist: + { + m_selection.reserve(GetCollectionSize() - m_blacklist_size); + const auto routine = [&](Collection& collection, bool is_virtual, bool condition) { + for (Collection::value_type& kv : collection) + { + if (kv.second.hits_snapshot == 0) + { + // TODO C++20: Parenthesized initialization of aggregates has bad compiler support. + m_selection.emplace_back( + BranchWatchSelectionValueType{&kv, is_virtual, condition, SelectionInspection{}}); + kv.second.hits_snapshot = kv.second.total_hits; + } + } + }; + routine(m_collection_vt, true, true); + routine(m_collection_vf, true, false); + routine(m_collection_pt, false, true); + routine(m_collection_pf, false, false); + m_recording_phase = Phase::Reduction; + return; + } + case Phase::Reduction: + std::erase_if(m_selection, [](const Selection::value_type& value) -> bool { + Collection::value_type* const kv = value.collection_ptr; + if (kv->second.total_hits == kv->second.hits_snapshot) + return true; + kv->second.hits_snapshot = kv->second.total_hits; + return false; + }); + return; + } +} + +void BranchWatch::IsolateNotExecuted(const CPUThreadGuard&) +{ + switch (m_recording_phase) + { + case Phase::Blacklist: + { + const auto routine = [&](Collection& collection) { + for (Collection::value_type& kv : collection) + kv.second.hits_snapshot = kv.second.total_hits; + }; + routine(m_collection_vt); + routine(m_collection_vf); + routine(m_collection_pt); + routine(m_collection_pf); + m_blacklist_size = GetCollectionSize(); + return; + } + case Phase::Reduction: + std::erase_if(m_selection, [](const Selection::value_type& value) -> bool { + Collection::value_type* const kv = value.collection_ptr; + if (kv->second.total_hits != kv->second.hits_snapshot) + return true; + kv->second.hits_snapshot = kv->second.total_hits; + return false; + }); + return; + } +} + +void BranchWatch::IsolateWasOverwritten(const CPUThreadGuard& guard) +{ + if (Core::GetState() == Core::State::Uninitialized) + { + ASSERT_MSG(CORE, false, "Core is uninitialized."); + return; + } + switch (m_recording_phase) + { + case Phase::Blacklist: + { + // This is a dirty hack of the assumptions that make the blacklist phase work. If the + // hits_snapshot is non-zero while in the blacklist phase, that means it has been marked + // for exclusion from the transition to the reduction phase. + const auto routine = [&](Collection& collection, PowerPC::RequestedAddressSpace address_space) { + for (Collection::value_type& kv : collection) + { + if (kv.second.hits_snapshot == 0) + { + const std::optional read_result = + PowerPC::MMU::HostTryReadInstruction(guard, kv.first.origin_addr, address_space); + if (!read_result.has_value()) + continue; + if (kv.first.original_inst.hex == read_result->value) + kv.second.hits_snapshot = ++m_blacklist_size; // Any non-zero number will work. + } + } + }; + routine(m_collection_vt, PowerPC::RequestedAddressSpace::Virtual); + routine(m_collection_vf, PowerPC::RequestedAddressSpace::Virtual); + routine(m_collection_pt, PowerPC::RequestedAddressSpace::Physical); + routine(m_collection_pf, PowerPC::RequestedAddressSpace::Physical); + return; + } + case Phase::Reduction: + std::erase_if(m_selection, [&guard](const Selection::value_type& value) -> bool { + const std::optional read_result = PowerPC::MMU::HostTryReadInstruction( + guard, value.collection_ptr->first.origin_addr, + value.is_virtual ? PowerPC::RequestedAddressSpace::Virtual : + PowerPC::RequestedAddressSpace::Physical); + if (!read_result.has_value()) + return false; + return value.collection_ptr->first.original_inst.hex == read_result->value; + }); + return; + } +} + +void BranchWatch::IsolateNotOverwritten(const CPUThreadGuard& guard) +{ + if (Core::GetState() == Core::State::Uninitialized) + { + ASSERT_MSG(CORE, false, "Core is uninitialized."); + return; + } + switch (m_recording_phase) + { + case Phase::Blacklist: + { + // Same dirty hack with != rather than ==, see above for details + const auto routine = [&](Collection& collection, PowerPC::RequestedAddressSpace address_space) { + for (Collection::value_type& kv : collection) + if (kv.second.hits_snapshot == 0) + { + const std::optional read_result = + PowerPC::MMU::HostTryReadInstruction(guard, kv.first.origin_addr, address_space); + if (!read_result.has_value()) + continue; + if (kv.first.original_inst.hex != read_result->value) + kv.second.hits_snapshot = ++m_blacklist_size; // Any non-zero number will work. + } + }; + routine(m_collection_vt, PowerPC::RequestedAddressSpace::Virtual); + routine(m_collection_vf, PowerPC::RequestedAddressSpace::Virtual); + routine(m_collection_pt, PowerPC::RequestedAddressSpace::Physical); + routine(m_collection_pf, PowerPC::RequestedAddressSpace::Physical); + return; + } + case Phase::Reduction: + std::erase_if(m_selection, [&guard](const Selection::value_type& value) -> bool { + const std::optional read_result = PowerPC::MMU::HostTryReadInstruction( + guard, value.collection_ptr->first.origin_addr, + value.is_virtual ? PowerPC::RequestedAddressSpace::Virtual : + PowerPC::RequestedAddressSpace::Physical); + if (!read_result.has_value()) + return false; + return value.collection_ptr->first.original_inst.hex != read_result->value; + }); + return; + } +} + +void BranchWatch::UpdateHitsSnapshot() +{ + switch (m_recording_phase) + { + case Phase::Reduction: + for (Selection::value_type& value : m_selection) + value.collection_ptr->second.hits_snapshot = value.collection_ptr->second.total_hits; + return; + case Phase::Blacklist: + return; + } +} + +void BranchWatch::ClearSelectionInspection() +{ + std::for_each(m_selection.begin(), m_selection.end(), + [](Selection::value_type& value) { value.inspection = {}; }); +} + +void BranchWatch::SetSelectedInspected(std::size_t idx, SelectionInspection inspection) +{ + m_selection[idx].inspection |= inspection; +} +} // namespace Core diff --git a/Source/Core/Core/Debugger/BranchWatch.h b/Source/Core/Core/Debugger/BranchWatch.h new file mode 100644 index 000000000000..be4972bc910e --- /dev/null +++ b/Source/Core/Core/Debugger/BranchWatch.h @@ -0,0 +1,278 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include +#include +#include +#include + +#include "Common/BitUtils.h" +#include "Common/CommonTypes.h" +#include "Common/EnumUtils.h" +#include "Core/PowerPC/Gekko.h" + +namespace Core +{ +class CPUThreadGuard; +} + +namespace Core +{ +struct FakeBranchWatchCollectionKey +{ + u32 origin_addr; + u32 destin_addr; + + // TODO C++20: constexpr w/ std::bit_cast + inline operator u64() const { return Common::BitCast(*this); } +}; +struct BranchWatchCollectionKey : FakeBranchWatchCollectionKey +{ + UGeckoInstruction original_inst; +}; +struct BranchWatchCollectionValue +{ + std::size_t total_hits = 0; + std::size_t hits_snapshot = 0; +}; +} // namespace Core + +template <> +struct std::hash +{ + std::size_t operator()(const Core::BranchWatchCollectionKey& s) const noexcept + { + return std::hash{}(static_cast(s)); + } +}; + +namespace Core +{ +inline bool operator==(const BranchWatchCollectionKey& lhs, + const BranchWatchCollectionKey& rhs) noexcept +{ + const std::hash hash; + return hash(lhs) == hash(rhs) && lhs.original_inst.hex == rhs.original_inst.hex; +} + +enum class BranchWatchSelectionInspection : u8 +{ + SetOriginNOP = 1u << 0, + SetDestinBLR = 1u << 1, + SetOriginSymbolBLR = 1u << 2, + SetDestinSymbolBLR = 1u << 3, + EndOfEnumeration, +}; + +constexpr BranchWatchSelectionInspection operator|(BranchWatchSelectionInspection lhs, + BranchWatchSelectionInspection rhs) +{ + return static_cast(Common::ToUnderlying(lhs) | + Common::ToUnderlying(rhs)); +} + +constexpr BranchWatchSelectionInspection operator&(BranchWatchSelectionInspection lhs, + BranchWatchSelectionInspection rhs) +{ + return static_cast(Common::ToUnderlying(lhs) & + Common::ToUnderlying(rhs)); +} + +constexpr BranchWatchSelectionInspection& operator|=(BranchWatchSelectionInspection& self, + BranchWatchSelectionInspection other) +{ + return self = self | other; +} + +using BranchWatchCollection = + std::unordered_map; + +struct BranchWatchSelectionValueType +{ + using Inspection = BranchWatchSelectionInspection; + + BranchWatchCollection::value_type* collection_ptr; + bool is_virtual; + bool condition; + // This is moreso a GUI thing, but it works best in the Core code for multiple reasons. + Inspection inspection; +}; + +using BranchWatchSelection = std::vector; + +enum class BranchWatchPhase : bool +{ + Blacklist, + Reduction, +}; + +class BranchWatch final // Class is final to enforce the safety of GetOffsetOfRecordingActive(). +{ +public: + using Collection = BranchWatchCollection; + using Selection = BranchWatchSelection; + using Phase = BranchWatchPhase; + using SelectionInspection = BranchWatchSelectionInspection; + + bool GetRecordingActive() const { return m_recording_active; } + void SetRecordingActive(bool active) { m_recording_active = active; } + void Start() { SetRecordingActive(true); } + void Pause() { SetRecordingActive(false); } + void Clear(const CPUThreadGuard& guard); + + void Save(const CPUThreadGuard& guard, std::FILE* file) const; + void Load(const CPUThreadGuard& guard, std::FILE* file); + + void IsolateHasExecuted(const CPUThreadGuard& guard); + void IsolateNotExecuted(const CPUThreadGuard& guard); + void IsolateWasOverwritten(const CPUThreadGuard& guard); + void IsolateNotOverwritten(const CPUThreadGuard& guard); + void UpdateHitsSnapshot(); + void ClearSelectionInspection(); + void SetSelectedInspected(std::size_t idx, SelectionInspection inspection); + + Selection& GetSelection() { return m_selection; } + const Selection& GetSelection() const { return m_selection; } + + std::size_t GetCollectionSize() const + { + return m_collection_vt.size() + m_collection_vf.size() + m_collection_pt.size() + + m_collection_pf.size(); + } + std::size_t GetBlacklistSize() const { return m_blacklist_size; } + 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()); } + + // All Hit member functions are for the CPUThread only. The static ones are static to remain + // compatible with the JITs' ABI_CallFunction function, which doesn't support non-static member + // functions. HitXX_fk are optimized for when origin and destination can be passed in one register + // easily as a Core::FakeBranchWatchCollectionKey (abbreviated as "fk"). HitXX_fk_n are the same, + // but also increment the total_hits by N (see dcbx JIT code). + static void HitVirtualTrue_fk(BranchWatch* branch_watch, u64 fake_key, u32 inst) + { + branch_watch->m_collection_vt[{Common::BitCast(fake_key), inst}] + .total_hits += 1; + } + + static void HitPhysicalTrue_fk(BranchWatch* branch_watch, u64 fake_key, u32 inst) + { + branch_watch->m_collection_pt[{Common::BitCast(fake_key), inst}] + .total_hits += 1; + } + + static void HitVirtualFalse_fk(BranchWatch* branch_watch, u64 fake_key, u32 inst) + { + branch_watch->m_collection_vf[{Common::BitCast(fake_key), inst}] + .total_hits += 1; + } + + static void HitPhysicalFalse_fk(BranchWatch* branch_watch, u64 fake_key, u32 inst) + { + branch_watch->m_collection_pf[{Common::BitCast(fake_key), inst}] + .total_hits += 1; + } + + static void HitVirtualTrue_fk_n(BranchWatch* branch_watch, u64 fake_key, u32 inst, u32 n) + { + branch_watch->m_collection_vt[{Common::BitCast(fake_key), inst}] + .total_hits += n; + } + + static void HitPhysicalTrue_fk_n(BranchWatch* branch_watch, u64 fake_key, u32 inst, u32 n) + { + branch_watch->m_collection_pt[{Common::BitCast(fake_key), inst}] + .total_hits += n; + } + + // HitVirtualFalse_fk_n and HitPhysicalFalse_fk_n are never used, so they are omitted here. + + static void HitVirtualTrue(BranchWatch* branch_watch, u32 origin, u32 destination, u32 inst) + { + HitVirtualTrue_fk(branch_watch, FakeBranchWatchCollectionKey{origin, destination}, inst); + } + + static void HitPhysicalTrue(BranchWatch* branch_watch, u32 origin, u32 destination, u32 inst) + { + HitPhysicalTrue_fk(branch_watch, FakeBranchWatchCollectionKey{origin, destination}, inst); + } + + static void HitVirtualFalse(BranchWatch* branch_watch, u32 origin, u32 destination, u32 inst) + { + HitVirtualFalse_fk(branch_watch, FakeBranchWatchCollectionKey{origin, destination}, inst); + } + + static void HitPhysicalFalse(BranchWatch* branch_watch, u32 origin, u32 destination, u32 inst) + { + HitPhysicalFalse_fk(branch_watch, FakeBranchWatchCollectionKey{origin, destination}, inst); + } + + void HitTrue(u32 origin, u32 destination, UGeckoInstruction inst, bool translate) + { + if (translate) + HitVirtualTrue(this, origin, destination, inst.hex); + else + HitPhysicalTrue(this, origin, destination, inst.hex); + } + + void HitFalse(u32 origin, u32 destination, UGeckoInstruction inst, bool translate) + { + if (translate) + HitVirtualFalse(this, origin, destination, inst.hex); + else + HitPhysicalFalse(this, origin, destination, inst.hex); + } + + // The JIT needs this value, but doesn't need to be a full-on friend. + static constexpr int GetOffsetOfRecordingActive() + { +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Winvalid-offsetof" +#endif + return offsetof(BranchWatch, m_recording_active); +#ifdef __GNUC__ +#pragma GCC diagnostic pop +#endif + } + +private: + Collection& GetCollectionV(bool condition) + { + if (condition) + return m_collection_vt; + return m_collection_vf; + } + + Collection& GetCollectionP(bool condition) + { + if (condition) + return m_collection_pt; + return m_collection_pf; + } + + Collection& GetCollection(bool is_virtual, bool condition) + { + if (is_virtual) + return GetCollectionV(condition); + return GetCollectionP(condition); + } + + std::size_t m_blacklist_size = 0; + Phase m_recording_phase = Phase::Blacklist; + bool m_recording_active = false; + Collection m_collection_vt; // virtual address space | true path + Collection m_collection_vf; // virtual address space | false path + Collection m_collection_pt; // physical address space | true path + Collection m_collection_pf; // physical address space | false path + Selection m_selection; +}; + +#if _M_X86_64 +static_assert(BranchWatch::GetOffsetOfRecordingActive() < 0x80); // Makes JIT code smaller. +#endif +} // namespace Core diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp index 71f01d13b729..fc5f1d2abaea 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp @@ -64,8 +64,9 @@ void Interpreter::UpdatePC() m_ppc_state.pc = m_ppc_state.npc; } -Interpreter::Interpreter(Core::System& system, PowerPC::PowerPCState& ppc_state, PowerPC::MMU& mmu) - : m_system(system), m_ppc_state(ppc_state), m_mmu(mmu) +Interpreter::Interpreter(Core::System& system, PowerPC::PowerPCState& ppc_state, PowerPC::MMU& mmu, + Core::BranchWatch& branch_watch) + : m_system(system), m_ppc_state(ppc_state), m_mmu(mmu), m_branch_watch(branch_watch) { } diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.h b/Source/Core/Core/PowerPC/Interpreter/Interpreter.h index 90595de06871..d51ad1a2ddfe 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.h +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.h @@ -11,8 +11,9 @@ namespace Core { +class BranchWatch; class System; -} +} // namespace Core namespace PowerPC { class MMU; @@ -22,7 +23,8 @@ struct PowerPCState; class Interpreter : public CPUCoreBase { public: - Interpreter(Core::System& system, PowerPC::PowerPCState& ppc_state, PowerPC::MMU& mmu); + Interpreter(Core::System& system, PowerPC::PowerPCState& ppc_state, PowerPC::MMU& mmu, + Core::BranchWatch& branch_watch); Interpreter(const Interpreter&) = delete; Interpreter(Interpreter&&) = delete; Interpreter& operator=(const Interpreter&) = delete; @@ -314,6 +316,7 @@ class Interpreter : public CPUCoreBase Core::System& m_system; PowerPC::PowerPCState& m_ppc_state; PowerPC::MMU& m_mmu; + Core::BranchWatch& m_branch_watch; UGeckoInstruction m_prev_inst{}; u32 m_last_pc = 0; diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp index c1cce804019e..87f017f7f8fd 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp @@ -94,7 +94,7 @@ void JitTrampoline(JitBase& jit, u32 em_address) JitBase::JitBase(Core::System& system) : m_code_buffer(code_buffer_size), m_system(system), m_ppc_state(system.GetPPCState()), - m_mmu(system.GetMMU()) + m_mmu(system.GetMMU()), m_branch_watch(system.GetPowerPC().GetBranchWatch()) { m_registered_config_callback_id = CPUThreadConfigCallback::AddConfigChangedCallback([this] { if (DoesConfigNeedRefresh()) diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.h b/Source/Core/Core/PowerPC/JitCommon/JitBase.h index 00fea6ef8476..1d947da5eae4 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.h @@ -23,8 +23,9 @@ namespace Core { +class BranchWatch; class System; -} +} // namespace Core namespace PowerPC { class MMU; @@ -206,6 +207,7 @@ class JitBase : public CPUCoreBase Core::System& m_system; PowerPC::PowerPCState& m_ppc_state; PowerPC::MMU& m_mmu; + Core::BranchWatch& m_branch_watch; }; void JitTrampoline(JitBase& jit, u32 em_address); diff --git a/Source/Core/Core/PowerPC/PowerPC.h b/Source/Core/Core/PowerPC/PowerPC.h index c0611ae916f1..750f0c6f69dc 100644 --- a/Source/Core/Core/PowerPC/PowerPC.h +++ b/Source/Core/Core/PowerPC/PowerPC.h @@ -14,6 +14,7 @@ #include "Common/CommonTypes.h" #include "Core/CPUThreadConfigCallback.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/Debugger/PPCDebugInterface.h" #include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/ConditionRegister.h" @@ -298,6 +299,8 @@ class PowerPCManager const MemChecks& GetMemChecks() const { return m_memchecks; } PPCDebugInterface& GetDebugInterface() { return m_debug_interface; } const PPCDebugInterface& GetDebugInterface() const { return m_debug_interface; } + Core::BranchWatch& GetBranchWatch() { return m_branch_watch; } + const Core::BranchWatch& GetBranchWatch() const { return m_branch_watch; } private: void InitializeCPUCore(CPUCore cpu_core); @@ -314,6 +317,7 @@ class PowerPCManager BreakPoints m_breakpoints; MemChecks m_memchecks; PPCDebugInterface m_debug_interface; + Core::BranchWatch m_branch_watch; CPUThreadConfigCallback::ConfigChangedCallbackID m_registered_config_callback_id; diff --git a/Source/Core/Core/System.cpp b/Source/Core/Core/System.cpp index 9c97e6febea7..2da55975deaf 100644 --- a/Source/Core/Core/System.cpp +++ b/Source/Core/Core/System.cpp @@ -52,8 +52,8 @@ struct System::Impl m_memory(system), m_pixel_engine{system}, m_power_pc(system), m_mmu(system, m_memory, m_power_pc), m_processor_interface(system), m_serial_interface(system), m_system_timers(system), m_video_interface(system), - m_interpreter(system, m_power_pc.GetPPCState(), m_mmu), m_jit_interface(system), - m_fifo_player(system), m_fifo_recorder(system), m_movie(system) + m_interpreter(system, m_power_pc.GetPPCState(), m_mmu, m_power_pc.GetBranchWatch()), + m_jit_interface(system), m_fifo_player(system), m_fifo_recorder(system), m_movie(system) { } diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 42ae7ba5e635..a5039859f9f0 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -202,6 +202,7 @@ + @@ -868,6 +869,7 @@ + From 2aa250a68ab8fa35584d3ccb2d3fb2ccf367ef12 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 7 Dec 2023 09:32:58 -0800 Subject: [PATCH 039/223] Interpreter: Install BranchWatch --- .../Interpreter/Interpreter_Branch.cpp | 50 ++++++++++++++----- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Branch.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Branch.cpp index 8b5bac050991..1d57d971b489 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Branch.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Branch.cpp @@ -7,6 +7,7 @@ #include "Common/CommonTypes.h" #include "Core/ConfigManager.h" #include "Core/Core.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/HLE/HLE.h" #include "Core/PowerPC/Interpreter/ExceptionUtils.h" #include "Core/PowerPC/PowerPC.h" @@ -19,12 +20,13 @@ void Interpreter::bx(Interpreter& interpreter, UGeckoInstruction inst) if (inst.LK) LR(ppc_state) = ppc_state.pc + 4; - const auto address = u32(SignExt26(inst.LI << 2)); + u32 destination_addr = u32(SignExt26(inst.LI << 2)); + if (!inst.AA) + destination_addr += ppc_state.pc; + ppc_state.npc = destination_addr; - if (inst.AA) - ppc_state.npc = address; - else - ppc_state.npc = ppc_state.pc + address; + if (auto& branch_watch = interpreter.m_branch_watch; branch_watch.GetRecordingActive()) + branch_watch.HitTrue(ppc_state.pc, destination_addr, inst, ppc_state.msr.IR); interpreter.m_end_block = true; } @@ -33,6 +35,7 @@ void Interpreter::bx(Interpreter& interpreter, UGeckoInstruction inst) void Interpreter::bcx(Interpreter& interpreter, UGeckoInstruction inst) { auto& ppc_state = interpreter.m_ppc_state; + auto& branch_watch = interpreter.m_branch_watch; if ((inst.BO & BO_DONT_DECREMENT_FLAG) == 0) CTR(ppc_state)--; @@ -49,12 +52,17 @@ void Interpreter::bcx(Interpreter& interpreter, UGeckoInstruction inst) if (inst.LK) LR(ppc_state) = ppc_state.pc + 4; - const auto address = u32(SignExt16(s16(inst.BD << 2))); + u32 destination_addr = u32(SignExt16(s16(inst.BD << 2))); + if (!inst.AA) + destination_addr += ppc_state.pc; + ppc_state.npc = destination_addr; - if (inst.AA) - ppc_state.npc = address; - else - ppc_state.npc = ppc_state.pc + address; + if (branch_watch.GetRecordingActive()) + branch_watch.HitTrue(ppc_state.pc, destination_addr, inst, ppc_state.msr.IR); + } + else if (branch_watch.GetRecordingActive()) + { + branch_watch.HitFalse(ppc_state.pc, ppc_state.pc + 4, inst, ppc_state.msr.IR); } interpreter.m_end_block = true; @@ -63,6 +71,7 @@ void Interpreter::bcx(Interpreter& interpreter, UGeckoInstruction inst) void Interpreter::bcctrx(Interpreter& interpreter, UGeckoInstruction inst) { auto& ppc_state = interpreter.m_ppc_state; + auto& branch_watch = interpreter.m_branch_watch; DEBUG_ASSERT_MSG(POWERPC, (inst.BO_2 & BO_DONT_DECREMENT_FLAG) != 0, "bcctrx with decrement and test CTR option is invalid!"); @@ -72,9 +81,17 @@ void Interpreter::bcctrx(Interpreter& interpreter, UGeckoInstruction inst) if (condition != 0) { - ppc_state.npc = CTR(ppc_state) & (~3); + const u32 destination_addr = CTR(ppc_state) & (~3); + ppc_state.npc = destination_addr; if (inst.LK_3) LR(ppc_state) = ppc_state.pc + 4; + + if (branch_watch.GetRecordingActive()) + branch_watch.HitTrue(ppc_state.pc, destination_addr, inst, ppc_state.msr.IR); + } + else if (branch_watch.GetRecordingActive()) + { + branch_watch.HitFalse(ppc_state.pc, ppc_state.pc + 4, inst, ppc_state.msr.IR); } interpreter.m_end_block = true; @@ -83,6 +100,7 @@ void Interpreter::bcctrx(Interpreter& interpreter, UGeckoInstruction inst) void Interpreter::bclrx(Interpreter& interpreter, UGeckoInstruction inst) { auto& ppc_state = interpreter.m_ppc_state; + auto& branch_watch = interpreter.m_branch_watch; if ((inst.BO_2 & BO_DONT_DECREMENT_FLAG) == 0) CTR(ppc_state)--; @@ -93,9 +111,17 @@ void Interpreter::bclrx(Interpreter& interpreter, UGeckoInstruction inst) if ((counter & condition) != 0) { - ppc_state.npc = LR(ppc_state) & (~3); + const u32 destination_addr = LR(ppc_state) & (~3); + ppc_state.npc = destination_addr; if (inst.LK_3) LR(ppc_state) = ppc_state.pc + 4; + + if (branch_watch.GetRecordingActive()) + branch_watch.HitTrue(ppc_state.pc, destination_addr, inst, ppc_state.msr.IR); + } + else if (branch_watch.GetRecordingActive()) + { + branch_watch.HitFalse(ppc_state.pc, ppc_state.pc + 4, inst, ppc_state.msr.IR); } interpreter.m_end_block = true; From 7cccedca1e95b755a923972ce08fbcd946e36bfb Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 7 Dec 2023 09:35:14 -0800 Subject: [PATCH 040/223] Jit64: Install BranchWatch --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 13 +- Source/Core/Core/PowerPC/Jit64/Jit.h | 6 + Source/Core/Core/PowerPC/Jit64/Jit_Branch.cpp | 142 +++++++++++++++++- .../Core/Core/PowerPC/Jit64/Jit_Integer.cpp | 49 +++++- .../Core/Core/PowerPC/Jit64/Jit_LoadStore.cpp | 35 +++++ 5 files changed, 234 insertions(+), 11 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 4e8fa168895e..e83b9204aa9b 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -1041,7 +1041,18 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (HandleFunctionHooking(op.address)) break; - if (!op.skip) + if (op.skip) + { + if (IsDebuggingEnabled()) + { + // The only thing that currently sets op.skip is the BLR following optimization. + // If any non-branch instruction starts setting that too, this will need to be changed. + ASSERT(op.inst.hex == 0x4e800020); + WriteBranchWatch(op.address, op.branchTo, op.inst, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } + } + else { if ((opinfo->flags & FL_USE_FPU) && !js.firstFPInstructionFound) { diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.h b/Source/Core/Core/PowerPC/Jit64/Jit.h index 9fd3f9d7f774..0794dc34a33f 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.h +++ b/Source/Core/Core/PowerPC/Jit64/Jit.h @@ -98,6 +98,12 @@ class Jit64 : public JitBase, public QuantizedMemoryRoutines void WriteExternalExceptionExit(); void WriteRfiExitDestInRSCRATCH(); void WriteIdleExit(u32 destination); + template + void WriteBranchWatch(u32 origin, u32 destination, UGeckoInstruction inst, Gen::X64Reg reg_a, + Gen::X64Reg reg_b, BitSet32 caller_save); + void WriteBranchWatchDestInRSCRATCH(u32 origin, UGeckoInstruction inst, Gen::X64Reg reg_a, + Gen::X64Reg reg_b, BitSet32 caller_save); + bool Cleanup(); void GenerateConstantOverflow(bool overflow); diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Branch.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Branch.cpp index 20de3a33a4de..bd611e2c7b5a 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Branch.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Branch.cpp @@ -7,6 +7,7 @@ #include "Common/CommonTypes.h" #include "Common/x64Emitter.h" #include "Core/CoreTiming.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/PowerPC/Gekko.h" #include "Core/PowerPC/Jit64/RegCache/JitRegCache.h" #include "Core/PowerPC/Jit64Common/Jit64PowerPCState.h" @@ -66,6 +67,68 @@ void Jit64::rfi(UGeckoInstruction inst) WriteRfiExitDestInRSCRATCH(); } +template +void Jit64::WriteBranchWatch(u32 origin, u32 destination, UGeckoInstruction inst, X64Reg reg_a, + X64Reg reg_b, BitSet32 caller_save) +{ + MOV(64, R(reg_a), ImmPtr(&m_branch_watch)); + MOVZX(32, 8, reg_b, MDisp(reg_a, Core::BranchWatch::GetOffsetOfRecordingActive())); + TEST(32, R(reg_b), R(reg_b)); + + FixupBranch branch_in = J_CC(CC_NZ, Jump::Near); + SwitchToFarCode(); + SetJumpTarget(branch_in); + + ABI_PushRegistersAndAdjustStack(caller_save, 0); + // Some call sites have an optimization to use ABI_PARAM1 as a scratch register. + if (reg_a != ABI_PARAM1) + MOV(64, R(ABI_PARAM1), R(reg_a)); + MOV(64, R(ABI_PARAM2), Imm64(Core::FakeBranchWatchCollectionKey{origin, destination})); + MOV(32, R(ABI_PARAM3), Imm32(inst.hex)); + ABI_CallFunction(m_ppc_state.msr.IR ? (condition ? &Core::BranchWatch::HitVirtualTrue_fk : + &Core::BranchWatch::HitVirtualFalse_fk) : + (condition ? &Core::BranchWatch::HitPhysicalTrue_fk : + &Core::BranchWatch::HitPhysicalFalse_fk)); + ABI_PopRegistersAndAdjustStack(caller_save, 0); + + FixupBranch branch_out = J(Jump::Near); + SwitchToNearCode(); + SetJumpTarget(branch_out); +} + +template void Jit64::WriteBranchWatch(u32, u32, UGeckoInstruction, X64Reg, X64Reg, BitSet32); +template void Jit64::WriteBranchWatch(u32, u32, UGeckoInstruction, X64Reg, X64Reg, BitSet32); + +void Jit64::WriteBranchWatchDestInRSCRATCH(u32 origin, UGeckoInstruction inst, X64Reg reg_a, + X64Reg reg_b, BitSet32 caller_save) +{ + MOV(64, R(reg_a), ImmPtr(&m_branch_watch)); + MOVZX(32, 8, reg_b, MDisp(reg_a, Core::BranchWatch::GetOffsetOfRecordingActive())); + TEST(32, R(reg_b), R(reg_b)); + + FixupBranch branch_in = J_CC(CC_NZ, Jump::Near); + SwitchToFarCode(); + SetJumpTarget(branch_in); + + // Assert RSCRATCH won't be clobbered before it is moved from. + static_assert(ABI_PARAM1 != RSCRATCH); + + ABI_PushRegistersAndAdjustStack(caller_save, 0); + // Some call sites have an optimization to use ABI_PARAM1 as a scratch register. + if (reg_a != ABI_PARAM1) + MOV(64, R(ABI_PARAM1), R(reg_a)); + MOV(32, R(ABI_PARAM3), R(RSCRATCH)); + MOV(32, R(ABI_PARAM2), Imm32(origin)); + MOV(32, R(ABI_PARAM4), Imm32(inst.hex)); + ABI_CallFunction(m_ppc_state.msr.IR ? &Core::BranchWatch::HitVirtualTrue : + &Core::BranchWatch::HitPhysicalTrue); + ABI_PopRegistersAndAdjustStack(caller_save, 0); + + FixupBranch branch_out = J(Jump::Near); + SwitchToNearCode(); + SetJumpTarget(branch_out); +} + void Jit64::bx(UGeckoInstruction inst) { INSTRUCTION_START @@ -81,6 +144,11 @@ void Jit64::bx(UGeckoInstruction inst) // Because PPCAnalyst::Flatten() merged the blocks. if (!js.isLastInstruction) { + if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } if (inst.LK && !js.op->skipLRStack) { // We have to fake the stack as the RET instruction was not @@ -94,6 +162,11 @@ void Jit64::bx(UGeckoInstruction inst) gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, ABI_PARAM1, RSCRATCH, {}); + } #ifdef ACID_TEST if (inst.LK) AND(32, PPCSTATE(cr), Imm32(~(0xFF000000))); @@ -144,6 +217,11 @@ void Jit64::bcx(UGeckoInstruction inst) if (!js.isLastInstruction && (inst.BO & BO_DONT_DECREMENT_FLAG) && (inst.BO & BO_DONT_CHECK_CONDITION)) { + if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } if (inst.LK && !js.op->skipLRStack) { // We have to fake the stack as the RET instruction was not @@ -160,6 +238,11 @@ void Jit64::bcx(UGeckoInstruction inst) gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, ABI_PARAM1, RSCRATCH, {}); + } if (js.op->branchIsIdleLoop) { WriteIdleExit(js.op->branchTo); @@ -179,8 +262,18 @@ void Jit64::bcx(UGeckoInstruction inst) { gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, ABI_PARAM1, RSCRATCH, {}); + } WriteExit(js.compilerPC + 4); } + else if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } } void Jit64::bcctrx(UGeckoInstruction inst) @@ -204,6 +297,12 @@ void Jit64::bcctrx(UGeckoInstruction inst) if (inst.LK_3) MOV(32, PPCSTATE_LR, Imm32(js.compilerPC + 4)); // LR = PC + 4; AND(32, R(RSCRATCH), Imm32(0xFFFFFFFC)); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatchDestInRSCRATCH(js.compilerPC, inst, ABI_PARAM1, RSCRATCH2, + BitSet32{RSCRATCH}); + } WriteExitDestInRSCRATCH(inst.LK_3, js.compilerPC + 4); } else @@ -226,6 +325,12 @@ void Jit64::bcctrx(UGeckoInstruction inst) RCForkGuard fpr_guard = fpr.Fork(); gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatchDestInRSCRATCH(js.compilerPC, inst, ABI_PARAM1, RSCRATCH2, + BitSet32{RSCRATCH}); + } WriteExitDestInRSCRATCH(inst.LK_3, js.compilerPC + 4); // Would really like to continue the block here, but it ends. TODO. } @@ -235,8 +340,18 @@ void Jit64::bcctrx(UGeckoInstruction inst) { gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, ABI_PARAM1, RSCRATCH, {}); + } WriteExit(js.compilerPC + 4); } + else if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } } } @@ -270,10 +385,8 @@ void Jit64::bclrx(UGeckoInstruction inst) MOV(32, R(RSCRATCH), PPCSTATE_LR); // We don't have to do this because WriteBLRExit handles it for us. Specifically, since we only - // ever push - // divisible-by-four instruction addresses onto the stack, if the return address matches, we're - // already - // good. If it doesn't match, the mispredicted-BLR code handles the fixup. + // ever push divisible-by-four instruction addresses onto the stack, if the return address + // matches, we're already good. If it doesn't match, the mispredicted-BLR code handles the fixup. if (!m_enable_blr_optimization) AND(32, R(RSCRATCH), Imm32(0xFFFFFFFC)); if (inst.LK) @@ -287,10 +400,21 @@ void Jit64::bclrx(UGeckoInstruction inst) if (js.op->branchIsIdleLoop) { + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, ABI_PARAM1, RSCRATCH, {}); + } WriteIdleExit(js.op->branchTo); } else { + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatchDestInRSCRATCH(js.compilerPC, inst, ABI_PARAM1, RSCRATCH2, + BitSet32{RSCRATCH}); + } WriteBLRExit(); } } @@ -304,6 +428,16 @@ void Jit64::bclrx(UGeckoInstruction inst) { gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, ABI_PARAM1, RSCRATCH, {}); + } WriteExit(js.compilerPC + 4); } + else if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } } diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index ec2d6ae778e6..afc1c9a9203a 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -394,18 +394,25 @@ void Jit64::DoMergedBranch() if (next.LK) MOV(32, PPCSTATE_SPR(SPR_LR), Imm32(nextPC + 4)); - WriteIdleExit(js.op[1].branchTo); + const u32 destination = js.op[1].branchTo; + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(nextPC, destination, next, ABI_PARAM1, RSCRATCH, {}); + } + WriteIdleExit(destination); } else if (next.OPCD == 16) // bcx { if (next.LK) MOV(32, PPCSTATE_SPR(SPR_LR), Imm32(nextPC + 4)); - u32 destination; - if (next.AA) - destination = SignExt16(next.BD << 2); - else - destination = nextPC + SignExt16(next.BD << 2); + const u32 destination = js.op[1].branchTo; + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(nextPC, destination, next, ABI_PARAM1, RSCRATCH, {}); + } WriteExit(destination, next.LK, nextPC + 4); } else if ((next.OPCD == 19) && (next.SUBOP10 == 528)) // bcctrx @@ -414,6 +421,11 @@ void Jit64::DoMergedBranch() MOV(32, PPCSTATE_SPR(SPR_LR), Imm32(nextPC + 4)); MOV(32, R(RSCRATCH), PPCSTATE_SPR(SPR_CTR)); AND(32, R(RSCRATCH), Imm32(0xFFFFFFFC)); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatchDestInRSCRATCH(nextPC, next, ABI_PARAM1, RSCRATCH2, BitSet32{RSCRATCH}); + } WriteExitDestInRSCRATCH(next.LK, nextPC + 4); } else if ((next.OPCD == 19) && (next.SUBOP10 == 16)) // bclrx @@ -423,6 +435,11 @@ void Jit64::DoMergedBranch() AND(32, R(RSCRATCH), Imm32(0xFFFFFFFC)); if (next.LK) MOV(32, PPCSTATE_SPR(SPR_LR), Imm32(nextPC + 4)); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatchDestInRSCRATCH(nextPC, next, ABI_PARAM1, RSCRATCH2, BitSet32{RSCRATCH}); + } WriteBLRExit(); } else @@ -480,8 +497,18 @@ void Jit64::DoMergedBranchCondition() { gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(nextPC, nextPC + 4, next, ABI_PARAM1, RSCRATCH, {}); + } WriteExit(nextPC + 4); } + else if (IsDebuggingEnabled()) + { + WriteBranchWatch(nextPC, nextPC + 4, next, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } } void Jit64::DoMergedBranchImmediate(s64 val) @@ -515,8 +542,18 @@ void Jit64::DoMergedBranchImmediate(s64 val) { gpr.Flush(); fpr.Flush(); + if (IsDebuggingEnabled()) + { + // ABI_PARAM1 is safe to use after a GPR flush for an optimization in this function. + WriteBranchWatch(nextPC, nextPC + 4, next, ABI_PARAM1, RSCRATCH, {}); + } WriteExit(nextPC + 4); } + else if (IsDebuggingEnabled()) + { + WriteBranchWatch(nextPC, nextPC + 4, next, RSCRATCH, RSCRATCH2, + CallerSavedRegistersInUse()); + } } void Jit64::cmpXX(UGeckoInstruction inst) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_LoadStore.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_LoadStore.cpp index 6a1dc651419c..05bd69069481 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_LoadStore.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_LoadStore.cpp @@ -15,6 +15,7 @@ #include "Core/ConfigManager.h" #include "Core/CoreTiming.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/HW/CPU.h" #include "Core/HW/Memmap.h" #include "Core/PowerPC/Jit64/RegCache/JitRegCache.h" @@ -300,6 +301,40 @@ void Jit64::dcbx(UGeckoInstruction inst) // Load the loop_counter register with the amount of invalidations to execute. LEA(32, loop_counter, MDisp(RSCRATCH2, 1)); + + if (IsDebuggingEnabled()) + { + const X64Reg bw_reg_a = reg_cycle_count, bw_reg_b = reg_downcount; + const BitSet32 bw_caller_save = (CallerSavedRegistersInUse() | BitSet32{RSCRATCH2}) & + ~BitSet32{int(bw_reg_a), int(bw_reg_b)}; + + MOV(64, R(bw_reg_a), ImmPtr(&m_branch_watch)); + MOVZX(32, 8, bw_reg_b, MDisp(bw_reg_a, Core::BranchWatch::GetOffsetOfRecordingActive())); + TEST(32, R(bw_reg_b), R(bw_reg_b)); + + FixupBranch branch_in = J_CC(CC_NZ, Jump::Near); + SwitchToFarCode(); + SetJumpTarget(branch_in); + + // Assert RSCRATCH2 won't be clobbered before it is moved from. + static_assert(RSCRATCH2 != ABI_PARAM1); + + ABI_PushRegistersAndAdjustStack(bw_caller_save, 0); + MOV(64, R(ABI_PARAM1), R(bw_reg_a)); + // RSCRATCH2 holds the amount of faked branch watch hits. Move RSCRATCH2 first, because + // ABI_PARAM2 clobbers RSCRATCH2 on Windows and ABI_PARAM3 clobbers RSCRATCH2 on Linux! + MOV(32, R(ABI_PARAM4), R(RSCRATCH2)); + const PPCAnalyst::CodeOp& op = js.op[2]; + MOV(64, R(ABI_PARAM2), Imm64(Core::FakeBranchWatchCollectionKey{op.address, op.branchTo})); + MOV(32, R(ABI_PARAM3), Imm32(op.inst.hex)); + ABI_CallFunction(m_ppc_state.msr.IR ? &Core::BranchWatch::HitVirtualTrue_fk_n : + &Core::BranchWatch::HitPhysicalTrue_fk_n); + ABI_PopRegistersAndAdjustStack(bw_caller_save, 0); + + FixupBranch branch_out = J(Jump::Near); + SwitchToNearCode(); + SetJumpTarget(branch_out); + } } X64Reg addr = RSCRATCH; From fd8f2c782249e4724960a27f7e4560fc4946c214 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Wed, 20 Dec 2023 19:10:03 -0800 Subject: [PATCH 041/223] JitArm64: Install BranchWatch --- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 17 +- Source/Core/Core/PowerPC/JitArm64/Jit.h | 10 + .../Core/PowerPC/JitArm64/JitArm64_Branch.cpp | 189 ++++++++++++++++-- .../PowerPC/JitArm64/JitArm64_LoadStore.cpp | 58 ++++-- 4 files changed, 246 insertions(+), 28 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index 5d7e9b2831a6..49b4238cce43 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -1181,7 +1181,22 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (HandleFunctionHooking(op.address)) break; - if (!op.skip) + if (op.skip) + { + if (IsDebuggingEnabled()) + { + // The only thing that currently sets op.skip is the BLR following optimization. + // If any non-branch instruction starts setting that too, this will need to be changed. + ASSERT(op.inst.hex == 0x4e800020); + const ARM64Reg bw_reg_a = gpr.GetReg(), bw_reg_b = gpr.GetReg(); + const BitSet32 gpr_caller_save = + gpr.GetCallerSavedUsed() & ~BitSet32{DecodeReg(bw_reg_a), DecodeReg(bw_reg_b)}; + WriteBranchWatch(op.address, op.branchTo, op.inst, bw_reg_a, bw_reg_b, + gpr_caller_save, fpr.GetCallerSavedUsed()); + gpr.Unlock(bw_reg_a, bw_reg_b); + } + } + else { if ((opinfo->flags & FL_USE_FPU) && !js.firstFPInstructionFound) { diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.h b/Source/Core/Core/PowerPC/JitArm64/Jit.h index 02fc3ca3533c..ad9c7e4672f2 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.h +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.h @@ -315,6 +315,16 @@ class JitArm64 : public JitBase, public Arm64Gen::ARM64CodeBlock, public CommonA void MSRUpdated(u32 msr); void MSRUpdated(Arm64Gen::ARM64Reg msr); + // Branch Watch + template + void WriteBranchWatch(u32 origin, u32 destination, UGeckoInstruction inst, + Arm64Gen::ARM64Reg reg_a, Arm64Gen::ARM64Reg reg_b, + BitSet32 gpr_caller_save, BitSet32 fpr_caller_save); + void WriteBranchWatchDestInRegister(u32 origin, Arm64Gen::ARM64Reg destination, + UGeckoInstruction inst, Arm64Gen::ARM64Reg reg_a, + Arm64Gen::ARM64Reg reg_b, BitSet32 gpr_caller_save, + BitSet32 fpr_caller_save); + // Exits void WriteExit(u32 destination, bool LK = false, u32 exit_address_after_return = 0, diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Branch.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Branch.cpp index 9ea05ac06e49..01cd813f2dae 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Branch.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Branch.cpp @@ -8,6 +8,7 @@ #include "Core/Core.h" #include "Core/CoreTiming.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/PowerPC/JitArm64/JitArm64_RegCache.h" #include "Core/PowerPC/PPCTables.h" #include "Core/PowerPC/PowerPC.h" @@ -74,6 +75,70 @@ void JitArm64::rfi(UGeckoInstruction inst) gpr.Unlock(WA); } +template +void JitArm64::WriteBranchWatch(u32 origin, u32 destination, UGeckoInstruction inst, ARM64Reg reg_a, + ARM64Reg reg_b, BitSet32 gpr_caller_save, BitSet32 fpr_caller_save) +{ + const ARM64Reg branch_watch = EncodeRegTo64(reg_a); + MOVP2R(branch_watch, &m_branch_watch); + LDRB(IndexType::Unsigned, reg_b, branch_watch, Core::BranchWatch::GetOffsetOfRecordingActive()); + FixupBranch branch_over = CBZ(reg_b); + + FixupBranch branch_in = B(); + SwitchToFarCode(); + SetJumpTarget(branch_in); + + const ARM64Reg float_emit_tmp = EncodeRegTo64(reg_b); + ABI_PushRegisters(gpr_caller_save); + m_float_emit.ABI_PushRegisters(fpr_caller_save, float_emit_tmp); + ABI_CallFunction(m_ppc_state.msr.IR ? (condition ? &Core::BranchWatch::HitVirtualTrue_fk : + &Core::BranchWatch::HitVirtualFalse_fk) : + (condition ? &Core::BranchWatch::HitPhysicalTrue_fk : + &Core::BranchWatch::HitPhysicalFalse_fk), + branch_watch, Core::FakeBranchWatchCollectionKey{origin, destination}, inst.hex); + m_float_emit.ABI_PopRegisters(fpr_caller_save, float_emit_tmp); + ABI_PopRegisters(gpr_caller_save); + + FixupBranch branch_out = B(); + SwitchToNearCode(); + SetJumpTarget(branch_out); + SetJumpTarget(branch_over); +} + +template void JitArm64::WriteBranchWatch(u32, u32, UGeckoInstruction, ARM64Reg, ARM64Reg, + BitSet32, BitSet32); +template void JitArm64::WriteBranchWatch(u32, u32, UGeckoInstruction, ARM64Reg, ARM64Reg, + BitSet32, BitSet32); + +void JitArm64::WriteBranchWatchDestInRegister(u32 origin, ARM64Reg destination, + UGeckoInstruction inst, ARM64Reg reg_a, + ARM64Reg reg_b, BitSet32 gpr_caller_save, + BitSet32 fpr_caller_save) +{ + const ARM64Reg branch_watch = EncodeRegTo64(reg_a); + MOVP2R(branch_watch, &m_branch_watch); + LDRB(IndexType::Unsigned, reg_b, branch_watch, Core::BranchWatch::GetOffsetOfRecordingActive()); + FixupBranch branch_over = CBZ(reg_b); + + FixupBranch branch_in = B(); + SwitchToFarCode(); + SetJumpTarget(branch_in); + + const ARM64Reg float_emit_tmp = EncodeRegTo64(reg_b); + ABI_PushRegisters(gpr_caller_save); + m_float_emit.ABI_PushRegisters(fpr_caller_save, float_emit_tmp); + ABI_CallFunction(m_ppc_state.msr.IR ? &Core::BranchWatch::HitVirtualTrue : + &Core::BranchWatch::HitPhysicalTrue, + branch_watch, origin, destination, inst.hex); + m_float_emit.ABI_PopRegisters(fpr_caller_save, float_emit_tmp); + ABI_PopRegisters(gpr_caller_save); + + FixupBranch branch_out = B(); + SwitchToNearCode(); + SetJumpTarget(branch_out); + SetJumpTarget(branch_over); +} + void JitArm64::bx(UGeckoInstruction inst) { INSTRUCTION_START @@ -89,6 +154,16 @@ void JitArm64::bx(UGeckoInstruction inst) if (!js.isLastInstruction) { + if (IsDebuggingEnabled()) + { + const ARM64Reg WB = gpr.GetReg(), WC = gpr.GetReg(); + BitSet32 gpr_caller_save = gpr.GetCallerSavedUsed() & ~BitSet32{DecodeReg(WB), DecodeReg(WC)}; + if (WA != ARM64Reg::INVALID_REG && js.op->skipLRStack) + gpr_caller_save[DecodeReg(WA)] = false; + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, WB, WC, gpr_caller_save, + fpr.GetCallerSavedUsed()); + gpr.Unlock(WB, WC); + } if (inst.LK && !js.op->skipLRStack) { // We have to fake the stack as the RET instruction was not @@ -108,22 +183,37 @@ void JitArm64::bx(UGeckoInstruction inst) if (js.op->branchIsIdleLoop) { - if (WA != ARM64Reg::INVALID_REG) - gpr.Unlock(WA); + if (WA == ARM64Reg::INVALID_REG) + WA = gpr.GetReg(); + + if (IsDebuggingEnabled()) + { + const ARM64Reg WB = gpr.GetReg(); + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, WA, WB, {}, {}); + gpr.Unlock(WB); + } // make idle loops go faster - ARM64Reg WB = gpr.GetReg(); - ARM64Reg XB = EncodeRegTo64(WB); + ARM64Reg XA = EncodeRegTo64(WA); - MOVP2R(XB, &CoreTiming::GlobalIdle); - BLR(XB); - gpr.Unlock(WB); + MOVP2R(XA, &CoreTiming::GlobalIdle); + BLR(XA); + gpr.Unlock(WA); WriteExceptionExit(js.op->branchTo); return; } - WriteExit(js.op->branchTo, inst.LK, js.compilerPC + 4, inst.LK ? WA : ARM64Reg::INVALID_REG); + if (IsDebuggingEnabled()) + { + const ARM64Reg WB = gpr.GetReg(), WC = gpr.GetReg(); + const BitSet32 gpr_caller_save = + WA != ARM64Reg::INVALID_REG ? BitSet32{DecodeReg(WA)} & CALLER_SAVED_GPRS : BitSet32{}; + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, WB, WC, gpr_caller_save, {}); + gpr.Unlock(WB, WC); + } + WriteExit(js.op->branchTo, inst.LK, js.compilerPC + 4, WA); + if (WA != ARM64Reg::INVALID_REG) gpr.Unlock(WA); } @@ -134,7 +224,9 @@ void JitArm64::bcx(UGeckoInstruction inst) JITDISABLE(bJITBranchOff); ARM64Reg WA = gpr.GetReg(); - ARM64Reg WB = inst.LK ? gpr.GetReg() : WA; + ARM64Reg WB = inst.LK || IsDebuggingEnabled() ? gpr.GetReg() : WA; + ARM64Reg WC = IsDebuggingEnabled() && inst.LK && !js.op->branchIsIdleLoop ? gpr.GetReg() : + ARM64Reg::INVALID_REG; FixupBranch pCTRDontBranch; if ((inst.BO & BO_DONT_DECREMENT_FLAG) == 0) // Decrement and test CTR @@ -166,6 +258,19 @@ void JitArm64::bcx(UGeckoInstruction inst) gpr.Flush(FlushMode::MaintainState, WB); fpr.Flush(FlushMode::MaintainState, ARM64Reg::INVALID_REG); + if (IsDebuggingEnabled()) + { + ARM64Reg bw_reg_a, bw_reg_b; + // WC is only allocated when WA is needed for WriteExit and cannot be clobbered. + if (WC == ARM64Reg::INVALID_REG) + bw_reg_a = WA, bw_reg_b = WB; + else + bw_reg_a = WB, bw_reg_b = WC; + const BitSet32 gpr_caller_save = + gpr.GetCallerSavedUsed() & ~BitSet32{DecodeReg(bw_reg_a), DecodeReg(bw_reg_b)}; + WriteBranchWatch(js.compilerPC, js.op->branchTo, inst, bw_reg_a, bw_reg_b, + gpr_caller_save, fpr.GetCallerSavedUsed()); + } if (js.op->branchIsIdleLoop) { // make idle loops go faster @@ -178,7 +283,7 @@ void JitArm64::bcx(UGeckoInstruction inst) } else { - WriteExit(js.op->branchTo, inst.LK, js.compilerPC + 4, inst.LK ? WA : ARM64Reg::INVALID_REG); + WriteExit(js.op->branchTo, inst.LK, js.compilerPC + 4, WA); } if ((inst.BO & BO_DONT_CHECK_CONDITION) == 0) @@ -186,12 +291,26 @@ void JitArm64::bcx(UGeckoInstruction inst) if ((inst.BO & BO_DONT_DECREMENT_FLAG) == 0) SetJumpTarget(pCTRDontBranch); + if (WC != ARM64Reg::INVALID_REG) + gpr.Unlock(WC); + if (!analyzer.HasOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE)) { gpr.Flush(FlushMode::All, WA); fpr.Flush(FlushMode::All, ARM64Reg::INVALID_REG); + if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, WA, WB, {}, {}); + } WriteExit(js.compilerPC + 4); } + else if (IsDebuggingEnabled()) + { + const BitSet32 gpr_caller_save = + gpr.GetCallerSavedUsed() & ~BitSet32{DecodeReg(WA), DecodeReg(WB)}; + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, WA, WB, gpr_caller_save, + fpr.GetCallerSavedUsed()); + } gpr.Unlock(WA); if (WB != WA) @@ -231,7 +350,17 @@ void JitArm64::bcctrx(UGeckoInstruction inst) LDR(IndexType::Unsigned, WA, PPC_REG, PPCSTATE_OFF_SPR(SPR_CTR)); AND(WA, WA, LogicalImm(~0x3, GPRSize::B32)); - WriteExit(WA, inst.LK_3, js.compilerPC + 4, inst.LK_3 ? WB : ARM64Reg::INVALID_REG); + if (IsDebuggingEnabled()) + { + const ARM64Reg WC = gpr.GetReg(), WD = gpr.GetReg(); + BitSet32 gpr_caller_save = BitSet32{DecodeReg(WA)}; + if (WB != ARM64Reg::INVALID_REG) + gpr_caller_save[DecodeReg(WB)] = true; + gpr_caller_save &= CALLER_SAVED_GPRS; + WriteBranchWatchDestInRegister(js.compilerPC, WA, inst, WC, WD, gpr_caller_save, {}); + gpr.Unlock(WC, WD); + } + WriteExit(WA, inst.LK_3, js.compilerPC + 4, WB); if (WB != ARM64Reg::INVALID_REG) gpr.Unlock(WB); @@ -247,7 +376,9 @@ void JitArm64::bclrx(UGeckoInstruction inst) (inst.BO & BO_DONT_DECREMENT_FLAG) == 0 || (inst.BO & BO_DONT_CHECK_CONDITION) == 0; ARM64Reg WA = gpr.GetReg(); - ARM64Reg WB = conditional || inst.LK ? gpr.GetReg() : ARM64Reg::INVALID_REG; + ARM64Reg WB = + conditional || inst.LK || IsDebuggingEnabled() ? gpr.GetReg() : ARM64Reg::INVALID_REG; + ARM64Reg WC = IsDebuggingEnabled() ? gpr.GetReg() : ARM64Reg::INVALID_REG; FixupBranch pCTRDontBranch; if ((inst.BO & BO_DONT_DECREMENT_FLAG) == 0) // Decrement and test CTR @@ -281,6 +412,26 @@ void JitArm64::bclrx(UGeckoInstruction inst) gpr.Flush(conditional ? FlushMode::MaintainState : FlushMode::All, WB); fpr.Flush(conditional ? FlushMode::MaintainState : FlushMode::All, ARM64Reg::INVALID_REG); + if (IsDebuggingEnabled()) + { + BitSet32 gpr_caller_save; + BitSet32 fpr_caller_save; + if (conditional) + { + gpr_caller_save = gpr.GetCallerSavedUsed() & ~BitSet32{DecodeReg(WB), DecodeReg(WC)}; + if (js.op->branchIsIdleLoop) + gpr_caller_save[DecodeReg(WA)] = false; + fpr_caller_save = fpr.GetCallerSavedUsed(); + } + else + { + gpr_caller_save = + js.op->branchIsIdleLoop ? BitSet32{} : BitSet32{DecodeReg(WA)} & CALLER_SAVED_GPRS; + fpr_caller_save = {}; + } + WriteBranchWatchDestInRegister(js.compilerPC, WA, inst, WB, WC, gpr_caller_save, + fpr_caller_save); + } if (js.op->branchIsIdleLoop) { // make idle loops go faster @@ -301,12 +452,26 @@ void JitArm64::bclrx(UGeckoInstruction inst) if ((inst.BO & BO_DONT_DECREMENT_FLAG) == 0) SetJumpTarget(pCTRDontBranch); + if (WC != ARM64Reg::INVALID_REG) + gpr.Unlock(WC); + if (!analyzer.HasOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE)) { gpr.Flush(FlushMode::All, WA); fpr.Flush(FlushMode::All, ARM64Reg::INVALID_REG); + if (IsDebuggingEnabled()) + { + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, WA, WB, {}, {}); + } WriteExit(js.compilerPC + 4); } + else if (IsDebuggingEnabled()) + { + const BitSet32 gpr_caller_save = + gpr.GetCallerSavedUsed() & ~BitSet32{DecodeReg(WA), DecodeReg(WB)}; + WriteBranchWatch(js.compilerPC, js.compilerPC + 4, inst, WA, WB, gpr_caller_save, + fpr.GetCallerSavedUsed()); + } gpr.Unlock(WA); if (WB != ARM64Reg::INVALID_REG) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp index 17e2171b8cbe..1eae3d923dd5 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp @@ -13,6 +13,7 @@ #include "Core/ConfigManager.h" #include "Core/Core.h" #include "Core/CoreTiming.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/HW/DSP.h" #include "Core/HW/MMIO.h" #include "Core/HW/Memmap.h" @@ -769,18 +770,15 @@ void JitArm64::dcbx(UGeckoInstruction inst) js.op[1].inst.RA_6 == b && js.op[1].inst.RD_2 == b && js.op[2].inst.hex == 0x4200fff8; - gpr.Lock(ARM64Reg::W0, ARM64Reg::W1); - if (make_loop) - gpr.Lock(ARM64Reg::W2); - - ARM64Reg WA = ARM64Reg::W0; + constexpr ARM64Reg WA = ARM64Reg::W0, WB = ARM64Reg::W1, loop_counter = ARM64Reg::W2; + // Be careful, loop_counter is only locked when make_loop == true. + gpr.Lock(WA, WB); if (make_loop) + { + gpr.Lock(loop_counter); gpr.BindToRegister(b, true); - ARM64Reg loop_counter = ARM64Reg::INVALID_REG; - if (make_loop) - { // We'll execute somewhere between one single cacheline invalidation and however many are needed // to reduce the downcount to zero, never exceeding the amount requested by the game. // To stay consistent with the rest of the code we adjust the involved registers (CTR and Rb) @@ -788,10 +786,8 @@ void JitArm64::dcbx(UGeckoInstruction inst) // bdnz afterwards! So if we invalidate a single cache line, we don't adjust the registers at // all, if we invalidate 2 cachelines we adjust the registers by one step, and so on. - ARM64Reg reg_cycle_count = gpr.GetReg(); - ARM64Reg reg_downcount = gpr.GetReg(); - loop_counter = ARM64Reg::W2; - ARM64Reg WB = ARM64Reg::W1; + const ARM64Reg reg_cycle_count = gpr.GetReg(); + const ARM64Reg reg_downcount = gpr.GetReg(); // Figure out how many loops we want to do. const u8 cycle_count_per_loop = @@ -828,11 +824,43 @@ void JitArm64::dcbx(UGeckoInstruction inst) // Load the loop_counter register with the amount of invalidations to execute. ADD(loop_counter, WA, 1); + if (IsDebuggingEnabled()) + { + const ARM64Reg branch_watch = EncodeRegTo64(reg_cycle_count); + MOVP2R(branch_watch, &m_branch_watch); + LDRB(IndexType::Unsigned, WB, branch_watch, Core::BranchWatch::GetOffsetOfRecordingActive()); + FixupBranch branch_over = CBZ(WB); + + FixupBranch branch_in = B(); + SwitchToFarCode(); + SetJumpTarget(branch_in); + + const BitSet32 gpr_caller_save = + gpr.GetCallerSavedUsed() & + ~BitSet32{DecodeReg(WB), DecodeReg(reg_cycle_count), DecodeReg(reg_downcount)}; + ABI_PushRegisters(gpr_caller_save); + const ARM64Reg float_emit_tmp = EncodeRegTo64(WB); + const BitSet32 fpr_caller_save = fpr.GetCallerSavedUsed(); + m_float_emit.ABI_PushRegisters(fpr_caller_save, float_emit_tmp); + const PPCAnalyst::CodeOp& op = js.op[2]; + ABI_CallFunction(m_ppc_state.msr.IR ? &Core::BranchWatch::HitVirtualTrue_fk_n : + &Core::BranchWatch::HitPhysicalTrue_fk_n, + branch_watch, Core::FakeBranchWatchCollectionKey{op.address, op.branchTo}, + op.inst.hex, WA); + m_float_emit.ABI_PopRegisters(fpr_caller_save, float_emit_tmp); + ABI_PopRegisters(gpr_caller_save); + + FixupBranch branch_out = B(); + SwitchToNearCode(); + SetJumpTarget(branch_out); + SetJumpTarget(branch_over); + } + gpr.Unlock(reg_cycle_count, reg_downcount); } - ARM64Reg effective_addr = ARM64Reg::W1; - ARM64Reg physical_addr = gpr.GetReg(); + constexpr ARM64Reg effective_addr = WB; + const ARM64Reg physical_addr = gpr.GetReg(); if (a) ADD(effective_addr, gpr.R(a), gpr.R(b)); @@ -911,7 +939,7 @@ void JitArm64::dcbx(UGeckoInstruction inst) SwitchToNearCode(); SetJumpTarget(near_addr); - gpr.Unlock(effective_addr, physical_addr, WA); + gpr.Unlock(WA, WB, physical_addr); if (make_loop) gpr.Unlock(loop_counter); } From 8134c8a57211f54cf2109ae3c068c0c94370f786 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 7 Dec 2023 09:36:02 -0800 Subject: [PATCH 042/223] BranchWatchDialog: A Total Replacement for CodeDiffDialog With a purpose-built Branch Watch feature built into the emulated system: BranchWatchDialog, replacing CodeDiffDialog, is now better than ever! --- Source/Core/Common/CommonPaths.h | 2 + Source/Core/Common/FileUtil.cpp | 6 + Source/Core/Common/FileUtil.h | 2 + Source/Core/Core/Boot/Boot_BS2Emu.cpp | 8 + Source/Core/Core/System.h | 3 + Source/Core/DolphinQt/CMakeLists.txt | 6 +- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 1014 +++++++++++++++++ .../DolphinQt/Debugger/BranchWatchDialog.h | 114 ++ .../Debugger/BranchWatchTableModel.cpp | 502 ++++++++ .../Debugger/BranchWatchTableModel.h | 119 ++ .../DolphinQt/Debugger/CodeDiffDialog.cpp | 673 ----------- .../Core/DolphinQt/Debugger/CodeDiffDialog.h | 86 -- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 31 +- Source/Core/DolphinQt/Debugger/CodeWidget.h | 8 +- Source/Core/DolphinQt/DolphinQt.vcxproj | 6 +- Source/Core/UICommon/UICommon.cpp | 4 + 16 files changed, 1805 insertions(+), 779 deletions(-) create mode 100644 Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp create mode 100644 Source/Core/DolphinQt/Debugger/BranchWatchDialog.h create mode 100644 Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp create mode 100644 Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h delete mode 100644 Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp delete mode 100644 Source/Core/DolphinQt/Debugger/CodeDiffDialog.h diff --git a/Source/Core/Common/CommonPaths.h b/Source/Core/Common/CommonPaths.h index bf30fb98a99b..1dce5c47f569 100644 --- a/Source/Core/Common/CommonPaths.h +++ b/Source/Core/Common/CommonPaths.h @@ -75,6 +75,8 @@ #define DUMP_AUDIO_DIR "Audio" #define DUMP_DSP_DIR "DSP" #define DUMP_SSL_DIR "SSL" +#define DUMP_DEBUG_DIR "Debug" +#define DUMP_DEBUG_BRANCHWATCH_DIR "BranchWatch" #define LOGS_DIR "Logs" #define MAIL_LOGS_DIR "Mail" #define SHADERS_DIR "Shaders" diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index 562e66ff566c..f7a855587535 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -856,6 +856,9 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[D_DUMPTEXTURES_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP; s_user_paths[D_DUMPDSP_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP; s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP; + s_user_paths[D_DUMPDEBUG_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_DIR DIR_SEP; + s_user_paths[D_DUMPDEBUG_BRANCHWATCH_IDX] = + s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP; s_user_paths[D_LOGS_IDX] = s_user_paths[D_USER_IDX] + LOGS_DIR DIR_SEP; s_user_paths[D_MAILLOGS_IDX] = s_user_paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP; s_user_paths[D_THEMES_IDX] = s_user_paths[D_USER_IDX] + THEMES_DIR DIR_SEP; @@ -932,6 +935,9 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[D_DUMPTEXTURES_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP; s_user_paths[D_DUMPDSP_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP; s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP; + s_user_paths[D_DUMPDEBUG_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_DIR DIR_SEP; + s_user_paths[D_DUMPDEBUG_BRANCHWATCH_IDX] = + s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP; s_user_paths[F_MEM1DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM1_DUMP; s_user_paths[F_MEM2DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM2_DUMP; s_user_paths[F_ARAMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + ARAM_DUMP; diff --git a/Source/Core/Common/FileUtil.h b/Source/Core/Common/FileUtil.h index 94491cecfd41..975ab5525604 100644 --- a/Source/Core/Common/FileUtil.h +++ b/Source/Core/Common/FileUtil.h @@ -52,6 +52,8 @@ enum D_DUMPTEXTURES_IDX, D_DUMPDSP_IDX, D_DUMPSSL_IDX, + D_DUMPDEBUG_IDX, + D_DUMPDEBUG_BRANCHWATCH_IDX, D_LOAD_IDX, D_LOGS_IDX, D_MAILLOGS_IDX, diff --git a/Source/Core/Core/Boot/Boot_BS2Emu.cpp b/Source/Core/Core/Boot/Boot_BS2Emu.cpp index 09f9e5128a2e..d36b192bb5e7 100644 --- a/Source/Core/Core/Boot/Boot_BS2Emu.cpp +++ b/Source/Core/Core/Boot/Boot_BS2Emu.cpp @@ -19,6 +19,7 @@ #include "Core/Config/MainSettings.h" #include "Core/ConfigManager.h" #include "Core/Core.h" +#include "Core/Debugger/BranchWatch.h" #include "Core/HLE/HLE.h" #include "Core/HW/DVD/DVDInterface.h" #include "Core/HW/EXI/EXI_DeviceIPL.h" @@ -158,6 +159,11 @@ bool CBoot::RunApploader(Core::System& system, const Core::CPUThreadGuard& guard auto& ppc_state = system.GetPPCState(); auto& mmu = system.GetMMU(); + auto& branch_watch = system.GetPowerPC().GetBranchWatch(); + + const bool resume_branch_watch = branch_watch.GetRecordingActive(); + if (system.IsBranchWatchIgnoreApploader()) + branch_watch.Pause(); // Call iAppLoaderEntry. DEBUG_LOG_FMT(BOOT, "Call iAppLoaderEntry"); @@ -220,6 +226,8 @@ bool CBoot::RunApploader(Core::System& system, const Core::CPUThreadGuard& guard // return ppc_state.pc = ppc_state.gpr[3]; + branch_watch.SetRecordingActive(resume_branch_watch); + return true; } diff --git a/Source/Core/Core/System.h b/Source/Core/Core/System.h index fe60eabf1203..acaf2daad7bc 100644 --- a/Source/Core/Core/System.h +++ b/Source/Core/Core/System.h @@ -141,9 +141,11 @@ class System bool IsPauseOnPanicMode() const { return m_pause_on_panic_enabled; } bool IsMIOS() const { return m_is_mios; } bool IsWii() const { return m_is_wii; } + bool IsBranchWatchIgnoreApploader() { return m_branch_watch_ignore_apploader; } void SetIsMIOS(bool is_mios) { m_is_mios = is_mios; } void SetIsWii(bool is_wii) { m_is_wii = is_wii; } + void SetIsBranchWatchIgnoreApploader(bool enable) { m_branch_watch_ignore_apploader = enable; } SoundStream* GetSoundStream() const; void SetSoundStream(std::unique_ptr sound_stream); @@ -202,5 +204,6 @@ class System bool m_pause_on_panic_enabled = false; bool m_is_mios = false; bool m_is_wii = false; + bool m_branch_watch_ignore_apploader = false; }; } // namespace Core diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 8285c17d4ae7..437323fc74d4 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -206,12 +206,14 @@ add_executable(dolphin-emu Debugger/AssemblerWidget.h Debugger/AssemblyEditor.cpp Debugger/AssemblyEditor.h + Debugger/BranchWatchDialog.cpp + Debugger/BranchWatchDialog.h + Debugger/BranchWatchTableModel.cpp + Debugger/BranchWatchTableModel.h Debugger/BreakpointDialog.cpp Debugger/BreakpointDialog.h Debugger/BreakpointWidget.cpp Debugger/BreakpointWidget.h - Debugger/CodeDiffDialog.cpp - Debugger/CodeDiffDialog.h Debugger/CodeViewWidget.cpp Debugger/CodeViewWidget.h Debugger/CodeWidget.cpp diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp new file mode 100644 index 000000000000..f5e6a5acc3c8 --- /dev/null +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -0,0 +1,1014 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "DolphinQt/Debugger/BranchWatchDialog.h" + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Common/Assert.h" +#include "Common/CommonFuncs.h" +#include "Common/CommonTypes.h" +#include "Common/FileUtil.h" +#include "Common/IOFile.h" +#include "Core/ConfigManager.h" +#include "Core/Core.h" +#include "Core/Debugger/BranchWatch.h" +#include "Core/Debugger/PPCDebugInterface.h" +#include "Core/PowerPC/Gekko.h" +#include "Core/PowerPC/PowerPC.h" +#include "Core/System.h" +#include "DolphinQt/Debugger/BranchWatchTableModel.h" +#include "DolphinQt/Debugger/CodeWidget.h" +#include "DolphinQt/QtUtils/DolphinFileDialog.h" +#include "DolphinQt/QtUtils/ModalMessageBox.h" +#include "DolphinQt/QtUtils/SetWindowDecorations.h" +#include "DolphinQt/Settings.h" + +class BranchWatchProxyModel final : public QSortFilterProxyModel +{ + friend BranchWatchDialog; + +public: + explicit BranchWatchProxyModel(const Core::BranchWatch& branch_watch, QObject* parent = nullptr) + : QSortFilterProxyModel(parent), m_branch_watch(branch_watch) + { + } + + BranchWatchTableModel* sourceModel() const + { + return static_cast(QSortFilterProxyModel::sourceModel()); + } + void setSourceModel(BranchWatchTableModel* source_model) + { + QSortFilterProxyModel::setSourceModel(source_model); + } + + // Virtual setSourceModel is forbidden for type-safety reasons. See sourceModel(). + [[noreturn]] void setSourceModel(QAbstractItemModel* source_model) override { Crash(); } + bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const override; + + template + void OnToggled(bool enabled) + { + this->*member = enabled; + invalidateRowsFilter(); + } + template + void OnSymbolTextChanged(const QString& text) + { + this->*member = text; + invalidateRowsFilter(); + } + template BranchWatchProxyModel::*member> + void OnAddressTextChanged(const QString& text) + { + bool ok = false; + if (const u32 value = text.toUInt(&ok, 16); ok) + this->*member = value; + else + this->*member = std::nullopt; + invalidateRowsFilter(); + } + void OnDelete(QModelIndexList index_list); + + bool IsBranchTypeAllowed(UGeckoInstruction inst) const; + void SetInspected(const QModelIndex& index); + +private: + const Core::BranchWatch& m_branch_watch; + + QString m_origin_symbol_name = {}, m_destin_symbol_name = {}; + std::optional m_origin_min, m_origin_max, m_destin_min, m_destin_max; + bool m_b = {}, m_bl = {}, m_bc = {}, m_bcl = {}, m_blr = {}, m_blrl = {}, m_bclr = {}, + m_bclrl = {}, m_bctr = {}, m_bctrl = {}, m_bcctr = {}, m_bcctrl = {}; + bool m_cond_true = {}, m_cond_false = {}; +}; + +bool BranchWatchProxyModel::filterAcceptsRow(int source_row, const QModelIndex&) const +{ + const Core::BranchWatch::Selection::value_type& value = m_branch_watch.GetSelection()[source_row]; + if (value.condition) + { + if (!m_cond_true) + return false; + } + else if (!m_cond_false) + return false; + + const Core::BranchWatchCollectionKey& k = value.collection_ptr->first; + if (!IsBranchTypeAllowed(k.original_inst)) + return false; + + if (m_origin_min.has_value() && k.origin_addr < m_origin_min.value()) + return false; + if (m_origin_max.has_value() && k.origin_addr > m_origin_max.value()) + return false; + if (m_destin_min.has_value() && k.destin_addr < m_destin_min.value()) + return false; + if (m_destin_max.has_value() && k.destin_addr > m_destin_max.value()) + return false; + + 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)) + 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)) + return false; + } + 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 || + (inst.OPCD == 19 && (inst.SUBOP10 == 16 || inst.SUBOP10 == 528))); + // Every branch instruction uses the same LK field. + return inst.LK; +} + +bool BranchWatchProxyModel::IsBranchTypeAllowed(UGeckoInstruction inst) const +{ + const bool lr_saved = BranchSavesLR(inst); + switch (inst.OPCD) + { + case 18: + return lr_saved ? m_bl : m_b; + case 16: + return lr_saved ? m_bcl : m_bc; + case 19: + switch (inst.SUBOP10) + { + case 16: + if ((inst.BO & 0b10100) == 0b10100) // 1z1zz - Branch always + return lr_saved ? m_blrl : m_blr; + return lr_saved ? m_bclrl : m_bclr; + case 528: + if ((inst.BO & 0b10100) == 0b10100) // 1z1zz - Branch always + return lr_saved ? m_bctrl : m_bctr; + return lr_saved ? m_bcctrl : m_bcctr; + } + } + return false; +} + +void BranchWatchProxyModel::SetInspected(const QModelIndex& index) +{ + sourceModel()->SetInspected(mapToSource(index)); +} + +BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& branch_watch, + CodeWidget* code_widget, QWidget* parent) + : QDialog(parent), m_system(system), m_branch_watch(branch_watch), m_code_widget(code_widget) +{ + setWindowTitle(tr("Branch Watch Tool")); + setWindowFlags((windowFlags() | Qt::WindowMinMaxButtonsHint) & ~Qt::WindowContextHelpButtonHint); + SetQWidgetWindowDecorations(this); + setLayout([this]() { + auto* layout = new QVBoxLayout; + + // Controls Toolbar (widgets are added later) + layout->addWidget(m_control_toolbar = new QToolBar); + + // Branch Watch Table + layout->addWidget(m_table_view = [this]() { + const auto& ui_settings = Settings::Instance(); + + m_table_proxy = new BranchWatchProxyModel(m_branch_watch); + m_table_proxy->setSourceModel(m_table_model = + new BranchWatchTableModel(m_system, m_branch_watch)); + m_table_proxy->setSortRole(UserRole::SortRole); + + m_table_model->setFont(ui_settings.GetDebugFont()); + connect(&ui_settings, &Settings::DebugFontChanged, m_table_model, + &BranchWatchTableModel::setFont); + + auto* const table_view = new QTableView; + table_view->setModel(m_table_proxy); + table_view->setSortingEnabled(true); + table_view->sortByColumn(Column::Origin, Qt::AscendingOrder); + table_view->setSelectionMode(QAbstractItemView::ExtendedSelection); + table_view->setSelectionBehavior(QAbstractItemView::SelectRows); + table_view->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + table_view->setContextMenuPolicy(Qt::CustomContextMenu); + table_view->setEditTriggers(QAbstractItemView::NoEditTriggers); + table_view->setCornerButtonEnabled(false); + table_view->verticalHeader()->hide(); + + QHeaderView* const horizontal_header = table_view->horizontalHeader(); + horizontal_header->restoreState( // Restore column visibility state. + Settings::GetQSettings() + .value(QStringLiteral("branchwatchdialog/tableheader/state")) + .toByteArray()); + horizontal_header->setContextMenuPolicy(Qt::CustomContextMenu); + horizontal_header->setStretchLastSection(true); + horizontal_header->setSectionsMovable(true); + horizontal_header->setFirstSectionMovable(true); + + connect(table_view, &QTableView::clicked, this, &BranchWatchDialog::OnTableClicked); + connect(table_view, &QTableView::customContextMenuRequested, this, + &BranchWatchDialog::OnTableContextMenu); + connect(horizontal_header, &QHeaderView::customContextMenuRequested, this, + &BranchWatchDialog::OnTableHeaderContextMenu); + connect(new QShortcut(QKeySequence(Qt::Key_Delete), this), &QShortcut::activated, this, + &BranchWatchDialog::OnTableDeleteKeypress); + + return table_view; + }()); + + m_mnu_column_visibility = [this]() { + static constexpr std::array headers = { + QT_TR_NOOP("Instruction"), QT_TR_NOOP("Condition"), QT_TR_NOOP("Origin"), + QT_TR_NOOP("Destination"), QT_TR_NOOP("Recent Hits"), QT_TR_NOOP("Total Hits"), + QT_TR_NOOP("Origin Symbol"), QT_TR_NOOP("Destination Symbol")}; + + auto* const menu = new QMenu(); + for (int column = 0; column < Column::NumberOfColumns; ++column) + { + QAction* action = menu->addAction(tr(headers[column]), [this, column](bool enabled) { + m_table_view->setColumnHidden(column, !enabled); + }); + action->setChecked(!m_table_view->isColumnHidden(column)); + action->setCheckable(true); + } + return menu; + }(); + + // Menu Bar + layout->setMenuBar([this]() { + QMenuBar* const menu_bar = new QMenuBar; + menu_bar->setNativeMenuBar(false); + + QMenu* const menu_file = new QMenu(tr("&File"), menu_bar); + menu_file->addAction(tr("&Save Branch Watch"), this, &BranchWatchDialog::OnSave); + menu_file->addAction(tr("Save Branch Watch &As..."), this, &BranchWatchDialog::OnSaveAs); + menu_file->addAction(tr("&Load Branch Watch"), this, &BranchWatchDialog::OnLoad); + menu_file->addAction(tr("Load Branch Watch &From..."), this, &BranchWatchDialog::OnLoadFrom); + m_act_autosave = menu_file->addAction(tr("A&uto Save")); + m_act_autosave->setCheckable(true); + connect(m_act_autosave, &QAction::toggled, this, &BranchWatchDialog::OnToggleAutoSave); + menu_bar->addMenu(menu_file); + + QMenu* const menu_tool = new QMenu(tr("&Tool"), menu_bar); + menu_tool->setToolTipsVisible(true); + menu_tool->addAction(tr("Hide &Controls"), this, &BranchWatchDialog::OnHideShowControls) + ->setCheckable(true); + QAction* const act_ignore_apploader = + menu_tool->addAction(tr("Ignore &Apploader Branch Hits")); + act_ignore_apploader->setToolTip( + tr("This only applies to the initial boot of the emulated software.")); + act_ignore_apploader->setChecked(m_system.IsBranchWatchIgnoreApploader()); + act_ignore_apploader->setCheckable(true); + connect(act_ignore_apploader, &QAction::toggled, this, + &BranchWatchDialog::OnToggleIgnoreApploader); + + menu_tool->addMenu(m_mnu_column_visibility)->setText(tr("Column &Visibility")); + menu_tool->addAction(tr("Wipe &Inspection Data"), this, &BranchWatchDialog::OnWipeInspection); + menu_tool->addAction(tr("&Help"), this, &BranchWatchDialog::OnHelp); + + menu_bar->addMenu(menu_tool); + + return menu_bar; + }()); + + // Status Bar + layout->addWidget(m_status_bar = []() { + auto* const status_bar = new QStatusBar; + status_bar->setSizeGripEnabled(false); + return status_bar; + }()); + + // Tool Controls + m_control_toolbar->addWidget([this]() { + auto* const layout = new QGridLayout; + + layout->addWidget(m_btn_start_pause = new QPushButton(tr("Start Branch Watch")), 0, 0); + connect(m_btn_start_pause, &QPushButton::toggled, this, &BranchWatchDialog::OnStartPause); + m_btn_start_pause->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + m_btn_start_pause->setCheckable(true); + + layout->addWidget(m_btn_clear_watch = new QPushButton(tr("Clear Branch Watch")), 1, 0); + connect(m_btn_clear_watch, &QPushButton::pressed, this, + &BranchWatchDialog::OnClearBranchWatch); + m_btn_clear_watch->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + + layout->addWidget(m_btn_path_was_taken = new QPushButton(tr("Code Path Was Taken")), 0, 1); + connect(m_btn_path_was_taken, &QPushButton::pressed, this, + &BranchWatchDialog::OnCodePathWasTaken); + m_btn_path_was_taken->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + + layout->addWidget(m_btn_path_not_taken = new QPushButton(tr("Code Path Not Taken")), 1, 1); + connect(m_btn_path_not_taken, &QPushButton::pressed, this, + &BranchWatchDialog::OnCodePathNotTaken); + m_btn_path_not_taken->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + + auto* const group_box = new QGroupBox(tr("Tool Controls")); + group_box->setLayout(layout); + group_box->setAlignment(Qt::AlignHCenter); + + return group_box; + }()); + + // Spacer + m_control_toolbar->addWidget([]() { + auto* const widget = new QWidget; + widget->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); + return widget; + }()); + + // Branch Type Filter Options + m_control_toolbar->addWidget([this]() { + auto* const layout = new QGridLayout; + + const auto routine = [this, layout](const QString& text, const QString& tooltip, int row, + int column, void (BranchWatchProxyModel::*slot)(bool)) { + QCheckBox* const check_box = new QCheckBox(text); + check_box->setToolTip(tooltip); + layout->addWidget(check_box, row, column); + connect(check_box, &QCheckBox::toggled, [this, slot](bool checked) { + (m_table_proxy->*slot)(checked); + UpdateStatus(); + }); + check_box->setChecked(true); + }; + + // clang-format off + routine(QStringLiteral("b" ), tr("Branch" ), 0, 0, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_b >); + routine(QStringLiteral("bl" ), tr("Branch (LR saved)" ), 0, 1, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bl >); + routine(QStringLiteral("bc" ), tr("Branch Conditional" ), 0, 2, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bc >); + routine(QStringLiteral("bcl" ), tr("Branch Conditional (LR saved)" ), 0, 3, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bcl >); + routine(QStringLiteral("blr" ), tr("Branch to Link Register" ), 1, 0, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_blr >); + routine(QStringLiteral("blrl" ), tr("Branch to Link Register (LR saved)" ), 1, 1, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_blrl >); + routine(QStringLiteral("bclr" ), tr("Branch Conditional to Link Register" ), 1, 2, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bclr >); + routine(QStringLiteral("bclrl" ), tr("Branch Conditional to Link Register (LR saved)" ), 1, 3, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bclrl >); + routine(QStringLiteral("bctr" ), tr("Branch to Count Register" ), 2, 0, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bctr >); + routine(QStringLiteral("bctrl" ), tr("Branch to Count Register (LR saved)" ), 2, 1, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bctrl >); + routine(QStringLiteral("bcctr" ), tr("Branch Conditional to Count Register" ), 2, 2, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bcctr >); + routine(QStringLiteral("bcctrl"), tr("Branch Conditional to Count Register (LR saved)"), 2, 3, &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_bcctrl>); + // clang-format on + + auto* const group_box = new QGroupBox(tr("Branch Type")); + group_box->setLayout(layout); + group_box->setAlignment(Qt::AlignHCenter); + + return group_box; + }()); + + // Origin and Destination Filter Options + m_control_toolbar->addWidget([this]() { + auto* const layout = new QGridLayout; + + const auto routine = [this, layout](const QString& text, int row, int column, int width, + void (BranchWatchProxyModel::*slot)(const QString&)) { + QLineEdit* const line_edit = new QLineEdit; + layout->addWidget(line_edit, row, column, 1, width); + connect(line_edit, &QLineEdit::textChanged, [this, slot](const QString& text) { + (m_table_proxy->*slot)(text); + UpdateStatus(); + }); + line_edit->setPlaceholderText(text); + return line_edit; + }; + + // clang-format off + routine(tr("Origin Symbol" ), 0, 0, 1, &BranchWatchProxyModel::OnSymbolTextChanged<&BranchWatchProxyModel::m_origin_symbol_name>); + routine(tr("Origin Min" ), 1, 0, 1, &BranchWatchProxyModel::OnAddressTextChanged<&BranchWatchProxyModel::m_origin_min>)->setMaxLength(8); + routine(tr("Origin Max" ), 2, 0, 1, &BranchWatchProxyModel::OnAddressTextChanged<&BranchWatchProxyModel::m_origin_max>)->setMaxLength(8); + routine(tr("Destination Symbol"), 0, 1, 1, &BranchWatchProxyModel::OnSymbolTextChanged<&BranchWatchProxyModel::m_destin_symbol_name>); + routine(tr("Destination Min" ), 1, 1, 1, &BranchWatchProxyModel::OnAddressTextChanged<&BranchWatchProxyModel::m_destin_min>)->setMaxLength(8); + routine(tr("Destination Max" ), 2, 1, 1, &BranchWatchProxyModel::OnAddressTextChanged<&BranchWatchProxyModel::m_destin_max>)->setMaxLength(8); + // clang-format on + + auto* const group_box = new QGroupBox(tr("Origin and Destination")); + group_box->setLayout(layout); + group_box->setAlignment(Qt::AlignHCenter); + + return group_box; + }()); + + // Condition Filter Options + m_control_toolbar->addWidget([this]() { + auto* const layout = new QVBoxLayout; + layout->setAlignment(Qt::AlignHCenter); + + const auto routine = [this, layout](const QString& text, + void (BranchWatchProxyModel::*slot)(bool)) { + QCheckBox* const check_box = new QCheckBox(text); + layout->addWidget(check_box); + connect(check_box, &QCheckBox::toggled, [this, slot](bool checked) { + (m_table_proxy->*slot)(checked); + UpdateStatus(); + }); + check_box->setChecked(true); + return check_box; + }; + + routine(QStringLiteral("true"), + &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_cond_true>) + ->setToolTip(tr("This will also filter unconditional branches.\n" + "To filter for or against unconditional branches,\n" + "use the Branch Type filter options.")); + routine(QStringLiteral("false"), + &BranchWatchProxyModel::OnToggled<&BranchWatchProxyModel::m_cond_false>); + + auto* const group_box = new QGroupBox(tr("Condition")); + group_box->setLayout(layout); + group_box->setAlignment(Qt::AlignHCenter); + + return group_box; + }()); + + // Misc. Controls + m_control_toolbar->addWidget([this]() { + auto* const layout = new QVBoxLayout; + + layout->addWidget(m_btn_was_overwritten = new QPushButton(tr("Branch Was Overwritten"))); + connect(m_btn_was_overwritten, &QPushButton::pressed, this, + &BranchWatchDialog::OnBranchWasOverwritten); + m_btn_was_overwritten->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + + layout->addWidget(m_btn_not_overwritten = new QPushButton(tr("Branch Not Overwritten"))); + connect(m_btn_not_overwritten, &QPushButton::pressed, this, + &BranchWatchDialog::OnBranchNotOverwritten); + m_btn_not_overwritten->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + + layout->addWidget(m_btn_wipe_recent_hits = new QPushButton(tr("Wipe Recent Hits"))); + connect(m_btn_wipe_recent_hits, &QPushButton::pressed, this, + &BranchWatchDialog::OnWipeRecentHits); + m_btn_wipe_recent_hits->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); + m_btn_wipe_recent_hits->setEnabled(false); + + auto* const group_box = new QGroupBox(tr("Misc. Controls")); + group_box->setLayout(layout); + group_box->setAlignment(Qt::AlignHCenter); + + return group_box; + }()); + + connect(m_timer = new QTimer, &QTimer::timeout, this, &BranchWatchDialog::OnTimeout); + connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, + &BranchWatchDialog::OnEmulationStateChanged); + connect(m_table_proxy, &BranchWatchProxyModel::layoutChanged, this, + &BranchWatchDialog::UpdateStatus); + + return 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()); +} + +void BranchWatchDialog::done(int r) +{ + if (m_timer->isActive()) + m_timer->stop(); + auto& settings = Settings::GetQSettings(); + settings.setValue(QStringLiteral("branchwatchdialog/geometry"), saveGeometry()); + settings.setValue(QStringLiteral("branchwatchdialog/tableheader/state"), + m_table_view->horizontalHeader()->saveState()); + QDialog::done(r); +} + +static constexpr int BRANCH_WATCH_TOOL_TIMER_DELAY_MS = 100; +static constexpr int BRANCH_WATCH_TOOL_TIMER_PAUSE_ONESHOT_MS = 200; + +static bool TimerCondition(const Core::BranchWatch& branch_watch, Core::State state) +{ + return branch_watch.GetRecordingActive() && state > Core::State::Paused; +} + +int BranchWatchDialog::exec() +{ + if (TimerCondition(m_branch_watch, Core::GetState())) + m_timer->start(BRANCH_WATCH_TOOL_TIMER_DELAY_MS); + return QDialog::exec(); +} + +void BranchWatchDialog::open() +{ + if (TimerCondition(m_branch_watch, Core::GetState())) + m_timer->start(BRANCH_WATCH_TOOL_TIMER_DELAY_MS); + QDialog::open(); +} + +void BranchWatchDialog::OnStartPause(bool checked) +{ + if (checked) + { + m_branch_watch.Start(); + m_btn_start_pause->setText(tr("Pause Branch Watch")); + // Restart the timer if the situation calls for it, but always turn off single-shot. + m_timer->setSingleShot(false); + if (Core::GetState() > Core::State::Paused) + m_timer->start(BRANCH_WATCH_TOOL_TIMER_DELAY_MS); + } + else + { + m_branch_watch.Pause(); + m_btn_start_pause->setText(tr("Start Branch Watch")); + // Schedule one last update in the future in case Branch Watch is in the middle of a hit. + if (Core::GetState() > Core::State::Paused) + m_timer->setInterval(BRANCH_WATCH_TOOL_TIMER_PAUSE_ONESHOT_MS); + m_timer->setSingleShot(true); + } + Update(); +} + +void BranchWatchDialog::OnClearBranchWatch() +{ + { + const Core::CPUThreadGuard guard{m_system}; + m_table_model->OnClearBranchWatch(guard); + AutoSave(guard); + } + m_btn_wipe_recent_hits->setEnabled(false); + UpdateStatus(); +} + +static std::string GetSnapshotDefaultFilepath() +{ + return fmt::format("{}{}.txt", File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX), + SConfig::GetInstance().GetGameID()); +} + +void BranchWatchDialog::OnSave() +{ + if (!m_branch_watch.CanSave()) + { + ModalMessageBox::warning(this, tr("Error"), tr("There is nothing to save!")); + return; + } + + Save(Core::CPUThreadGuard{m_system}, GetSnapshotDefaultFilepath()); +} + +void BranchWatchDialog::OnSaveAs() +{ + if (!m_branch_watch.CanSave()) + { + ModalMessageBox::warning(this, tr("Error"), tr("There is nothing to save!")); + return; + } + + const QString filepath = DolphinFileDialog::getSaveFileName( + this, tr("Save Branch Watch snapshot"), + QString::fromStdString(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)), + tr("Text file (*.txt);;All Files (*)")); + if (filepath.isEmpty()) + return; + + Save(Core::CPUThreadGuard{m_system}, filepath.toStdString()); +} + +void BranchWatchDialog::OnLoad() +{ + Load(Core::CPUThreadGuard{m_system}, GetSnapshotDefaultFilepath()); +} + +void BranchWatchDialog::OnLoadFrom() +{ + const QString filepath = DolphinFileDialog::getOpenFileName( + 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()) + return; + + Load(Core::CPUThreadGuard{m_system}, filepath.toStdString()); +} + +void BranchWatchDialog::OnCodePathWasTaken() +{ + { + const Core::CPUThreadGuard guard{m_system}; + m_table_model->OnCodePathWasTaken(guard); + AutoSave(guard); + } + m_btn_wipe_recent_hits->setEnabled(true); + UpdateStatus(); +} + +void BranchWatchDialog::OnCodePathNotTaken() +{ + { + const Core::CPUThreadGuard guard{m_system}; + m_table_model->OnCodePathNotTaken(guard); + AutoSave(guard); + } + UpdateStatus(); +} + +void BranchWatchDialog::OnBranchWasOverwritten() +{ + if (Core::GetState() == Core::State::Uninitialized) + { + ModalMessageBox::warning(this, tr("Error"), tr("Core is uninitialized.")); + return; + } + { + const Core::CPUThreadGuard guard{m_system}; + m_table_model->OnBranchWasOverwritten(guard); + AutoSave(guard); + } + UpdateStatus(); +} + +void BranchWatchDialog::OnBranchNotOverwritten() +{ + if (Core::GetState() == Core::State::Uninitialized) + { + ModalMessageBox::warning(this, tr("Error"), tr("Core is uninitialized.")); + return; + } + { + const Core::CPUThreadGuard guard{m_system}; + m_table_model->OnBranchNotOverwritten(guard); + AutoSave(guard); + } + UpdateStatus(); +} + +void BranchWatchDialog::OnWipeRecentHits() +{ + m_table_model->OnWipeRecentHits(); +} + +void BranchWatchDialog::OnWipeInspection() +{ + m_table_model->OnWipeInspection(); +} + +void BranchWatchDialog::OnTimeout() +{ + Update(); +} + +void BranchWatchDialog::OnEmulationStateChanged(Core::State new_state) +{ + if (!isVisible()) + return; + + if (TimerCondition(m_branch_watch, new_state)) + m_timer->start(BRANCH_WATCH_TOOL_TIMER_DELAY_MS); + else if (m_timer->isActive()) + m_timer->stop(); + Update(); +} + +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" + "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 " + "\"Load From...\" actions are also available, and auto-saving can be enabled to save a " + "snapshot at every step of a search. The \"Pause Branch Watch\" button will halt Branch " + "Watch from tracking further branch hits until it is told to resume. Press the \"Clear " + "Branch Watch\" button to clear all candidates and return to the blacklist phase.")); + ModalMessageBox::information( + this, tr("Branch Watch Tool Help (2/4)"), + tr("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 by pressing the \"Code " + "Path Not Taken\", \"Branch Was Overwritten\", and \"Branch Not Overwritten\" buttons. " + "Once the \"Code Path Was Taken\" button is pressed for the first time, Branch Watch will " + "switch to the reduction phase, and the table will populate with all eligible " + "candidates.")); + ModalMessageBox::information( + this, tr("Branch Watch Tool Help (3/4)"), + tr("Once in the reduction phase, it is time to start narrowing down the candidates shown in " + "the table. Further reduce the candidates by checking whether a code path was or was not " + "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" + "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.")); + ModalMessageBox::information( + 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" + "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" + "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" + "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" + "All context menus have the action to delete the selected row(s) from the candidates.")); +} + +void BranchWatchDialog::OnToggleAutoSave(bool checked) +{ + if (!checked) + return; + + const QString filepath = DolphinFileDialog::getSaveFileName( + 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()) + m_autosave_filepath = std::nullopt; + else + m_autosave_filepath = filepath.toStdString(); +} + +void BranchWatchDialog::OnHideShowControls(bool checked) +{ + if (checked) + m_control_toolbar->hide(); + else + m_control_toolbar->show(); +} + +void BranchWatchDialog::OnToggleIgnoreApploader(bool checked) +{ + m_system.SetIsBranchWatchIgnoreApploader(checked); +} + +void BranchWatchDialog::OnTableClicked(const QModelIndex& index) +{ + const QVariant v = m_table_proxy->data(index, UserRole::ClickRole); + switch (index.column()) + { + case Column::OriginSymbol: + case Column::DestinSymbol: + if (!v.isValid()) + return; + [[fallthrough]]; + case Column::Origin: + case Column::Destination: + m_code_widget->SetAddress(v.value(), CodeViewWidget::SetAddressUpdate::WithDetailedUpdate); + return; + } +} + +void BranchWatchDialog::OnTableContextMenu(const QPoint& pos) +{ + 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->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() != 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() != Core::State::Uninitialized && + std::all_of(index_list.begin(), index_list.end(), [this](const QModelIndex& index) { + const QModelIndex sibling = index.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() != Core::State::Uninitialized && + std::all_of(index_list.begin(), index_list.end(), [this](const QModelIndex& index) { + return m_table_proxy->data(index, 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)); +} + +void BranchWatchDialog::OnTableHeaderContextMenu(const QPoint& pos) +{ + m_mnu_column_visibility->exec(m_table_view->horizontalHeader()->mapToGlobal(pos)); +} + +void BranchWatchDialog::OnTableDelete(QModelIndexList index_list) +{ + m_table_proxy->OnDelete(std::move(index_list)); + UpdateStatus(); +} + +void BranchWatchDialog::OnTableDeleteKeypress() +{ + OnTableDelete(m_table_view->selectionModel()->selectedRows()); +} + +void BranchWatchDialog::OnTableSetBLR(QModelIndexList index_list) +{ + 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(); +} + +void BranchWatchDialog::OnTableSetNOP(QModelIndexList index_list) +{ + 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(); +} + +void BranchWatchDialog::OnTableCopyAddress(QModelIndexList index_list) +{ + auto iter = index_list.begin(); + if (iter == index_list.end()) + return; + + QString text; + text.reserve(index_list.size() * 9 - 1); + while (true) + { + text.append(QString::number(m_table_proxy->data(*iter, UserRole::ClickRole).value(), 16)); + if (++iter == index_list.end()) + break; + text.append(QChar::fromLatin1('\n')); + } + QApplication::clipboard()->setText(text); +} + +void BranchWatchDialog::Update() +{ + if (m_branch_watch.GetRecordingPhase() == Core::BranchWatch::Phase::Blacklist) + UpdateStatus(); + m_table_model->UpdateHits(); +} + +void BranchWatchDialog::UpdateSymbols() +{ + m_table_model->UpdateSymbols(); +} + +void BranchWatchDialog::UpdateStatus() +{ + switch (m_branch_watch.GetRecordingPhase()) + { + case Core::BranchWatch::Phase::Blacklist: + { + const std::size_t candidate_size = m_branch_watch.GetCollectionSize(); + const std::size_t blacklist_size = m_branch_watch.GetBlacklistSize(); + if (blacklist_size == 0) + { + m_status_bar->showMessage(tr("Candidates: %1").arg(candidate_size)); + return; + } + m_status_bar->showMessage(tr("Candidates: %1 | Excluded: %2 | Remaining: %3") + .arg(candidate_size) + .arg(blacklist_size) + .arg(candidate_size - blacklist_size)); + return; + } + case Core::BranchWatch::Phase::Reduction: + { + const std::size_t candidate_size = m_branch_watch.GetSelection().size(); + if (candidate_size == 0) + { + m_status_bar->showMessage(tr("Zero candidates remaining.")); + return; + } + const std::size_t remaining_size = m_table_proxy->rowCount(); + m_status_bar->showMessage(tr("Candidates: %1 | Filtered: %2 | Remaining: %3") + .arg(candidate_size) + .arg(candidate_size - remaining_size) + .arg(remaining_size)); + return; + } + } +} + +void BranchWatchDialog::Save(const Core::CPUThreadGuard& guard, const std::string& filepath) +{ + File::IOFile file(filepath, "w"); + if (!file.IsOpen()) + { + ModalMessageBox::warning( + this, tr("Error"), + tr("Failed to save Branch Watch snapshot \"%1\"").arg(QString::fromStdString(filepath))); + return; + } + + m_table_model->Save(guard, file.GetHandle()); +} + +void BranchWatchDialog::Load(const Core::CPUThreadGuard& guard, const std::string& filepath) +{ + File::IOFile file(filepath, "r"); + if (!file.IsOpen()) + { + ModalMessageBox::warning( + this, tr("Error"), + tr("Failed to open Branch Watch snapshot \"%1\"").arg(QString::fromStdString(filepath))); + return; + } + + m_table_model->Load(guard, file.GetHandle()); + m_btn_wipe_recent_hits->setEnabled(m_branch_watch.GetRecordingPhase() == + Core::BranchWatch::Phase::Reduction); +} + +void BranchWatchDialog::AutoSave(const Core::CPUThreadGuard& guard) +{ + if (!m_act_autosave->isChecked() || !m_branch_watch.CanSave()) + return; + Save(guard, m_autosave_filepath ? m_autosave_filepath.value() : GetSnapshotDefaultFilepath()); +} diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h new file mode 100644 index 000000000000..b167ca106dff --- /dev/null +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -0,0 +1,114 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +#include +#include + +#include "Core/Core.h" + +namespace Core +{ +class BranchWatch; +class CPUThreadGuard; +class System; +} // namespace Core +class BranchWatchProxyModel; +class BranchWatchTableModel; +class CodeWidget; +class QAction; +class QMenu; +class QPoint; +class QPushButton; +class QStatusBar; +class QTableView; +class QTimer; +class QToolBar; +class QWidget; + +namespace BranchWatchTableModelColumn +{ +enum EnumType : int; +} +namespace BranchWatchTableModelUserRole +{ +enum EnumType : int; +} + +class BranchWatchDialog : public QDialog +{ + Q_OBJECT + + using Column = BranchWatchTableModelColumn::EnumType; + using UserRole = BranchWatchTableModelUserRole::EnumType; + +public: + explicit BranchWatchDialog(Core::System& system, Core::BranchWatch& branch_watch, + CodeWidget* code_widget, QWidget* parent = nullptr); + void done(int r) override; + int exec() override; + void open() override; + +private: + void OnStartPause(bool checked); + void OnClearBranchWatch(); + void OnSave(); + void OnSaveAs(); + void OnLoad(); + void OnLoadFrom(); + void OnCodePathWasTaken(); + void OnCodePathNotTaken(); + void OnBranchWasOverwritten(); + void OnBranchNotOverwritten(); + void OnWipeRecentHits(); + void OnWipeInspection(); + void OnTimeout(); + void OnEmulationStateChanged(Core::State new_state); + void OnHelp(); + void OnToggleAutoSave(bool checked); + void OnHideShowControls(bool checked); + void OnToggleIgnoreApploader(bool checked); + + void OnTableClicked(const QModelIndex& index); + void OnTableContextMenu(const QPoint& pos); + void OnTableHeaderContextMenu(const QPoint& pos); + void OnTableDelete(QModelIndexList index_list); + void OnTableDeleteKeypress(); + void OnTableSetBLR(QModelIndexList index_list); + void OnTableSetNOP(QModelIndexList index_list); + void OnTableCopyAddress(QModelIndexList index_list); + +public: + // TODO: Step doesn't cause EmulationStateChanged to be emitted, so it has to call this manually. + void Update(); + // TODO: There seems to be a lack of a ubiquitous signal for when symbols change. + void UpdateSymbols(); + +private: + void UpdateStatus(); + 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); + + Core::System& m_system; + Core::BranchWatch& m_branch_watch; + CodeWidget* m_code_widget; + + 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; + QMenu* m_mnu_column_visibility; + + QToolBar* m_control_toolbar; + QTableView* m_table_view; + BranchWatchProxyModel* m_table_proxy; + BranchWatchTableModel* m_table_model; + QStatusBar* m_status_bar; + QTimer* m_timer; + + std::optional m_autosave_filepath; +}; diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp new file mode 100644 index 000000000000..800973a6dd2b --- /dev/null +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp @@ -0,0 +1,502 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "DolphinQt/Debugger/BranchWatchTableModel.h" + +#include +#include +#include + +#include + +#include "Common/Assert.h" +#include "Common/GekkoDisassembler.h" +#include "Core/Debugger/BranchWatch.h" +#include "Core/PowerPC/PPCSymbolDB.h" + +QVariant BranchWatchTableModel::data(const QModelIndex& index, int role) const +{ + if (!index.isValid()) + return QVariant(); + + switch (role) + { + case Qt::DisplayRole: + return DisplayRoleData(index); + case Qt::FontRole: + return FontRoleData(index); + case Qt::TextAlignmentRole: + return TextAlignmentRoleData(index); + case Qt::ForegroundRole: + return ForegroundRoleData(index); + case UserRole::ClickRole: + return ClickRoleData(index); + case UserRole::SortRole: + return SortRoleData(index); + } + return QVariant(); +} + +QVariant BranchWatchTableModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + if (orientation == Qt::Vertical || role != Qt::DisplayRole) + return QVariant(); + + static constexpr std::array headers = { + QT_TR_NOOP("Instr."), QT_TR_NOOP("Cond."), + QT_TR_NOOP("Origin"), QT_TR_NOOP("Destination"), + QT_TR_NOOP("Recent Hits"), QT_TR_NOOP("Total Hits"), + QT_TR_NOOP("Origin Symbol"), QT_TR_NOOP("Destination Symbol")}; + return tr(headers[section]); +} + +int BranchWatchTableModel::rowCount(const QModelIndex& parent) const +{ + if (parent.isValid()) + return 0; + return static_cast(m_branch_watch.GetSelection().size()); +} + +int BranchWatchTableModel::columnCount(const QModelIndex& parent) const +{ + if (parent.isValid()) + return 0; + return Column::NumberOfColumns; +} + +bool BranchWatchTableModel::removeRows(int row, int count, const QModelIndex& parent) +{ + if (parent.isValid() || row < 0) + return false; + if (count <= 0) + return true; + + auto& selection = m_branch_watch.GetSelection(); + beginRemoveRows(parent, row, row + count - 1); // Last is inclusive in Qt! + selection.erase(selection.begin() + row, selection.begin() + row + count); + m_symbol_list.remove(row, count); + endRemoveRows(); + return true; +} + +void BranchWatchTableModel::OnClearBranchWatch(const Core::CPUThreadGuard& guard) +{ + emit layoutAboutToBeChanged(); + m_branch_watch.Clear(guard); + m_symbol_list.clear(); + emit layoutChanged(); +} + +void BranchWatchTableModel::OnCodePathWasTaken(const Core::CPUThreadGuard& guard) +{ + emit layoutAboutToBeChanged(); + m_branch_watch.IsolateHasExecuted(guard); + PrefetchSymbols(); + emit layoutChanged(); +} + +void BranchWatchTableModel::OnCodePathNotTaken(const Core::CPUThreadGuard& guard) +{ + emit layoutAboutToBeChanged(); + m_branch_watch.IsolateNotExecuted(guard); + PrefetchSymbols(); + emit layoutChanged(); +} + +void BranchWatchTableModel::OnBranchWasOverwritten(const Core::CPUThreadGuard& guard) +{ + emit layoutAboutToBeChanged(); + m_branch_watch.IsolateWasOverwritten(guard); + PrefetchSymbols(); + emit layoutChanged(); +} + +void BranchWatchTableModel::OnBranchNotOverwritten(const Core::CPUThreadGuard& guard) +{ + emit layoutAboutToBeChanged(); + m_branch_watch.IsolateNotOverwritten(guard); + PrefetchSymbols(); + emit layoutChanged(); +} + +void BranchWatchTableModel::OnWipeRecentHits() +{ + const int row_count = rowCount(); + if (row_count <= 0) + return; + static const QList roles = {Qt::DisplayRole}; + m_branch_watch.UpdateHitsSnapshot(); + const int last = row_count - 1; + emit dataChanged(createIndex(0, Column::RecentHits), createIndex(last, Column::RecentHits), + roles); +} + +void BranchWatchTableModel::OnWipeInspection() +{ + const int row_count = rowCount(); + if (row_count <= 0) + return; + static const QList roles = {Qt::FontRole, Qt::ForegroundRole}; + m_branch_watch.ClearSelectionInspection(); + const int last = row_count - 1; + emit dataChanged(createIndex(0, Column::Origin), createIndex(last, Column::Destination), roles); + emit dataChanged(createIndex(0, Column::OriginSymbol), createIndex(last, Column::DestinSymbol), + 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); +} + +void BranchWatchTableModel::Load(const Core::CPUThreadGuard& guard, std::FILE* file) +{ + emit layoutAboutToBeChanged(); + m_branch_watch.Load(guard, file); + PrefetchSymbols(); + emit layoutChanged(); +} + +void BranchWatchTableModel::UpdateSymbols() +{ + const int row_count = rowCount(); + if (row_count <= 0) + return; + static const QList roles = {Qt::DisplayRole}; + PrefetchSymbols(); + const int last = row_count - 1; + emit dataChanged(createIndex(0, Column::OriginSymbol), createIndex(last, Column::DestinSymbol), + roles); +} + +void BranchWatchTableModel::UpdateHits() +{ + const int row_count = rowCount(); + if (row_count <= 0) + return; + static const QList roles = {Qt::DisplayRole}; + const int last = row_count - 1; + emit dataChanged(createIndex(0, Column::RecentHits), createIndex(last, Column::TotalHits), roles); +} + +void BranchWatchTableModel::SetInspected(const QModelIndex& index) +{ + const int row = index.row(); + switch (index.column()) + { + case Column::Origin: + SetOriginInspected(m_branch_watch.GetSelection()[row].collection_ptr->first.origin_addr); + return; + case Column::Destination: + SetDestinInspected(m_branch_watch.GetSelection()[row].collection_ptr->first.destin_addr, false); + return; + case Column::OriginSymbol: + SetSymbolInspected(m_symbol_list[row].origin_addr.value(), false); + return; + case Column::DestinSymbol: + SetSymbolInspected(m_symbol_list[row].destin_addr.value(), false); + return; + } +} + +void BranchWatchTableModel::SetOriginInspected(u32 origin_addr) +{ + using Inspection = Core::BranchWatchSelectionInspection; + static const QList roles = {Qt::FontRole, Qt::ForegroundRole}; + + const Core::BranchWatch::Selection& selection = m_branch_watch.GetSelection(); + for (std::size_t i = 0; i < selection.size(); ++i) + { + if (selection[i].collection_ptr->first.origin_addr != origin_addr) + continue; + m_branch_watch.SetSelectedInspected(i, Inspection::SetOriginNOP); + const QModelIndex index = createIndex(static_cast(i), Column::Origin); + emit dataChanged(index, index, roles); + } +} + +void BranchWatchTableModel::SetDestinInspected(u32 destin_addr, bool nested) +{ + using Inspection = Core::BranchWatchSelectionInspection; + static const QList roles = {Qt::FontRole, Qt::ForegroundRole}; + + const Core::BranchWatch::Selection& selection = m_branch_watch.GetSelection(); + for (std::size_t i = 0; i < selection.size(); ++i) + { + if (selection[i].collection_ptr->first.destin_addr != destin_addr) + continue; + m_branch_watch.SetSelectedInspected(i, Inspection::SetDestinBLR); + const QModelIndex index = createIndex(static_cast(i), Column::Destination); + emit dataChanged(index, index, roles); + } + + if (nested) + return; + SetSymbolInspected(destin_addr, true); +} + +void BranchWatchTableModel::SetSymbolInspected(u32 symbol_addr, bool nested) +{ + using Inspection = Core::BranchWatchSelectionInspection; + static const QList roles = {Qt::FontRole, Qt::ForegroundRole}; + + for (qsizetype i = 0; i < m_symbol_list.size(); ++i) + { + const SymbolListValueType& value = m_symbol_list[i]; + if (value.origin_addr.isValid() && value.origin_addr.value() == symbol_addr) + { + m_branch_watch.SetSelectedInspected(i, Inspection::SetOriginSymbolBLR); + const QModelIndex index = createIndex(i, Column::OriginSymbol); + emit dataChanged(index, index, roles); + } + if (value.destin_addr.isValid() && value.destin_addr.value() == symbol_addr) + { + m_branch_watch.SetSelectedInspected(i, Inspection::SetDestinSymbolBLR); + const QModelIndex index = createIndex(i, Column::DestinSymbol); + emit dataChanged(index, index, roles); + } + } + + if (nested) + return; + SetDestinInspected(symbol_addr, true); +} + +void BranchWatchTableModel::PrefetchSymbols() +{ + if (m_branch_watch.GetRecordingPhase() != Core::BranchWatch::Phase::Reduction) + return; + + const Core::BranchWatch::Selection& selection = m_branch_watch.GetSelection(); + m_symbol_list.clear(); + m_symbol_list.reserve(selection.size()); + for (const Core::BranchWatch::Selection::value_type& value : selection) + { + const Core::BranchWatch::Collection::value_type* const kv = value.collection_ptr; + m_symbol_list.emplace_back(g_symbolDB.GetSymbolFromAddr(kv->first.origin_addr), + g_symbolDB.GetSymbolFromAddr(kv->first.destin_addr)); + } +} + +static QVariant GetValidSymbolStringVariant(const QVariant& symbol_name_v) +{ + if (symbol_name_v.isValid()) + return symbol_name_v; + return QStringLiteral(" --- "); +} + +static QString GetInstructionMnemonic(u32 hex) +{ + const std::string disas = Common::GekkoDisassembler::Disassemble(hex, 0); + const std::string::size_type split = disas.find('\t'); + // I wish I could disassemble just the mnemonic! + if (split == std::string::npos) + return QString::fromStdString(disas); + return QString::fromLatin1(disas.data(), split); +} + +static bool BranchIsUnconditional(UGeckoInstruction inst) +{ + if (inst.OPCD == 18) // bx + return true; + // If BranchWatch is doing its job, the input will be only bcx, bclrx, and bcctrx instructions. + DEBUG_ASSERT(inst.OPCD == 16 || (inst.OPCD == 19 && (inst.SUBOP10 == 16 || inst.SUBOP10 == 528))); + if ((inst.BO & 0b10100) == 0b10100) // 1z1zz - Branch always + return true; + return false; +} + +static QString GetConditionString(const Core::BranchWatch::Selection::value_type& value, + const Core::BranchWatch::Collection::value_type* kv) +{ + if (value.condition == false) + return BranchWatchTableModel::tr("false"); + if (BranchIsUnconditional(kv->first.original_inst)) + return QStringLiteral(""); + return BranchWatchTableModel::tr("true"); +} + +QVariant BranchWatchTableModel::DisplayRoleData(const QModelIndex& index) const +{ + switch (index.column()) + { + case Column::OriginSymbol: + return GetValidSymbolStringVariant(m_symbol_list[index.row()].origin_name); + case Column::DestinSymbol: + return GetValidSymbolStringVariant(m_symbol_list[index.row()].destin_name); + } + const Core::BranchWatch::Selection::value_type& value = + m_branch_watch.GetSelection()[index.row()]; + const Core::BranchWatch::Collection::value_type* kv = value.collection_ptr; + switch (index.column()) + { + case Column::Instruction: + return GetInstructionMnemonic(kv->first.original_inst.hex); + case Column::Condition: + return GetConditionString(value, kv); + case Column::Origin: + return QString::number(kv->first.origin_addr, 16); + case Column::Destination: + return QString::number(kv->first.destin_addr, 16); + case Column::RecentHits: + return QString::number(kv->second.total_hits - kv->second.hits_snapshot); + case Column::TotalHits: + return QString::number(kv->second.total_hits); + } + return QVariant(); +} + +QVariant BranchWatchTableModel::FontRoleData(const QModelIndex& index) const +{ + m_font.setBold([&]() -> bool { + switch (index.column()) + { + using Inspection = Core::BranchWatchSelectionInspection; + case Column::Origin: + return (m_branch_watch.GetSelection()[index.row()].inspection & Inspection::SetOriginNOP) != + Inspection{}; + case Column::Destination: + return (m_branch_watch.GetSelection()[index.row()].inspection & Inspection::SetDestinBLR) != + Inspection{}; + case Column::OriginSymbol: + return (m_branch_watch.GetSelection()[index.row()].inspection & + Inspection::SetOriginSymbolBLR) != Inspection{}; + case Column::DestinSymbol: + return (m_branch_watch.GetSelection()[index.row()].inspection & + Inspection::SetDestinSymbolBLR) != Inspection{}; + } + // Importantly, this code path avoids subscripting the selection to get an inspection value. + return false; + }()); + return m_font; +} + +QVariant BranchWatchTableModel::TextAlignmentRoleData(const QModelIndex& index) const +{ + // Qt enums become QFlags when operators are used. QVariant's constructors don't support QFlags. + switch (index.column()) + { + case Column::Condition: + case Column::Origin: + case Column::Destination: + return Qt::AlignCenter; + case Column::RecentHits: + case Column::TotalHits: + return QVariant::fromValue(Qt::AlignRight | Qt::AlignVCenter); + case Column::Instruction: + case Column::OriginSymbol: + case Column::DestinSymbol: + return QVariant::fromValue(Qt::AlignLeft | Qt::AlignVCenter); + } + return QVariant(); +} + +QVariant BranchWatchTableModel::ForegroundRoleData(const QModelIndex& index) const +{ + switch (index.column()) + { + using Inspection = Core::BranchWatchSelectionInspection; + case Column::Origin: + { + const Inspection inspection = m_branch_watch.GetSelection()[index.row()].inspection; + return (inspection & Inspection::SetOriginNOP) != Inspection{} ? QBrush(Qt::red) : QVariant(); + } + case Column::Destination: + { + const Inspection inspection = m_branch_watch.GetSelection()[index.row()].inspection; + return (inspection & Inspection::SetDestinBLR) != Inspection{} ? QBrush(Qt::red) : QVariant(); + } + case Column::OriginSymbol: + { + const Inspection inspection = m_branch_watch.GetSelection()[index.row()].inspection; + return (inspection & Inspection::SetOriginSymbolBLR) != Inspection{} ? QBrush(Qt::red) : + QVariant(); + } + case Column::DestinSymbol: + { + const Inspection inspection = m_branch_watch.GetSelection()[index.row()].inspection; + return (inspection & Inspection::SetDestinSymbolBLR) != Inspection{} ? QBrush(Qt::red) : + QVariant(); + } + } + // Importantly, this code path avoids subscripting the selection to get an inspection value. + return QVariant(); +} + +QVariant BranchWatchTableModel::ClickRoleData(const QModelIndex& index) const +{ + switch (index.column()) + { + case Column::OriginSymbol: + return m_symbol_list[index.row()].origin_addr; + case Column::DestinSymbol: + return m_symbol_list[index.row()].destin_addr; + } + const Core::BranchWatch::Collection::value_type* kv = + m_branch_watch.GetSelection()[index.row()].collection_ptr; + switch (index.column()) + { + case Column::Instruction: + return kv->first.original_inst.hex; + case Column::Origin: + return kv->first.origin_addr; + case Column::Destination: + return kv->first.destin_addr; + } + return QVariant(); +} + +// 0 == false, 1 == true, 2 == unconditional +static int GetConditionInteger(const Core::BranchWatch::Selection::value_type& value, + const Core::BranchWatch::Collection::value_type* kv) +{ + if (value.condition == false) + return 0; + if (BranchIsUnconditional(kv->first.original_inst)) + return 2; + return 1; +} + +QVariant BranchWatchTableModel::SortRoleData(const QModelIndex& index) const +{ + switch (index.column()) + { + case Column::OriginSymbol: + return m_symbol_list[index.row()].origin_name; + case Column::DestinSymbol: + return m_symbol_list[index.row()].destin_name; + } + const Core::BranchWatch::Selection::value_type& selection_value = + m_branch_watch.GetSelection()[index.row()]; + const Core::BranchWatch::Collection::value_type* kv = selection_value.collection_ptr; + switch (index.column()) + { + // QVariant's ctor only supports (unsigned) int and (unsigned) long long for some stupid reason. + // std::size_t is unsigned long on some platforms, which results in an ambiguous conversion. + case Column::Instruction: + return GetInstructionMnemonic(kv->first.original_inst.hex); + case Column::Condition: + return GetConditionInteger(selection_value, kv); + case Column::Origin: + return kv->first.origin_addr; + case Column::Destination: + return kv->first.destin_addr; + case Column::RecentHits: + return qulonglong{kv->second.total_hits - kv->second.hits_snapshot}; + case Column::TotalHits: + return qulonglong{kv->second.total_hits}; + } + return QVariant(); +} diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h new file mode 100644 index 000000000000..7b3cf42bb1ab --- /dev/null +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h @@ -0,0 +1,119 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +#include +#include +#include +#include + +#include "Common/SymbolDB.h" + +namespace Core +{ +class BranchWatch; +class CPUThreadGuard; +class System; +} // namespace Core + +namespace BranchWatchTableModelColumn +{ +enum EnumType : int +{ + Instruction = 0, + Condition, + Origin, + Destination, + RecentHits, + TotalHits, + OriginSymbol, + DestinSymbol, + NumberOfColumns, +}; +} + +namespace BranchWatchTableModelUserRole +{ +enum EnumType : int +{ + ClickRole = Qt::UserRole, + SortRole, +}; +} + +struct BranchWatchTableModelSymbolListValueType +{ + explicit BranchWatchTableModelSymbolListValueType(const Common::Symbol* const origin_symbol, + const Common::Symbol* const destin_symbol) + : origin_name(origin_symbol ? QString::fromStdString(origin_symbol->name) : QVariant{}), + origin_addr(origin_symbol ? origin_symbol->address : QVariant{}), + destin_name(destin_symbol ? QString::fromStdString(destin_symbol->name) : QVariant{}), + destin_addr(destin_symbol ? destin_symbol->address : QVariant{}) + { + } + QVariant origin_name, origin_addr; + QVariant destin_name, destin_addr; +}; + +class BranchWatchTableModel final : public QAbstractTableModel +{ + Q_OBJECT + +public: + using Column = BranchWatchTableModelColumn::EnumType; + using UserRole = BranchWatchTableModelUserRole::EnumType; + using SymbolListValueType = BranchWatchTableModelSymbolListValueType; + using SymbolList = QList; + + explicit BranchWatchTableModel(Core::System& system, Core::BranchWatch& branch_watch, + QObject* parent = nullptr) + : QAbstractTableModel(parent), m_system(system), m_branch_watch(branch_watch) + { + } + QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; + QVariant headerData(int section, Qt::Orientation orientation, + int role = Qt::DisplayRole) const override; + int rowCount(const QModelIndex& parent = QModelIndex{}) const override; + int columnCount(const QModelIndex& parent = QModelIndex{}) const override; + bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex{}) override; + void setFont(const QFont& font) { m_font = font; } + + void OnClearBranchWatch(const Core::CPUThreadGuard& guard); + void OnCodePathWasTaken(const Core::CPUThreadGuard& guard); + void OnCodePathNotTaken(const Core::CPUThreadGuard& guard); + void OnBranchWasOverwritten(const Core::CPUThreadGuard& guard); + 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); + void UpdateSymbols(); + void UpdateHits(); + void SetInspected(const QModelIndex& index); + + const SymbolList& GetSymbolList() const { return m_symbol_list; } + +private: + void SetOriginInspected(u32 origin_addr); + void SetDestinInspected(u32 destin_addr, bool nested); + void SetSymbolInspected(u32 symbol_addr, bool nested); + void PrefetchSymbols(); + + [[nodiscard]] QVariant DisplayRoleData(const QModelIndex& index) const; + [[nodiscard]] QVariant FontRoleData(const QModelIndex& index) const; + [[nodiscard]] QVariant TextAlignmentRoleData(const QModelIndex& index) const; + [[nodiscard]] QVariant ForegroundRoleData(const QModelIndex& index) const; + [[nodiscard]] QVariant ClickRoleData(const QModelIndex& index) const; + [[nodiscard]] QVariant SortRoleData(const QModelIndex& index) const; + + Core::System& m_system; + Core::BranchWatch& m_branch_watch; + + SymbolList m_symbol_list; + mutable QFont m_font; +}; diff --git a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp deleted file mode 100644 index 423036742d13..000000000000 --- a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp +++ /dev/null @@ -1,673 +0,0 @@ -// Copyright 2022 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "DolphinQt/Debugger/CodeDiffDialog.h" - -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "Common/FileUtil.h" -#include "Common/IOFile.h" -#include "Common/MsgHandler.h" -#include "Common/StringUtil.h" -#include "Core/ConfigManager.h" -#include "Core/Core.h" -#include "Core/Debugger/PPCDebugInterface.h" -#include "Core/HW/CPU.h" -#include "Core/PowerPC/JitInterface.h" -#include "Core/PowerPC/MMU.h" -#include "Core/PowerPC/PPCSymbolDB.h" -#include "Core/PowerPC/PowerPC.h" -#include "Core/PowerPC/Profiler.h" -#include "Core/System.h" - -#include "DolphinQt/Debugger/CodeWidget.h" -#include "DolphinQt/Host.h" -#include "DolphinQt/QtUtils/ModalMessageBox.h" -#include "DolphinQt/Settings.h" - -static const QString RECORD_BUTTON_STYLESHEET = QStringLiteral( - "QPushButton:checked { background-color: rgb(150, 0, 0); border-style: solid;" - "padding: 0px; border-width: 3px; border-color: rgb(150,0,0); color: rgb(255, 255, 255);}"); - -CodeDiffDialog::CodeDiffDialog(CodeWidget* parent) : QDialog(parent), m_code_widget(parent) -{ - setWindowTitle(tr("Code Diff Tool")); - CreateWidgets(); - auto& settings = Settings::GetQSettings(); - restoreGeometry(settings.value(QStringLiteral("diffdialog/geometry")).toByteArray()); - ConnectWidgets(); -} - -void CodeDiffDialog::reject() -{ - ClearData(); - auto& settings = Settings::GetQSettings(); - settings.setValue(QStringLiteral("diffdialog/geometry"), saveGeometry()); - QDialog::reject(); -} - -void CodeDiffDialog::CreateWidgets() -{ - bool running = Core::GetState() != Core::State::Uninitialized; - - auto* btns_layout = new QGridLayout; - m_exclude_btn = new QPushButton(tr("Code did not get executed")); - m_include_btn = new QPushButton(tr("Code has been executed")); - m_record_btn = new QPushButton(tr("Start Recording")); - m_record_btn->setCheckable(true); - m_record_btn->setStyleSheet(RECORD_BUTTON_STYLESHEET); - m_record_btn->setEnabled(running); - m_exclude_btn->setEnabled(false); - m_include_btn->setEnabled(false); - - btns_layout->addWidget(m_exclude_btn, 0, 0); - btns_layout->addWidget(m_include_btn, 0, 1); - btns_layout->addWidget(m_record_btn, 0, 2); - - auto* labels_layout = new QHBoxLayout; - m_exclude_size_label = new QLabel(tr("Excluded: 0")); - m_include_size_label = new QLabel(tr("Included: 0")); - - btns_layout->addWidget(m_exclude_size_label, 1, 0); - btns_layout->addWidget(m_include_size_label, 1, 1); - - m_matching_results_table = new QTableWidget(); - m_matching_results_table->setColumnCount(5); - m_matching_results_table->setHorizontalHeaderLabels( - {tr("Address"), tr("Total Hits"), tr("Hits"), tr("Symbol"), tr("Inspected")}); - m_matching_results_table->setSelectionMode(QAbstractItemView::SingleSelection); - m_matching_results_table->setSelectionBehavior(QAbstractItemView::SelectRows); - m_matching_results_table->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); - m_matching_results_table->setContextMenuPolicy(Qt::CustomContextMenu); - m_matching_results_table->setColumnWidth(0, 60); - m_matching_results_table->setColumnWidth(1, 60); - m_matching_results_table->setColumnWidth(2, 4); - m_matching_results_table->setColumnWidth(3, 210); - m_matching_results_table->setColumnWidth(4, 65); - m_matching_results_table->setCornerButtonEnabled(false); - m_autosave_check = new QCheckBox(tr("Auto Save")); - m_save_btn = new QPushButton(tr("Save")); - m_save_btn->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); - m_save_btn->setEnabled(running); - m_load_btn = new QPushButton(tr("Load")); - m_load_btn->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); - m_load_btn->setEnabled(running); - m_reset_btn = new QPushButton(tr("Reset All")); - m_reset_btn->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); - m_help_btn = new QPushButton(tr("Help")); - m_help_btn->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); - auto* bottom_controls_layout = new QHBoxLayout; - bottom_controls_layout->addWidget(m_reset_btn, 0, Qt::AlignLeft); - bottom_controls_layout->addStretch(); - bottom_controls_layout->addWidget(m_autosave_check, 0, Qt::AlignRight); - bottom_controls_layout->addWidget(m_save_btn, 0, Qt::AlignRight); - bottom_controls_layout->addWidget(m_load_btn, 0, Qt::AlignRight); - bottom_controls_layout->addWidget(m_help_btn, 0, Qt::AlignRight); - - auto* layout = new QVBoxLayout(); - layout->addLayout(btns_layout); - layout->addLayout(labels_layout); - layout->addWidget(m_matching_results_table); - layout->addLayout(bottom_controls_layout); - - setLayout(layout); - resize(515, 400); -} - -void CodeDiffDialog::ConnectWidgets() -{ -#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) - connect(QGuiApplication::styleHints(), &QStyleHints::colorSchemeChanged, this, - [this](Qt::ColorScheme colorScheme) { - m_record_btn->setStyleSheet(RECORD_BUTTON_STYLESHEET); - }); -#endif - connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, - [this](Core::State state) { UpdateButtons(state != Core::State::Uninitialized); }); - connect(m_record_btn, &QPushButton::toggled, this, &CodeDiffDialog::OnRecord); - connect(m_include_btn, &QPushButton::pressed, [this]() { Update(UpdateType::Include); }); - connect(m_exclude_btn, &QPushButton::pressed, [this]() { Update(UpdateType::Exclude); }); - connect(m_matching_results_table, &QTableWidget::itemClicked, [this]() { OnClickItem(); }); - connect(m_save_btn, &QPushButton::pressed, this, &CodeDiffDialog::SaveDataBackup); - connect(m_load_btn, &QPushButton::pressed, this, &CodeDiffDialog::LoadDataBackup); - connect(m_reset_btn, &QPushButton::pressed, this, &CodeDiffDialog::ClearData); - connect(m_help_btn, &QPushButton::pressed, this, &CodeDiffDialog::InfoDisp); - connect(m_matching_results_table, &CodeDiffDialog::customContextMenuRequested, this, - &CodeDiffDialog::OnContextMenu); -} - -void CodeDiffDialog::OnClickItem() -{ - UpdateItem(); - auto address = m_matching_results_table->currentItem()->data(Qt::UserRole).toUInt(); - m_code_widget->SetAddress(address, CodeViewWidget::SetAddressUpdate::WithDetailedUpdate); -} - -void CodeDiffDialog::SaveDataBackup() -{ - if (Core::GetState() == Core::State::Uninitialized) - { - ModalMessageBox::information(this, tr("Code Diff Tool"), - tr("Emulation must be started before saving a file.")); - return; - } - - if (m_include.empty()) - return; - - std::string filename = - File::GetUserPath(D_LOGS_IDX) + SConfig::GetInstance().GetGameID() + "_CodeDiff.txt"; - File::IOFile f(filename, "w"); - if (!f) - { - ModalMessageBox::information( - this, tr("Code Diff Tool"), - tr("Failed to save file to: %1").arg(QString::fromStdString(filename))); - return; - } - - // Copy list of BLR tested functions: - std::set address_blr; - for (int i = 0; i < m_matching_results_table->rowCount(); i++) - { - if (m_matching_results_table->item(i, 4)->text() == QStringLiteral("X")) - address_blr.insert(m_matching_results_table->item(i, 4)->data(Qt::UserRole).toUInt()); - } - - for (const auto& line : m_include) - { - bool blr = address_blr.contains(line.addr); - f.WriteString( - fmt::format("{} {} {} {:d} {}\n", line.addr, line.hits, line.total_hits, blr, line.symbol)); - } -} - -void CodeDiffDialog::LoadDataBackup() -{ - if (Core::GetState() == Core::State::Uninitialized) - { - ModalMessageBox::information(this, tr("Code Diff Tool"), - tr("Emulation must be started before loading a file.")); - return; - } - - if (g_symbolDB.IsEmpty()) - { - ModalMessageBox::warning( - this, tr("Code Diff Tool"), - tr("Symbol map not found.\n\nIf one does not exist, you can generate one from " - "the Menu bar:\nSymbols -> Generate Symbols From ->\n\tAddress | Signature " - "Database | RSO Modules")); - return; - } - - std::string filename = - File::GetUserPath(D_LOGS_IDX) + SConfig::GetInstance().GetGameID() + "_CodeDiff.txt"; - File::IOFile f(filename, "r"); - if (!f) - { - ModalMessageBox::information( - this, tr("Code Diff Tool"), - tr("Failed to find or open file: %1").arg(QString::fromStdString(filename))); - return; - }; - - ClearData(); - - std::set blr_addresses; - char line[512]; - while (fgets(line, 512, f.GetHandle())) - { - bool blr = false; - Diff temp; - std::istringstream iss(line); - iss.imbue(std::locale::classic()); - iss >> temp.addr >> temp.hits >> temp.total_hits >> blr >> std::ws; - std::getline(iss, temp.symbol); - - if (blr) - blr_addresses.insert(temp.addr); - - m_include.push_back(std::move(temp)); - } - - Update(UpdateType::Backup); - - for (int i = 0; i < m_matching_results_table->rowCount(); i++) - { - if (blr_addresses.contains(m_matching_results_table->item(i, 4)->data(Qt::UserRole).toUInt())) - MarkRowBLR(i); - } -} - -void CodeDiffDialog::ClearData() -{ - if (m_record_btn->isChecked()) - m_record_btn->toggle(); - ClearBlockCache(); - m_matching_results_table->clear(); - m_matching_results_table->setRowCount(0); - m_matching_results_table->setHorizontalHeaderLabels( - {tr("Address"), tr("Total Hits"), tr("Hits"), tr("Symbol"), tr("Inspected")}); - m_matching_results_table->setEditTriggers(QAbstractItemView::EditTrigger::NoEditTriggers); - m_exclude_size_label->setText(tr("Excluded: %1").arg(0)); - m_include_size_label->setText(tr("Included: %1").arg(0)); - m_exclude_btn->setEnabled(false); - m_include_btn->setEnabled(false); - m_include_active = false; - // Swap is used instead of clear for efficiency in the case of huge m_include/m_exclude - std::vector().swap(m_include); - std::vector().swap(m_exclude); - Core::System::GetInstance().GetJitInterface().SetProfilingState( - JitInterface::ProfilingState::Disabled); -} - -void CodeDiffDialog::ClearBlockCache() -{ - Core::State old_state = Core::GetState(); - - if (old_state == Core::State::Running) - Core::SetState(Core::State::Paused, false); - - Core::System::GetInstance().GetJitInterface().ClearCache(); - - if (old_state == Core::State::Running) - Core::SetState(Core::State::Running); -} - -void CodeDiffDialog::OnRecord(bool enabled) -{ - if (m_failed_requirements) - { - m_failed_requirements = false; - return; - } - - if (Core::GetState() == Core::State::Uninitialized) - { - ModalMessageBox::information(this, tr("Code Diff Tool"), - tr("Emulation must be started to record.")); - m_failed_requirements = true; - m_record_btn->setChecked(false); - return; - } - - if (g_symbolDB.IsEmpty()) - { - ModalMessageBox::warning( - this, tr("Code Diff Tool"), - tr("Symbol map not found.\n\nIf one does not exist, you can generate one from " - "the Menu bar:\nSymbols -> Generate Symbols From ->\n\tAddress | Signature " - "Database | RSO Modules")); - m_failed_requirements = true; - m_record_btn->setChecked(false); - return; - } - - JitInterface::ProfilingState state; - - if (enabled) - { - ClearBlockCache(); - m_record_btn->setText(tr("Stop Recording")); - state = JitInterface::ProfilingState::Enabled; - m_exclude_btn->setEnabled(true); - m_include_btn->setEnabled(true); - } - else - { - ClearBlockCache(); - m_record_btn->setText(tr("Start Recording")); - state = JitInterface::ProfilingState::Disabled; - m_exclude_btn->setEnabled(false); - m_include_btn->setEnabled(false); - } - - m_record_btn->update(); - Core::System::GetInstance().GetJitInterface().SetProfilingState(state); -} - -void CodeDiffDialog::OnInclude() -{ - const auto recorded_symbols = CalculateSymbolsFromProfile(); - - if (recorded_symbols.empty()) - return; - - if (m_include.empty() && m_exclude.empty()) - { - m_include = recorded_symbols; - m_include_active = true; - } - else if (m_include.empty()) - { - // If include becomes empty after having items on it, don't refill it until after a reset. - if (m_include_active) - return; - - // If we are building include for the first time and we have an exlcude list, then include = - // recorded - excluded. - m_include = recorded_symbols; - RemoveMatchingSymbolsFromIncludes(m_exclude); - m_include_active = true; - } - else - { - // If include already exists, keep items that are in both include and recorded. Exclude list - // becomes irrelevant. - RemoveMissingSymbolsFromIncludes(recorded_symbols); - } -} - -void CodeDiffDialog::OnExclude() -{ - const auto recorded_symbols = CalculateSymbolsFromProfile(); - if (m_include.empty() && m_exclude.empty()) - { - m_exclude = recorded_symbols; - } - else if (m_include.empty()) - { - // If there is only an exclude list, update it. - for (auto& iter : recorded_symbols) - { - auto pos = std::lower_bound(m_exclude.begin(), m_exclude.end(), iter.symbol); - - if (pos == m_exclude.end() || pos->symbol != iter.symbol) - m_exclude.insert(pos, iter); - } - } - else - { - // If include already exists, the exclude list will have been used to trim it, so the exclude - // list is now irrelevant, as anythng not on the include list is effectively excluded. - // Exclude/subtract recorded items from the include list. - RemoveMatchingSymbolsFromIncludes(recorded_symbols); - } -} - -std::vector CodeDiffDialog::CalculateSymbolsFromProfile() const -{ - Profiler::ProfileStats prof_stats; - auto& blockstats = prof_stats.block_stats; - Core::System::GetInstance().GetJitInterface().GetProfileResults(&prof_stats); - std::vector current; - current.reserve(20000); - - // Convert blockstats to smaller struct Diff. Exclude repeat functions via symbols. - for (const auto& iter : blockstats) - { - std::string symbol = g_symbolDB.GetDescription(iter.addr); - if (!std::any_of(current.begin(), current.end(), - [&symbol](const Diff& v) { return v.symbol == symbol; })) - { - current.push_back(Diff{ - .addr = iter.addr, - .symbol = std::move(symbol), - .hits = static_cast(iter.run_count), - .total_hits = static_cast(iter.run_count), - }); - } - } - - std::sort(current.begin(), current.end(), - [](const Diff& v1, const Diff& v2) { return (v1.symbol < v2.symbol); }); - - return current; -} - -void CodeDiffDialog::RemoveMissingSymbolsFromIncludes(const std::vector& symbol_diff) -{ - m_include.erase(std::remove_if(m_include.begin(), m_include.end(), - [&](const Diff& v) { - auto arg = std::none_of( - symbol_diff.begin(), symbol_diff.end(), [&](const Diff& p) { - return p.symbol == v.symbol || p.addr == v.addr; - }); - return arg; - }), - m_include.end()); - for (auto& original_includes : m_include) - { - auto pos = std::lower_bound(symbol_diff.begin(), symbol_diff.end(), original_includes.symbol); - if (pos != symbol_diff.end() && - (pos->symbol == original_includes.symbol || pos->addr == original_includes.addr)) - { - original_includes.total_hits += pos->hits; - original_includes.hits = pos->hits; - } - } -} - -void CodeDiffDialog::RemoveMatchingSymbolsFromIncludes(const std::vector& symbol_list) -{ - m_include.erase(std::remove_if(m_include.begin(), m_include.end(), - [&](const Diff& i) { - return std::any_of( - symbol_list.begin(), symbol_list.end(), [&](const Diff& s) { - return i.symbol == s.symbol || i.addr == s.addr; - }); - }), - m_include.end()); -} - -void CodeDiffDialog::Update(UpdateType type) -{ - // Wrap everything in a pause - Core::State old_state = Core::GetState(); - if (old_state == Core::State::Running) - Core::SetState(Core::State::Paused, false); - - // Main process - if (type == UpdateType::Include) - { - OnInclude(); - } - else if (type == UpdateType::Exclude) - { - OnExclude(); - } - - if (type != UpdateType::Backup && m_autosave_check->isChecked() && !m_include.empty()) - SaveDataBackup(); - - const auto create_item = [](const QString& string = {}, const u32 address = 0x00000000) { - QTableWidgetItem* item = new QTableWidgetItem(string); - item->setData(Qt::UserRole, address); - item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable); - return item; - }; - - int i = 0; - m_matching_results_table->clear(); - m_matching_results_table->setRowCount(i); - m_matching_results_table->setHorizontalHeaderLabels( - {tr("Address"), tr("Total Hits"), tr("Hits"), tr("Symbol"), tr("Inspected")}); - - for (auto& iter : m_include) - { - m_matching_results_table->setRowCount(i + 1); - - QString fix_sym = QString::fromStdString(iter.symbol); - fix_sym.replace(QStringLiteral("\t"), QStringLiteral(" ")); - - m_matching_results_table->setItem( - i, 0, create_item(QStringLiteral("%1").arg(iter.addr, 1, 16), iter.addr)); - m_matching_results_table->setItem( - i, 1, create_item(QStringLiteral("%1").arg(iter.total_hits), iter.addr)); - m_matching_results_table->setItem(i, 2, - create_item(QStringLiteral("%1").arg(iter.hits), iter.addr)); - m_matching_results_table->setItem(i, 3, - create_item(QStringLiteral("%1").arg(fix_sym), iter.addr)); - m_matching_results_table->setItem(i, 4, create_item(QStringLiteral(""), iter.addr)); - i++; - } - - // If we have ruled out all functions from being included. - if (m_include_active && m_include.empty()) - { - m_matching_results_table->setRowCount(1); - m_matching_results_table->setItem(0, 3, create_item(tr("No possible functions left. Reset."))); - } - - m_exclude_size_label->setText(tr("Excluded: %1").arg(m_exclude.size())); - m_include_size_label->setText(tr("Included: %1").arg(m_include.size())); - - Core::System::GetInstance().GetJitInterface().ClearCache(); - if (old_state == Core::State::Running) - Core::SetState(Core::State::Running); -} - -void CodeDiffDialog::InfoDisp() -{ - ModalMessageBox::information( - this, tr("Code Diff Tool Help"), - tr("Used to find functions based on when they should be running.\nSimilar to Cheat Engine " - "Ultimap.\n" - "A symbol map must be loaded prior to use.\n" - "Include/Exclude lists will persist on ending/restarting emulation.\nThese lists " - "will not persist on Dolphin close." - "\n\n'Start Recording': " - "keeps track of what functions run.\n'Stop Recording': erases current " - "recording without any change to the lists.\n'Code did not get executed': click while " - "recording, will add recorded functions to an exclude " - "list, then reset the recording list.\n'Code has been executed': click while recording, " - "will add recorded function to an include list, then reset the recording list.\n\nAfter " - "you use " - "both exclude and include once, the exclude list will be subtracted from the include " - "list " - "and any includes left over will be displayed.\nYou can continue to use " - "'Code did not get executed'/'Code has been executed' to narrow down the " - "results.\n\n" - "Saving will store the current list in Dolphin's Log folder (File -> Open User " - "Folder)")); - ModalMessageBox::information( - this, tr("Code Diff Tool Help"), - tr("Example:\n" - "You want to find a function that runs when HP is modified.\n1. Start recording and " - "play the game without letting HP be modified, then press 'Code did not get " - "executed'.\n2. Immediately gain/lose HP and press 'Code has been executed'.\n3. Repeat " - "1 or 2 to " - "narrow down the results.\nIncludes (Code has been executed) should " - "have short recordings focusing on what you want.\n\nPressing 'Code has been " - "executed' twice will only keep functions that ran for both recordings. Hits will update " - "to reflect the last recording's " - "number of Hits. Total Hits will reflect the total number of " - "times a function has been executed until the lists are cleared with Reset.\n\nRight " - "click -> 'Set blr' will place a " - "blr at the top of the symbol.\n")); -} - -void CodeDiffDialog::OnContextMenu() -{ - if (m_matching_results_table->currentItem() == nullptr) - return; - UpdateItem(); - QMenu* menu = new QMenu(this); - menu->addAction(tr("&Go to start of function"), this, &CodeDiffDialog::OnGoTop); - menu->addAction(tr("Set &blr"), this, &CodeDiffDialog::OnSetBLR); - menu->addAction(tr("&Delete"), this, &CodeDiffDialog::OnDelete); - menu->exec(QCursor::pos()); -} - -void CodeDiffDialog::OnGoTop() -{ - auto item = m_matching_results_table->currentItem(); - if (!item) - return; - Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(item->data(Qt::UserRole).toUInt()); - if (!symbol) - return; - m_code_widget->SetAddress(symbol->address, CodeViewWidget::SetAddressUpdate::WithDetailedUpdate); -} - -void CodeDiffDialog::OnDelete() -{ - // Delete from include list and qtable widget - auto item = m_matching_results_table->currentItem(); - if (!item) - return; - int row = m_matching_results_table->row(item); - if (row == -1) - return; - // TODO: If/when sorting is ever added, .erase needs to find item position instead; leaving as is - // for performance - if (!m_include.empty()) - { - m_include.erase(m_include.begin() + row); - } - m_matching_results_table->removeRow(row); -} - -void CodeDiffDialog::OnSetBLR() -{ - auto item = m_matching_results_table->currentItem(); - if (!item) - return; - - Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(item->data(Qt::UserRole).toUInt()); - if (!symbol) - return; - - MarkRowBLR(item->row()); - if (m_autosave_check->isChecked()) - SaveDataBackup(); - - { - auto& system = Core::System::GetInstance(); - Core::CPUThreadGuard guard(system); - system.GetPowerPC().GetDebugInterface().SetPatch(guard, symbol->address, 0x4E800020); - } - - m_code_widget->Update(); -} - -void CodeDiffDialog::MarkRowBLR(int row) -{ - m_matching_results_table->item(row, 0)->setForeground(QBrush(Qt::red)); - m_matching_results_table->item(row, 1)->setForeground(QBrush(Qt::red)); - m_matching_results_table->item(row, 2)->setForeground(QBrush(Qt::red)); - m_matching_results_table->item(row, 3)->setForeground(QBrush(Qt::red)); - m_matching_results_table->item(row, 4)->setForeground(QBrush(Qt::red)); - m_matching_results_table->item(row, 4)->setText(QStringLiteral("X")); -} - -void CodeDiffDialog::UpdateItem() -{ - QTableWidgetItem* item = m_matching_results_table->currentItem(); - if (!item) - return; - - int row = m_matching_results_table->row(item); - if (row == -1) - return; - uint address = item->data(Qt::UserRole).toUInt(); - - auto symbolName = g_symbolDB.GetDescription(address); - if (symbolName == " --- ") - return; - - QString newName = - QString::fromStdString(symbolName).replace(QStringLiteral("\t"), QStringLiteral(" ")); - m_matching_results_table->item(row, 3)->setText(newName); -} - -void CodeDiffDialog::UpdateButtons(bool running) -{ - m_save_btn->setEnabled(running); - m_load_btn->setEnabled(running); - m_record_btn->setEnabled(running); -} diff --git a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h deleted file mode 100644 index c22c63e1ad6a..000000000000 --- a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright 2022 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include -#include -#include -#include "Common/CommonTypes.h" - -class CodeWidget; -class QLabel; -class QPushButton; -class QCheckBox; -class QTableWidget; - -struct Diff -{ - u32 addr = 0; - std::string symbol; - u32 hits = 0; - u32 total_hits = 0; - - bool operator<(const std::string& val) const { return symbol < val; } -}; - -class CodeDiffDialog : public QDialog -{ - Q_OBJECT - -public: - explicit CodeDiffDialog(CodeWidget* parent); - void reject() override; - -private: - enum class UpdateType - { - Include, - Exclude, - Backup - }; - - void CreateWidgets(); - void ConnectWidgets(); - void SaveDataBackup(); - void LoadDataBackup(); - void ClearData(); - void ClearBlockCache(); - void OnClickItem(); - void OnRecord(bool enabled); - std::vector CalculateSymbolsFromProfile() const; - void OnInclude(); - void OnExclude(); - void RemoveMissingSymbolsFromIncludes(const std::vector& symbol_diff); - void RemoveMatchingSymbolsFromIncludes(const std::vector& symbol_list); - void Update(UpdateType type); - void InfoDisp(); - - void OnContextMenu(); - - void OnGoTop(); - void OnDelete(); - void OnSetBLR(); - - void MarkRowBLR(int row); - void UpdateItem(); - void UpdateButtons(bool running); - - QTableWidget* m_matching_results_table; - QCheckBox* m_autosave_check; - QLabel* m_exclude_size_label; - QLabel* m_include_size_label; - QPushButton* m_exclude_btn; - QPushButton* m_include_btn; - QPushButton* m_record_btn; - QPushButton* m_reset_btn; - QPushButton* m_save_btn; - QPushButton* m_load_btn; - QPushButton* m_help_btn; - CodeWidget* m_code_widget; - - std::vector m_exclude; - std::vector m_include; - bool m_failed_requirements = false; - bool m_include_active = false; -}; diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 0bf2937dbfa5..1b9989e401d4 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -27,6 +27,7 @@ #include "Core/PowerPC/PPCSymbolDB.h" #include "Core/PowerPC/PowerPC.h" #include "Core/System.h" +#include "DolphinQt/Debugger/BranchWatchDialog.h" #include "DolphinQt/Host.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" #include "DolphinQt/Settings.h" @@ -35,7 +36,10 @@ static const QString BOX_SPLITTER_STYLESHEET = QStringLiteral( "QSplitter::handle { border-top: 1px dashed black; width: 1px; margin-left: 10px; " "margin-right: 10px; }"); -CodeWidget::CodeWidget(QWidget* parent) : QDockWidget(parent), m_system(Core::System::GetInstance()) +CodeWidget::CodeWidget(QWidget* parent) + : QDockWidget(parent), m_system(Core::System::GetInstance()), + m_branch_watch_dialog( + new BranchWatchDialog(m_system, m_system.GetPowerPC().GetBranchWatch(), this)) { setWindowTitle(tr("Code")); setObjectName(QStringLiteral("code")); @@ -105,7 +109,7 @@ void CodeWidget::CreateWidgets() layout->setSpacing(0); m_search_address = new QLineEdit; - m_code_diff = new QPushButton(tr("Diff")); + m_branch_watch = new QPushButton(tr("Branch Watch")); m_code_view = new CodeViewWidget; m_search_address->setPlaceholderText(tr("Search Address")); @@ -149,7 +153,7 @@ void CodeWidget::CreateWidgets() m_code_splitter->addWidget(m_code_view); layout->addWidget(m_search_address, 0, 0); - layout->addWidget(m_code_diff, 0, 2); + layout->addWidget(m_branch_watch, 0, 2); layout->addWidget(m_code_splitter, 1, 0, -1, -1); QWidget* widget = new QWidget(this); @@ -181,7 +185,7 @@ void CodeWidget::ConnectWidgets() }); connect(m_search_callstack, &QLineEdit::textChanged, this, &CodeWidget::UpdateCallstack); - connect(m_code_diff, &QPushButton::pressed, this, &CodeWidget::OnDiff); + connect(m_branch_watch, &QPushButton::pressed, this, &CodeWidget::OnBranchWatchDialog); connect(m_symbols_list, &QListWidget::itemPressed, this, &CodeWidget::OnSelectSymbol); connect(m_callstack_list, &QListWidget::itemPressed, this, &CodeWidget::OnSelectCallstack); @@ -209,15 +213,11 @@ void CodeWidget::ConnectWidgets() connect(m_code_view, &CodeViewWidget::ShowMemory, this, &CodeWidget::ShowMemory); } -void CodeWidget::OnDiff() +void CodeWidget::OnBranchWatchDialog() { - if (!m_diff_dialog) - m_diff_dialog = new CodeDiffDialog(this); - m_diff_dialog->setWindowFlag(Qt::WindowMinimizeButtonHint); - SetQWidgetWindowDecorations(m_diff_dialog); - m_diff_dialog->show(); - m_diff_dialog->raise(); - m_diff_dialog->activateWindow(); + m_branch_watch_dialog->open(); + m_branch_watch_dialog->raise(); + m_branch_watch_dialog->activateWindow(); } void CodeWidget::OnSearchAddress() @@ -394,6 +394,10 @@ void CodeWidget::UpdateSymbols() } m_symbols_list->sortItems(); + + // TODO: There seems to be a lack of a ubiquitous signal for when symbols change. + // This is the best location to catch the signals from MenuBar and CodeViewWidget. + m_branch_watch_dialog->UpdateSymbols(); } void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol) @@ -464,6 +468,9 @@ void CodeWidget::Step() power_pc.SetMode(old_mode); Core::DisplayMessage(tr("Step successful!").toStdString(), 2000); // Will get a UpdateDisasmDialog(), don't update the GUI here. + + // TODO: Step doesn't cause EmulationStateChanged to be emitted, so it has to call this manually. + m_branch_watch_dialog->Update(); } void CodeWidget::StepOver() diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.h b/Source/Core/DolphinQt/Debugger/CodeWidget.h index 1e933a8c70dd..e0a5679bfb16 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.h @@ -7,9 +7,9 @@ #include #include "Common/CommonTypes.h" -#include "DolphinQt/Debugger/CodeDiffDialog.h" #include "DolphinQt/Debugger/CodeViewWidget.h" +class BranchWatchDialog; class QCloseEvent; class QLineEdit; class QShowEvent; @@ -41,7 +41,7 @@ class CodeWidget : public QDockWidget void ShowPC(); void SetPC(); - void OnDiff(); + void OnBranchWatchDialog(); void ToggleBreakpoint(); void AddBreakpoint(); void SetAddress(u32 address, CodeViewWidget::SetAddressUpdate update); @@ -72,9 +72,9 @@ class CodeWidget : public QDockWidget Core::System& m_system; - CodeDiffDialog* m_diff_dialog = nullptr; + BranchWatchDialog* m_branch_watch_dialog; QLineEdit* m_search_address; - QPushButton* m_code_diff; + QPushButton* m_branch_watch; QLineEdit* m_search_callstack; QListWidget* m_callstack_list; diff --git a/Source/Core/DolphinQt/DolphinQt.vcxproj b/Source/Core/DolphinQt/DolphinQt.vcxproj index 063a04888072..4cdb14fb3342 100644 --- a/Source/Core/DolphinQt/DolphinQt.vcxproj +++ b/Source/Core/DolphinQt/DolphinQt.vcxproj @@ -137,9 +137,10 @@ + + - @@ -349,9 +350,10 @@ + + - diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp index eff685e5c784..5ff9364dd04d 100644 --- a/Source/Core/UICommon/UICommon.cpp +++ b/Source/Core/UICommon/UICommon.cpp @@ -74,6 +74,8 @@ static void CreateDumpPath(std::string path) File::CreateFullPath(File::GetUserPath(D_DUMPFRAMES_IDX)); File::CreateFullPath(File::GetUserPath(D_DUMPOBJECTS_IDX)); File::CreateFullPath(File::GetUserPath(D_DUMPTEXTURES_IDX)); + File::CreateFullPath(File::GetUserPath(D_DUMPDEBUG_IDX)); + File::CreateFullPath(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)); } static void CreateLoadPath(std::string path) @@ -253,6 +255,8 @@ void CreateDirectories() File::CreateFullPath(File::GetUserPath(D_DUMPDSP_IDX)); File::CreateFullPath(File::GetUserPath(D_DUMPSSL_IDX)); File::CreateFullPath(File::GetUserPath(D_DUMPTEXTURES_IDX)); + File::CreateFullPath(File::GetUserPath(D_DUMPDEBUG_IDX)); + File::CreateFullPath(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)); File::CreateFullPath(File::GetUserPath(D_GAMESETTINGS_IDX)); File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX)); File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + USA_DIR DIR_SEP); From 8eeb93d51acaaf4bc4ae6672ee9e898246b5f65c Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Tue, 27 Feb 2024 12:03:38 -0800 Subject: [PATCH 043/223] CodeWidget: Simplify Case-Insensitive Contains --- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 0bf2937dbfa5..092c539bfbcf 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -359,7 +359,7 @@ void CodeWidget::UpdateCallstack() { const QString name = QString::fromStdString(frame.Name.substr(0, frame.Name.length() - 1)); - if (name.toUpper().indexOf(filter.toUpper()) == -1) + if (!name.contains(filter, Qt::CaseInsensitive)) continue; auto* item = new QListWidgetItem(name); @@ -389,7 +389,7 @@ void CodeWidget::UpdateSymbols() item->setData(Qt::UserRole, symbol.second.address); - if (name.toUpper().indexOf(m_symbol_filter.toUpper()) != -1) + if (name.contains(m_symbol_filter, Qt::CaseInsensitive)) m_symbols_list->addItem(item); } @@ -411,7 +411,7 @@ void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol) const QString name = QString::fromStdString(fmt::format("> {} ({:08x})", call_symbol->name, addr)); - if (name.toUpper().indexOf(filter.toUpper()) == -1) + if (!name.contains(filter, Qt::CaseInsensitive)) continue; auto* item = new QListWidgetItem(name); @@ -436,7 +436,7 @@ void CodeWidget::UpdateFunctionCallers(const Common::Symbol* symbol) const QString name = QString::fromStdString(fmt::format("< {} ({:08x})", caller_symbol->name, addr)); - if (name.toUpper().indexOf(filter.toUpper()) == -1) + if (!name.contains(filter, Qt::CaseInsensitive)) continue; auto* item = new QListWidgetItem(name); From 7bf77a56f48ebc42fd94eac9a7f557bbc093f12a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 28 Feb 2024 10:20:03 -0500 Subject: [PATCH 044/223] VertexManagerBase: Initialize m_ticks_elapsed on construction Ensures that this always has a deterministic value on construction like everything else in the class. --- Source/Core/VideoCommon/VertexManagerBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/VertexManagerBase.h b/Source/Core/VideoCommon/VertexManagerBase.h index 50032419bd85..c1248972da8b 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.h +++ b/Source/Core/VideoCommon/VertexManagerBase.h @@ -247,7 +247,7 @@ class VertexManagerBase bool m_allow_background_execution = true; std::unique_ptr m_custom_shader_cache; - u64 m_ticks_elapsed; + u64 m_ticks_elapsed = 0; Common::EventHook m_frame_end_event; Common::EventHook m_after_present_event; From e52109a356bdac6fb3563bf50af740446a883664 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 28 Feb 2024 10:26:18 -0500 Subject: [PATCH 045/223] DSPJitRegCache: Take DynamicReg instances by reference in FlushRegs() A DynamicReg instance is 80 bytes in size, so this just gets rid of some unnecessary copy churn. --- Source/Core/Core/DSP/Jit/x64/DSPJitRegCache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/DSP/Jit/x64/DSPJitRegCache.cpp b/Source/Core/Core/DSP/Jit/x64/DSPJitRegCache.cpp index a497cf311f2f..3078e3671494 100644 --- a/Source/Core/Core/DSP/Jit/x64/DSPJitRegCache.cpp +++ b/Source/Core/Core/DSP/Jit/x64/DSPJitRegCache.cpp @@ -258,8 +258,8 @@ void DSPJitRegCache::FlushRegs(DSPJitRegCache& cache, bool emit) // free all host regs that are not used for the same guest reg for (size_t i = 0; i < m_regs.size(); i++) { - const auto reg = m_regs[i]; - const auto cached_reg = cache.m_regs[i]; + const auto& reg = m_regs[i]; + const auto& cached_reg = cache.m_regs[i]; if (cached_reg.loc.GetSimpleReg() != reg.loc.GetSimpleReg() && reg.loc.IsSimpleReg()) { From 41b19e262f2778ddd022f91e6bd4fe911788e376 Mon Sep 17 00:00:00 2001 From: Filoppi Date: Mon, 18 Dec 2023 02:37:19 +0200 Subject: [PATCH 046/223] Add custom relative and raw (squared pixels) aspect ratio modes --- .../Config/Graphics/GeneralWidget.cpp | 35 ++++++++------ Source/Core/DolphinQt/HotkeyScheduler.cpp | 6 +++ Source/Core/VideoCommon/Present.cpp | 47 ++++++++++++++----- Source/Core/VideoCommon/VideoConfig.h | 10 ++-- 4 files changed, 69 insertions(+), 29 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp index 5981c2134869..c419cabc97dd 100644 --- a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp @@ -55,9 +55,9 @@ void GeneralWidget::CreateWidgets() m_video_layout = new QGridLayout(); m_backend_combo = new ToolTipComboBox(); - m_aspect_combo = new ConfigChoice( - {tr("Auto"), tr("Force 16:9"), tr("Force 4:3"), tr("Stretch to Window"), tr("Custom")}, - Config::GFX_ASPECT_RATIO); + m_aspect_combo = new ConfigChoice({tr("Auto"), tr("Force 16:9"), tr("Force 4:3"), + tr("Stretch to Window"), tr("Custom"), tr("Custom (Stretch)")}, + Config::GFX_ASPECT_RATIO); m_custom_aspect_label = new QLabel(tr("Custom Aspect Ratio:")); m_custom_aspect_label->setHidden(true); constexpr int MAX_CUSTOM_ASPECT_RATIO_RESOLUTION = 10000; @@ -155,7 +155,8 @@ void GeneralWidget::ConnectWidgets() emit BackendChanged(QString::fromStdString(Config::Get(Config::MAIN_GFX_BACKEND))); }); connect(m_aspect_combo, qOverload(&QComboBox::currentIndexChanged), this, [&](int index) { - const bool is_custom_aspect_ratio = (index == static_cast(AspectMode::Custom)); + const bool is_custom_aspect_ratio = (index == static_cast(AspectMode::Custom)) || + (index == static_cast(AspectMode::CustomStretch)); m_custom_aspect_width->setEnabled(is_custom_aspect_ratio); m_custom_aspect_height->setEnabled(is_custom_aspect_ratio); m_custom_aspect_label->setHidden(!is_custom_aspect_ratio); @@ -170,7 +171,9 @@ void GeneralWidget::LoadSettings() m_backend_combo->setCurrentIndex(m_backend_combo->findData( QVariant(QString::fromStdString(Config::Get(Config::MAIN_GFX_BACKEND))))); - const bool is_custom_aspect_ratio = (Config::Get(Config::GFX_ASPECT_RATIO) == AspectMode::Custom); + const bool is_custom_aspect_ratio = + (Config::Get(Config::GFX_ASPECT_RATIO) == AspectMode::Custom) || + (Config::Get(Config::GFX_ASPECT_RATIO) == AspectMode::CustomStretch); m_custom_aspect_width->setEnabled(is_custom_aspect_ratio); m_custom_aspect_height->setEnabled(is_custom_aspect_ratio); m_custom_aspect_label->setHidden(!is_custom_aspect_ratio); @@ -247,15 +250,19 @@ void GeneralWidget::AddDescriptions() QT_TR_NOOP("Uses the main Dolphin window for rendering rather than " "a separate render window.

If unsure, leave " "this unchecked."); - static const char TR_ASPECT_RATIO_DESCRIPTION[] = - QT_TR_NOOP("Selects which aspect ratio to use when rendering.
" - "Each game can have a slightly different native aspect ratio." - "

Auto: Uses the native aspect ratio" - "
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." - "
Force 4:3: Mimics a standard 4:3 analog TV." - "
Stretch to Window: Stretches the picture to the window size." - "
Custom: For games running with specific custom aspect ratio cheats.

" - "If unsure, select Auto."); + static const char TR_ASPECT_RATIO_DESCRIPTION[] = QT_TR_NOOP( + "Selects which aspect ratio to use when drawing on the render window.
" + "Each game can have a slightly different native aspect ratio.
They can vary by " + "scene and settings and rarely ever exactly match 4:3 or 16:9." + "

Auto: Uses the native aspect ratio" + "

Force 16:9: Mimics an analog TV with a widescreen aspect ratio." + "

Force 4:3: Mimics a standard 4:3 analog TV." + "

Stretch to Window: Stretches the picture to the window size." + "

Custom: Forces the specified aspect ratio." + "
This is mostly intended to be used with aspect ratio cheats/mods." + "

Custom (Stretch): Similar to `Custom` but not relative to the " + "title's native aspect ratio.
This is not meant to be used under normal circumstances." + "

If unsure, select Auto."); static const char TR_VSYNC_DESCRIPTION[] = QT_TR_NOOP( "Waits for vertical blanks in order to prevent tearing.

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

If unsure, leave " diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index fc485a7de213..ff18fa578bf0 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -410,6 +410,12 @@ void HotkeyScheduler::Run() case AspectMode::Custom: OSD::AddMessage("Custom"); break; + case AspectMode::CustomStretch: + OSD::AddMessage("Custom (Stretch)"); + break; + case AspectMode::Raw: + OSD::AddMessage("Raw (Square Pixels)"); + break; case AspectMode::Auto: default: OSD::AddMessage("Auto"); diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index d475c15c249b..0cc19d6e1470 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -356,12 +356,20 @@ float Presenter::CalculateDrawAspectRatio(bool allow_stretch) const { return SourceAspectRatioToWidescreen(source_aspect_ratio); } - // For the "custom" mode, we force the exact target aspect ratio, without - // acknowleding the difference between the source aspect ratio and 4:3. else if (aspect_mode == AspectMode::Custom) + { + return source_aspect_ratio * (g_ActiveConfig.GetCustomAspectRatio() / (4.0f / 3.0f)); + } + // For the "custom stretch" mode, we force the exact target aspect ratio, without + // acknowleding the difference between the source aspect ratio and 4:3. + else if (aspect_mode == AspectMode::CustomStretch) { return g_ActiveConfig.GetCustomAspectRatio(); } + else if (aspect_mode == AspectMode::Raw) + { + return m_xfb_entry ? (static_cast(m_last_xfb_width) / m_last_xfb_height) : 1.f; + } return source_aspect_ratio; } @@ -428,9 +436,11 @@ void* Presenter::GetNewSurfaceHandle() u32 Presenter::AutoIntegralScale() const { - // Take the source resolution (XFB) and stretch it on the target aspect ratio. + // Take the source/native resolution (XFB) and stretch it on the target (window) aspect ratio. // If the target resolution is larger (on either x or y), we scale the source // by a integer multiplier until it won't have to be scaled up anymore. + // NOTE: this might conflict with "Config::MAIN_RENDER_WINDOW_AUTOSIZE", + // as they mutually influence each other. u32 source_width = m_last_xfb_width; u32 source_height = m_last_xfb_height; const u32 target_width = m_target_rectangle.GetWidth(); @@ -477,7 +487,7 @@ std::tuple Presenter::ApplyStandardAspectCrop(float width, float h if (!allow_stretch && aspect_mode == AspectMode::Stretch) aspect_mode = AspectMode::Auto; - if (!g_ActiveConfig.bCrop || aspect_mode == AspectMode::Stretch) + if (!g_ActiveConfig.bCrop || aspect_mode == AspectMode::Stretch || aspect_mode == AspectMode::Raw) return {width, height}; // Force aspect ratios by cropping the image. @@ -495,9 +505,12 @@ std::tuple Presenter::ApplyStandardAspectCrop(float width, float h case AspectMode::ForceStandard: expected_aspect = 4.0f / 3.0f; break; - // There should be no cropping needed in the custom case, - // as output should always exactly match the target aspect ratio + // For the custom (relative) case, we want to crop from the native aspect ratio + // to the specific target one, as they likely have a small difference case AspectMode::Custom: + // There should be no cropping needed in the custom strech case, + // as output should always exactly match the target aspect ratio + case AspectMode::CustomStretch: expected_aspect = g_ActiveConfig.GetCustomAspectRatio(); break; } @@ -602,9 +615,10 @@ void Presenter::UpdateDrawRectangle() int_draw_width = static_cast(draw_width); int_draw_height = static_cast(draw_height); } - else + else if (g_ActiveConfig.aspect_mode != AspectMode::Raw || !m_xfb_entry) { - // Find the best integer resolution: the closest aspect ratio with the least black bars + // Find the best integer resolution: the closest aspect ratio with the least black bars. + // This should have no influence if "AspectMode::Stretch" is active. const float updated_draw_aspect_ratio = draw_width / draw_height; const auto int_draw_res = FindClosestIntegerResolution(draw_width, draw_height, updated_draw_aspect_ratio); @@ -612,13 +626,21 @@ void Presenter::UpdateDrawRectangle() int_draw_height = std::get<1>(int_draw_res); if (!g_ActiveConfig.bCrop) { - TryToSnapToXFBSize(int_draw_width, int_draw_height, m_xfb_rect.GetWidth(), - m_xfb_rect.GetHeight()); + if (g_ActiveConfig.aspect_mode != AspectMode::Stretch) + { + TryToSnapToXFBSize(int_draw_width, int_draw_height, m_xfb_rect.GetWidth(), + m_xfb_rect.GetHeight()); + } // We can't draw something bigger than the window, it will crop int_draw_width = std::min(int_draw_width, static_cast(win_width)); int_draw_height = std::min(int_draw_height, static_cast(win_height)); } } + else + { + int_draw_width = m_xfb_rect.GetWidth(); + int_draw_height = m_xfb_rect.GetHeight(); + } m_target_rectangle.left = static_cast(std::round(win_width / 2.0 - int_draw_width / 2.0)); m_target_rectangle.top = static_cast(std::round(win_height / 2.0 - int_draw_height / 2.0)); @@ -665,7 +687,10 @@ std::tuple Presenter::CalculateOutputDimensions(int width, int height, const float draw_aspect_ratio = CalculateDrawAspectRatio(allow_stretch); auto [int_width, int_height] = FindClosestIntegerResolution(scaled_width, scaled_height, draw_aspect_ratio); - TryToSnapToXFBSize(int_width, int_height, m_xfb_rect.GetWidth(), m_xfb_rect.GetHeight()); + if (aspect_mode != AspectMode::Raw) + { + TryToSnapToXFBSize(int_width, int_height, m_xfb_rect.GetWidth(), m_xfb_rect.GetHeight()); + } width = int_width; height = int_height; } diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index 31c10059d5e2..d7ab34f1420e 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -21,11 +21,13 @@ constexpr int EFB_SCALE_AUTO_INTEGRAL = 0; enum class AspectMode : int { - Auto, // 4:3 or 16:9 - ForceWide, // 16:9 - ForceStandard, // 4:3 + Auto, // ~4:3 or ~16:9 (auto detected) + ForceWide, // ~16:9 + ForceStandard, // ~4:3 Stretch, - Custom, + Custom, // Forced relative custom AR + CustomStretch, // Forced absolute custom AR + Raw, // Forced squared pixels }; enum class StereoMode : int From 26141eece81642d3c9c226cded768da6ddb9069c Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 1 Mar 2024 06:52:03 -0800 Subject: [PATCH 047/223] Memory(View)Widget: Avoid Global System Accessor --- .../DolphinQt/Debugger/MemoryViewWidget.cpp | 24 +++++++------------ .../DolphinQt/Debugger/MemoryViewWidget.h | 2 +- .../Core/DolphinQt/Debugger/MemoryWidget.cpp | 13 +++++----- Source/Core/DolphinQt/Debugger/MemoryWidget.h | 7 ++++-- Source/Core/DolphinQt/MainWindow.cpp | 2 +- 5 files changed, 22 insertions(+), 26 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp index d9ff1daac8ce..990b317b657c 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp @@ -154,7 +154,7 @@ class MemoryViewTable final : public QTableWidget u32 end_address = address + static_cast(bytes.size()) - 1; AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_view->GetAddressSpace()); - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(m_view->m_system); if (!bytes.empty() && accessors->IsValidAddress(guard, address) && accessors->IsValidAddress(guard, end_address)) @@ -170,8 +170,8 @@ class MemoryViewTable final : public QTableWidget MemoryViewWidget* m_view; }; -MemoryViewWidget::MemoryViewWidget(QWidget* parent) - : QWidget(parent), m_system(Core::System::GetInstance()) +MemoryViewWidget::MemoryViewWidget(Core::System& system, QWidget* parent) + : QWidget(parent), m_system(system) { auto* layout = new QHBoxLayout(); layout->setContentsMargins(0, 0, 0, 0); @@ -443,7 +443,7 @@ void MemoryViewWidget::UpdateColumns() if (Core::GetState() == Core::State::Paused) { - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(m_system); UpdateColumns(&guard); } else @@ -850,12 +850,8 @@ void MemoryViewWidget::OnCopyHex(u32 addr) { const auto length = GetTypeSize(m_type); - const AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_address_space); - - const u64 value = [addr, accessors] { - Core::CPUThreadGuard guard(Core::System::GetInstance()); - return accessors->ReadU64(guard, addr); - }(); + const u64 value = + AddressSpace::GetAccessors(m_address_space)->ReadU64(Core::CPUThreadGuard{m_system}, addr); QApplication::clipboard()->setText( QStringLiteral("%1").arg(value, sizeof(u64) * 2, 16, QLatin1Char('0')).left(length * 2)); @@ -873,12 +869,8 @@ void MemoryViewWidget::OnContextMenu(const QPoint& pos) const u32 addr = item_selected->data(USER_ROLE_CELL_ADDRESS).toUInt(); const bool item_has_value = item_selected->data(USER_ROLE_VALUE_TYPE).toInt() != static_cast(Type::Null) && - [this, addr] { - const AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_address_space); - - Core::CPUThreadGuard guard(Core::System::GetInstance()); - return accessors->IsValidAddress(guard, addr); - }(); + AddressSpace::GetAccessors(m_address_space) + ->IsValidAddress(Core::CPUThreadGuard{m_system}, addr); auto* menu = new QMenu(this); diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h index c958ede341c6..1ae6106154ba 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h @@ -53,7 +53,7 @@ class MemoryViewWidget final : public QWidget WriteOnly }; - explicit MemoryViewWidget(QWidget* parent = nullptr); + explicit MemoryViewWidget(Core::System& system, QWidget* parent = nullptr); void CreateTable(); void Update(); diff --git a/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp index 3910d093aa23..9b2fba6d295e 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp @@ -40,7 +40,8 @@ using Type = MemoryViewWidget::Type; -MemoryWidget::MemoryWidget(QWidget* parent) : QDockWidget(parent) +MemoryWidget::MemoryWidget(Core::System& system, QWidget* parent) + : QDockWidget(parent), m_system(system) { setWindowTitle(tr("Memory")); setObjectName(QStringLiteral("memory")); @@ -287,7 +288,7 @@ void MemoryWidget::CreateWidgets() sidebar_scroll->setWidget(sidebar); sidebar_scroll->setWidgetResizable(true); - m_memory_view = new MemoryViewWidget(this); + m_memory_view = new MemoryViewWidget(m_system, this); m_splitter->addWidget(m_memory_view); m_splitter->addWidget(sidebar_scroll); @@ -496,7 +497,7 @@ void MemoryWidget::SetAddress(u32 address) AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_memory_view->GetAddressSpace()); - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(m_system); good = accessors->IsValidAddress(guard, current_addr); } @@ -653,7 +654,7 @@ void MemoryWidget::OnSetValue() return; } - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(m_system); AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_memory_view->GetAddressSpace()); u32 end_address = target_addr.address + static_cast(bytes.size()) - 1; @@ -715,7 +716,7 @@ void MemoryWidget::OnSetValueFromFile() AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_memory_view->GetAddressSpace()); - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(m_system); for (u8 b : file_contents) accessors->WriteU8(guard, target_addr.address++, b); @@ -833,7 +834,7 @@ void MemoryWidget::FindValue(bool next) AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_memory_view->GetAddressSpace()); - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(m_system); return accessors->Search(guard, target_addr.address, reinterpret_cast(search_for.data()), static_cast(search_for.size()), next); diff --git a/Source/Core/DolphinQt/Debugger/MemoryWidget.h b/Source/Core/DolphinQt/Debugger/MemoryWidget.h index ef6be33e59f7..d50610ac12fc 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryWidget.h +++ b/Source/Core/DolphinQt/Debugger/MemoryWidget.h @@ -22,14 +22,15 @@ class QSplitter; namespace Core { +class System; class CPUThreadGuard; -} +} // namespace Core class MemoryWidget : public QDockWidget { Q_OBJECT public: - explicit MemoryWidget(QWidget* parent = nullptr); + explicit MemoryWidget(Core::System& system, QWidget* parent = nullptr); ~MemoryWidget(); void SetAddress(u32 address); @@ -78,6 +79,8 @@ class MemoryWidget : public QDockWidget void closeEvent(QCloseEvent*) override; void showEvent(QShowEvent* event) override; + Core::System& m_system; + MemoryViewWidget* m_memory_view; QSplitter* m_splitter; QComboBox* m_search_address; diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index ff028f5d376b..7aa50100613a 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -449,7 +449,7 @@ void MainWindow::CreateComponents() m_jit_widget = new JITWidget(this); m_log_widget = new LogWidget(this); m_log_config_widget = new LogConfigWidget(this); - m_memory_widget = new MemoryWidget(this); + m_memory_widget = new MemoryWidget(Core::System::GetInstance(), this); m_network_widget = new NetworkWidget(this); m_register_widget = new RegisterWidget(this); m_thread_widget = new ThreadWidget(this); From 0d4cb5ddc7741f8266869bdae453bb2805200e55 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 1 Mar 2024 10:41:48 -0800 Subject: [PATCH 048/223] State: Avoid Global System Accessor --- Source/Android/jni/MainAndroid.cpp | 8 +-- Source/Core/Core/Core.cpp | 2 +- Source/Core/Core/HW/HW.cpp | 2 +- Source/Core/Core/Movie.cpp | 2 +- Source/Core/Core/State.cpp | 70 +++++++++++------------ Source/Core/Core/State.h | 27 +++++---- Source/Core/DolphinNoGUI/PlatformMacos.mm | 11 ++-- Source/Core/DolphinNoGUI/PlatformX11.cpp | 11 ++-- Source/Core/DolphinQt/MainWindow.cpp | 20 +++---- Source/Core/DolphinQt/RenderWidget.cpp | 3 +- 10 files changed, 81 insertions(+), 75 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 6a74cabd8754..29ba810bb756 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -315,7 +315,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveState(JN jboolean wait) { HostThreadLock guard; - State::Save(slot, wait); + State::Save(Core::System::GetInstance(), slot, wait); } JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveStateAs(JNIEnv* env, jclass, @@ -323,21 +323,21 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveStateAs( jboolean wait) { HostThreadLock guard; - State::SaveAs(GetJString(env, path), wait); + State::SaveAs(Core::System::GetInstance(), GetJString(env, path), wait); } JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_LoadState(JNIEnv*, jclass, jint slot) { HostThreadLock guard; - State::Load(slot); + State::Load(Core::System::GetInstance(), slot); } JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_LoadStateAs(JNIEnv* env, jclass, jstring path) { HostThreadLock guard; - State::LoadAs(GetJString(env, path)); + State::LoadAs(Core::System::GetInstance(), GetJString(env, path)); } JNIEXPORT jlong JNICALL diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index c7c392fa0e6c..abc69535b261 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -396,7 +396,7 @@ static void CpuThread(Core::System& system, const std::optional& sa if (savestate_path) { - ::State::LoadAs(*savestate_path); + ::State::LoadAs(system, *savestate_path); if (delete_savestate) File::Delete(*savestate_path); } diff --git a/Source/Core/Core/HW/HW.cpp b/Source/Core/Core/HW/HW.cpp index 20aed37a1733..524feab884d4 100644 --- a/Source/Core/Core/HW/HW.cpp +++ b/Source/Core/Core/HW/HW.cpp @@ -35,7 +35,7 @@ void Init(Core::System& system, const Sram* override_sram) system.GetCoreTiming().Init(); system.GetSystemTimers().PreInit(); - State::Init(); + State::Init(system); // Init the whole Hardware system.GetAudioInterface().Init(); diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index a2e0d9be1f33..07bbbb23556d 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -541,7 +541,7 @@ bool MovieManager::BeginRecordingInput(const ControllerTypeArray& controllers, if (File::Exists(save_path)) File::Delete(save_path); - State::SaveAs(save_path); + State::SaveAs(m_system, save_path); m_recording_from_save_state = true; std::thread md5thread(&MovieManager::GetMD5, this); diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index d60747deebb5..9ebe56a25a1b 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -138,10 +138,8 @@ void EnableCompression(bool compression) s_use_compression = compression; } -static void DoState(PointerWrap& p) +static void DoState(Core::System& system, PointerWrap& p) { - auto& system = Core::System::GetInstance(); - bool is_wii = system.IsWii() || system.IsMIOS(); const bool is_wii_currently = is_wii; p.Do(is_wii); @@ -202,7 +200,7 @@ static void DoState(PointerWrap& p) p.DoMarker("Gecko"); } -void LoadFromBuffer(std::vector& buffer) +void LoadFromBuffer(Core::System& system, std::vector& buffer) { if (NetPlay::IsNetPlayRunning()) { @@ -222,25 +220,25 @@ void LoadFromBuffer(std::vector& buffer) [&] { u8* ptr = buffer.data(); PointerWrap p(&ptr, buffer.size(), PointerWrap::Mode::Read); - DoState(p); + DoState(system, p); }, true); } -void SaveToBuffer(std::vector& buffer) +void SaveToBuffer(Core::System& system, std::vector& buffer) { Core::RunOnCPUThread( [&] { u8* ptr = nullptr; PointerWrap p_measure(&ptr, 0, PointerWrap::Mode::Measure); - DoState(p_measure); + DoState(system, p_measure); const size_t buffer_size = reinterpret_cast(ptr); buffer.resize(buffer_size); ptr = buffer.data(); PointerWrap p(&ptr, buffer_size, PointerWrap::Mode::Write); - DoState(p); + DoState(system, p); }, true); } @@ -382,7 +380,7 @@ static void WriteHeadersToFile(size_t uncompressed_size, File::IOFile& f) // If StateExtendedHeader is amended to include more than the base, add WriteBytes() calls here. } -static void CompressAndDumpState(CompressAndDumpState_args& save_args) +static void CompressAndDumpState(Core::System& system, CompressAndDumpState_args& save_args) { const u8* const buffer_data = save_args.buffer_vector.data(); const size_t buffer_size = save_args.buffer_vector.size(); @@ -439,7 +437,7 @@ static void CompressAndDumpState(CompressAndDumpState_args& save_args) } } - auto& movie = Core::System::GetInstance().GetMovie(); + auto& movie = system.GetMovie(); if ((movie.IsMovieActive()) && !movie.IsJustStartingRecordingInputFromSaveState()) movie.SaveRecording(dtmname); else if (!movie.IsMovieActive()) @@ -457,7 +455,7 @@ static void CompressAndDumpState(CompressAndDumpState_args& save_args) Host_UpdateMainFrame(); } -void SaveAs(const std::string& filename, bool wait) +void SaveAs(Core::System& system, const std::string& filename, bool wait) { std::unique_lock lk(s_load_or_save_in_progress_mutex, std::try_to_lock); if (!lk) @@ -473,7 +471,7 @@ void SaveAs(const std::string& filename, bool wait) // Measure the size of the buffer. u8* ptr = nullptr; PointerWrap p_measure(&ptr, 0, PointerWrap::Mode::Measure); - DoState(p_measure); + DoState(system, p_measure); const size_t buffer_size = reinterpret_cast(ptr); // Then actually do the write. @@ -481,7 +479,7 @@ void SaveAs(const std::string& filename, bool wait) current_buffer.resize(buffer_size); ptr = current_buffer.data(); PointerWrap p(&ptr, buffer_size, PointerWrap::Mode::Write); - DoState(p); + DoState(system, p); if (p.IsWriteMode()) { @@ -838,7 +836,7 @@ static void LoadFileStateData(const std::string& filename, std::vector& ret_ ret_data.swap(buffer); } -void LoadAs(const std::string& filename) +void LoadAs(Core::System& system, const std::string& filename) { if (!Core::IsRunning()) return; @@ -864,11 +862,11 @@ void LoadAs(const std::string& filename) Core::RunOnCPUThread( [&] { // Save temp buffer for undo load state - auto& movie = Core::System::GetInstance().GetMovie(); + auto& movie = system.GetMovie(); if (!movie.IsJustStartingRecordingInputFromSaveState()) { std::lock_guard lk2(s_undo_load_buffer_mutex); - SaveToBuffer(s_undo_load_buffer); + SaveToBuffer(system, s_undo_load_buffer); const std::string dtmpath = File::GetUserPath(D_STATESAVES_IDX) + "undo.dtm"; if (movie.IsMovieActive()) movie.SaveRecording(dtmpath); @@ -888,7 +886,7 @@ void LoadAs(const std::string& filename) { u8* ptr = buffer.data(); PointerWrap p(&ptr, buffer.size(), PointerWrap::Mode::Read); - DoState(p); + DoState(system, p); loaded = true; loadedSuccessfully = p.IsReadMode(); } @@ -912,7 +910,7 @@ void LoadAs(const std::string& filename) Core::DisplayMessage("The savestate could not be loaded", OSD::Duration::NORMAL); // since we could be in an inconsistent state now (and might crash or whatever), undo. - UndoLoadState(); + UndoLoadState(system); } } @@ -927,10 +925,10 @@ void SetOnAfterLoadCallback(AfterLoadCallbackFunc callback) s_on_after_load_callback = std::move(callback); } -void Init() +void Init(Core::System& system) { - s_save_thread.Reset("Savestate Worker", [](CompressAndDumpState_args args) { - CompressAndDumpState(args); + s_save_thread.Reset("Savestate Worker", [&system](CompressAndDumpState_args args) { + CompressAndDumpState(system, args); { std::lock_guard lk(s_state_writes_in_queue_mutex); @@ -962,17 +960,17 @@ static std::string MakeStateFilename(int number) SConfig::GetInstance().GetGameID(), number); } -void Save(int slot, bool wait) +void Save(Core::System& system, int slot, bool wait) { - SaveAs(MakeStateFilename(slot), wait); + SaveAs(system, MakeStateFilename(slot), wait); } -void Load(int slot) +void Load(Core::System& system, int slot) { - LoadAs(MakeStateFilename(slot)); + LoadAs(system, MakeStateFilename(slot)); } -void LoadLastSaved(int i) +void LoadLastSaved(Core::System& system, int i) { if (i <= 0) { @@ -988,38 +986,38 @@ void LoadLastSaved(int i) } std::stable_sort(used_slots.begin(), used_slots.end(), CompareTimestamp); - Load((used_slots.end() - i)->slot); + Load(system, (used_slots.end() - i)->slot); } // must wait for state to be written because it must know if all slots are taken -void SaveFirstSaved() +void SaveFirstSaved(Core::System& system) { std::vector used_slots = GetUsedSlotsWithTimestamp(); if (used_slots.size() < NUM_STATES) { // save to an empty slot - Save(GetEmptySlot(used_slots), true); + Save(system, GetEmptySlot(used_slots), true); return; } // overwrite the oldest state std::stable_sort(used_slots.begin(), used_slots.end(), CompareTimestamp); - Save(used_slots.front().slot, true); + Save(system, used_slots.front().slot, true); } // Load the last state before loading the state -void UndoLoadState() +void UndoLoadState(Core::System& system) { std::lock_guard lk(s_undo_load_buffer_mutex); if (!s_undo_load_buffer.empty()) { - auto& movie = Core::System::GetInstance().GetMovie(); + auto& movie = system.GetMovie(); if (movie.IsMovieActive()) { const std::string dtmpath = File::GetUserPath(D_STATESAVES_IDX) + "undo.dtm"; if (File::Exists(dtmpath)) { - LoadFromBuffer(s_undo_load_buffer); + LoadFromBuffer(system, s_undo_load_buffer); movie.LoadInput(dtmpath); } else @@ -1029,7 +1027,7 @@ void UndoLoadState() } else { - LoadFromBuffer(s_undo_load_buffer); + LoadFromBuffer(system, s_undo_load_buffer); } } else @@ -1039,9 +1037,9 @@ void UndoLoadState() } // Load the state that the last save state overwritten on -void UndoSaveState() +void UndoSaveState(Core::System& system) { - LoadAs(File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav"); + LoadAs(system, File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav"); } } // namespace State diff --git a/Source/Core/Core/State.h b/Source/Core/Core/State.h index 7d592b2d88a4..626a0ecca448 100644 --- a/Source/Core/Core/State.h +++ b/Source/Core/Core/State.h @@ -13,6 +13,11 @@ #include "Common/CommonTypes.h" +namespace Core +{ +class System; +} + namespace State { // number of states @@ -75,7 +80,7 @@ struct StateExtendedHeader // and WriteHeadersToFile() }; -void Init(); +void Init(Core::System& system); void Shutdown(); @@ -95,19 +100,19 @@ u64 GetUnixTimeOfSlot(int slot); // If we're in the main CPU thread then they run immediately instead // because some things (like Lua) need them to run immediately. // Slots from 0-99. -void Save(int slot, bool wait = false); -void Load(int slot); +void Save(Core::System& system, int slot, bool wait = false); +void Load(Core::System& system, int slot); -void SaveAs(const std::string& filename, bool wait = false); -void LoadAs(const std::string& filename); +void SaveAs(Core::System& system, const std::string& filename, bool wait = false); +void LoadAs(Core::System& system, const std::string& filename); -void SaveToBuffer(std::vector& buffer); -void LoadFromBuffer(std::vector& buffer); +void SaveToBuffer(Core::System& system, std::vector& buffer); +void LoadFromBuffer(Core::System& system, std::vector& buffer); -void LoadLastSaved(int i = 1); -void SaveFirstSaved(); -void UndoSaveState(); -void UndoLoadState(); +void LoadLastSaved(Core::System& system, int i = 1); +void SaveFirstSaved(Core::System& system); +void UndoSaveState(Core::System& system); +void UndoLoadState(Core::System& system); // for calling back into UI code without introducing a dependency on it in core using AfterLoadCallbackFunc = std::function; diff --git a/Source/Core/DolphinNoGUI/PlatformMacos.mm b/Source/Core/DolphinNoGUI/PlatformMacos.mm index 633d27908cde..2104c6fb6bf5 100644 --- a/Source/Core/DolphinNoGUI/PlatformMacos.mm +++ b/Source/Core/DolphinNoGUI/PlatformMacos.mm @@ -7,6 +7,7 @@ #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include "VideoCommon/Present.h" #include "VideoCommon/RenderBase.h" @@ -54,27 +55,27 @@ - (void)saveScreenShot - (void)loadLastSaved { - State::LoadLastSaved(); + State::LoadLastSaved(Core::System::GetInstance()); } - (void)undoLoadState { - State::UndoLoadState(); + State::UndoLoadState(Core::System::GetInstance()); } - (void)undoSaveState { - State::UndoSaveState(); + State::UndoSaveState(Core::System::GetInstance()); } - (void)loadState:(id)sender { - State::Load([sender tag]); + State::Load(Core::System::GetInstance(), [sender tag]); } - (void)saveState:(id)sender { - State::Save([sender tag]); + State::Save(Core::System::GetInstance(), [sender tag]); } @end diff --git a/Source/Core/DolphinNoGUI/PlatformX11.cpp b/Source/Core/DolphinNoGUI/PlatformX11.cpp index 18784499e476..02f66d148c6f 100644 --- a/Source/Core/DolphinNoGUI/PlatformX11.cpp +++ b/Source/Core/DolphinNoGUI/PlatformX11.cpp @@ -15,6 +15,7 @@ static constexpr auto X_None = None; #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include #include @@ -224,20 +225,20 @@ void PlatformX11::ProcessEvents() { int slot_number = key - XK_F1 + 1; if (event.xkey.state & ShiftMask) - State::Save(slot_number); + State::Save(Core::System::GetInstance(), slot_number); else - State::Load(slot_number); + State::Load(Core::System::GetInstance(), slot_number); } else if (key == XK_F9) Core::SaveScreenShot(); else if (key == XK_F11) - State::LoadLastSaved(); + State::LoadLastSaved(Core::System::GetInstance()); else if (key == XK_F12) { if (event.xkey.state & ShiftMask) - State::UndoLoadState(); + State::UndoLoadState(Core::System::GetInstance()); else - State::UndoSaveState(); + State::UndoSaveState(Core::System::GetInstance()); } break; case FocusIn: diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index ff028f5d376b..1077c3b9810f 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1412,7 +1412,7 @@ void MainWindow::StateLoad() this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s##);; All Files (*)")); Config::SetBase(Config::MAIN_CURRENT_STATE_PATH, QFileInfo(path).dir().path().toStdString()); if (!path.isEmpty()) - State::LoadAs(path.toStdString()); + State::LoadAs(Core::System::GetInstance(), path.toStdString()); } void MainWindow::StateSave() @@ -1424,47 +1424,47 @@ void MainWindow::StateSave() this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s##);; All Files (*)")); Config::SetBase(Config::MAIN_CURRENT_STATE_PATH, QFileInfo(path).dir().path().toStdString()); if (!path.isEmpty()) - State::SaveAs(path.toStdString()); + State::SaveAs(Core::System::GetInstance(), path.toStdString()); } void MainWindow::StateLoadSlot() { - State::Load(m_state_slot); + State::Load(Core::System::GetInstance(), m_state_slot); } void MainWindow::StateSaveSlot() { - State::Save(m_state_slot); + State::Save(Core::System::GetInstance(), m_state_slot); } void MainWindow::StateLoadSlotAt(int slot) { - State::Load(slot); + State::Load(Core::System::GetInstance(), slot); } void MainWindow::StateLoadLastSavedAt(int slot) { - State::LoadLastSaved(slot); + State::LoadLastSaved(Core::System::GetInstance(), slot); } void MainWindow::StateSaveSlotAt(int slot) { - State::Save(slot); + State::Save(Core::System::GetInstance(), slot); } void MainWindow::StateLoadUndo() { - State::UndoLoadState(); + State::UndoLoadState(Core::System::GetInstance()); } void MainWindow::StateSaveUndo() { - State::UndoSaveState(); + State::UndoSaveState(Core::System::GetInstance()); } void MainWindow::StateSaveOldest() { - State::SaveFirstSaved(); + State::SaveFirstSaved(Core::System::GetInstance()); } void MainWindow::SetStateSlot(int slot) diff --git a/Source/Core/DolphinQt/RenderWidget.cpp b/Source/Core/DolphinQt/RenderWidget.cpp index ac07dfcf2795..5518aa41fc5b 100644 --- a/Source/Core/DolphinQt/RenderWidget.cpp +++ b/Source/Core/DolphinQt/RenderWidget.cpp @@ -22,6 +22,7 @@ #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include "DolphinQt/Host.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" @@ -129,7 +130,7 @@ void RenderWidget::dropEvent(QDropEvent* event) return; } - State::LoadAs(path.toStdString()); + State::LoadAs(Core::System::GetInstance(), path.toStdString()); } void RenderWidget::OnHideCursorChanged() From f208b320a38ccc8cb2ee7ebdda16d3772d463c39 Mon Sep 17 00:00:00 2001 From: Naim2000 Date: Fri, 1 Mar 2024 15:00:28 -0500 Subject: [PATCH 049/223] AesDevice: fix key & iv arrays --- Source/Core/Core/IOS/Crypto/AesDevice.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/IOS/Crypto/AesDevice.cpp b/Source/Core/Core/IOS/Crypto/AesDevice.cpp index 04614a37ca4d..caf787982588 100644 --- a/Source/Core/Core/IOS/Crypto/AesDevice.cpp +++ b/Source/Core/Core/IOS/Crypto/AesDevice.cpp @@ -64,8 +64,8 @@ std::optional AesDevice::IOCtlV(const IOCtlVRequest& request) std::vector input = std::vector(request.in_vectors[0].size); std::vector output = std::vector(request.io_vectors[0].size); - std::array key = {0}; - std::array iv = {0}; + std::array key = {0}; + std::array iv = {0}; memory.CopyFromEmu(input.data(), request.in_vectors[0].address, input.size()); memory.CopyFromEmu(key.data(), request.in_vectors[1].address, key.size()); memory.CopyFromEmu(iv.data(), request.io_vectors[1].address, iv.size()); From 0344ec6d79c47a9301451c1cf376b02deb2c8fa1 Mon Sep 17 00:00:00 2001 From: Niel Lebeck Date: Mon, 26 Feb 2024 20:50:46 -0800 Subject: [PATCH 050/223] Add simple unit tests for SettingsHandler --- Source/UnitTests/Common/CMakeLists.txt | 1 + .../UnitTests/Common/SettingsHandlerTest.cpp | 94 +++++++++++++++++++ Source/UnitTests/UnitTests.vcxproj | 1 + 3 files changed, 96 insertions(+) create mode 100644 Source/UnitTests/Common/SettingsHandlerTest.cpp diff --git a/Source/UnitTests/Common/CMakeLists.txt b/Source/UnitTests/Common/CMakeLists.txt index 8865c024c1f9..e509f160f29c 100644 --- a/Source/UnitTests/Common/CMakeLists.txt +++ b/Source/UnitTests/Common/CMakeLists.txt @@ -15,6 +15,7 @@ add_dolphin_test(FlagTest FlagTest.cpp) add_dolphin_test(FloatUtilsTest FloatUtilsTest.cpp) add_dolphin_test(MathUtilTest MathUtilTest.cpp) add_dolphin_test(NandPathsTest NandPathsTest.cpp) +add_dolphin_test(SettingsHandlerTest SettingsHandlerTest.cpp) add_dolphin_test(SPSCQueueTest SPSCQueueTest.cpp) add_dolphin_test(StringUtilTest StringUtilTest.cpp) add_dolphin_test(SwapTest SwapTest.cpp) diff --git a/Source/UnitTests/Common/SettingsHandlerTest.cpp b/Source/UnitTests/Common/SettingsHandlerTest.cpp new file mode 100644 index 000000000000..cafa02ce988b --- /dev/null +++ b/Source/UnitTests/Common/SettingsHandlerTest.cpp @@ -0,0 +1,94 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include + +#include "Common/SettingsHandler.h" + +namespace +{ +// The encrypted bytes corresponding to the following settings, in order: +// "key" = "val" +Common::SettingsHandler::Buffer BUFFER_A{0x91, 0x91, 0x90, 0xEE, 0xD1, 0x2F, 0xF0, 0x34, 0x79}; + +// The encrypted bytes corresponding to the following settings, in order: +// "key1" = "val1" +// "key2" = "val2" +// "foo" = "bar" +Common::SettingsHandler::Buffer BUFFER_B{ + 0x91, 0x91, 0x90, 0xE2, 0x9A, 0x38, 0xFD, 0x55, 0x42, 0xEA, 0xC4, 0xF6, 0x5E, 0xF, 0xDF, 0xE7, + 0xC3, 0x0A, 0xBB, 0x9C, 0x50, 0xB1, 0x10, 0x82, 0xB4, 0x8A, 0x0D, 0xBE, 0xCD, 0x72, 0xF4}; +} // namespace + +TEST(SettingsHandlerTest, EncryptSingleSetting) +{ + Common::SettingsHandler handler; + handler.AddSetting("key", "val"); + Common::SettingsHandler::Buffer buffer = handler.GetBytes(); + + EXPECT_TRUE(std::equal(buffer.begin(), buffer.end(), BUFFER_A.begin(), BUFFER_A.end())); +} + +TEST(SettingsHandlerTest, DecryptSingleSetting) +{ + Common::SettingsHandler::Buffer buffer = BUFFER_A; + Common::SettingsHandler handler(std::move(buffer)); + EXPECT_EQ(handler.GetValue("key"), "val"); +} + +TEST(SettingsHandlerTest, EncryptMultipleSettings) +{ + Common::SettingsHandler handler; + handler.AddSetting("key1", "val1"); + handler.AddSetting("key2", "val2"); + handler.AddSetting("foo", "bar"); + Common::SettingsHandler::Buffer buffer = handler.GetBytes(); + + EXPECT_TRUE(std::equal(buffer.begin(), buffer.end(), BUFFER_B.begin(), BUFFER_B.end())); +} + +TEST(SettingsHandlerTest, DecryptMultipleSettings) +{ + Common::SettingsHandler::Buffer buffer = BUFFER_B; + Common::SettingsHandler handler(std::move(buffer)); + EXPECT_EQ(handler.GetValue("key1"), "val1"); + EXPECT_EQ(handler.GetValue("key2"), "val2"); + EXPECT_EQ(handler.GetValue("foo"), "bar"); +} + +TEST(SettingsHandlerTest, SetBytesOverwritesExistingBuffer) +{ + Common::SettingsHandler::Buffer buffer = BUFFER_A; + Common::SettingsHandler handler(std::move(buffer)); + ASSERT_EQ(handler.GetValue("key"), "val"); + ASSERT_EQ(handler.GetValue("foo"), ""); + + Common::SettingsHandler::Buffer buffer2 = BUFFER_B; + handler.SetBytes(std::move(buffer2)); + EXPECT_EQ(handler.GetValue("foo"), "bar"); + EXPECT_EQ(handler.GetValue("key"), ""); +} + +TEST(SettingsHandlerTest, GetValueOnSameInstance) +{ + Common::SettingsHandler handler; + handler.AddSetting("key", "val"); + EXPECT_EQ(handler.GetValue("key"), ""); + + Common::SettingsHandler::Buffer buffer = handler.GetBytes(); + handler.SetBytes(std::move(buffer)); + EXPECT_EQ(handler.GetValue("key"), "val"); +} + +TEST(SettingsHandlerTest, GetValueAfterReset) +{ + Common::SettingsHandler::Buffer buffer = BUFFER_A; + Common::SettingsHandler handler(std::move(buffer)); + ASSERT_EQ(handler.GetValue("key"), "val"); + + handler.Reset(); + EXPECT_EQ(handler.GetValue("key"), ""); +} + +// TODO: Add test coverage of the edge case fixed in +// https://github.com/dolphin-emu/dolphin/pull/8704. diff --git a/Source/UnitTests/UnitTests.vcxproj b/Source/UnitTests/UnitTests.vcxproj index 0608cbe30784..9e44cec8c3dd 100644 --- a/Source/UnitTests/UnitTests.vcxproj +++ b/Source/UnitTests/UnitTests.vcxproj @@ -54,6 +54,7 @@ + From 16c609dcd45780a1cc97660d6e8a23936f9adfe3 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:39:04 -0800 Subject: [PATCH 051/223] BootManager: Avoid Global System Accessor --- Source/Android/jni/MainAndroid.cpp | 2 +- Source/Core/Core/BootManager.cpp | 4 ++-- Source/Core/Core/BootManager.h | 7 ++++++- Source/Core/DolphinNoGUI/MainNoGUI.cpp | 3 ++- Source/Core/DolphinQt/MainWindow.cpp | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 6a74cabd8754..827b535c8fff 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -570,7 +570,7 @@ static void Run(JNIEnv* env, std::unique_ptr&& boot, bool riivol s_need_nonblocking_alert_msg = true; std::unique_lock surface_guard(s_surface_lock); - if (BootManager::BootCore(std::move(boot), wsi)) + if (BootManager::BootCore(Core::System::GetInstance(), std::move(boot), wsi)) { static constexpr int WAIT_STEP = 25; while (Core::GetState() == Core::State::Starting) diff --git a/Source/Core/Core/BootManager.cpp b/Source/Core/Core/BootManager.cpp index 1c0bc7e04cc7..1c87994bf944 100644 --- a/Source/Core/Core/BootManager.cpp +++ b/Source/Core/Core/BootManager.cpp @@ -55,12 +55,12 @@ namespace BootManager { // Boot the ISO or file -bool BootCore(std::unique_ptr boot, const WindowSystemInfo& wsi) +bool BootCore(Core::System& system, std::unique_ptr boot, + const WindowSystemInfo& wsi) { if (!boot) return false; - auto& system = Core::System::GetInstance(); SConfig& StartUp = SConfig::GetInstance(); if (!StartUp.SetPathsAndGameMetadata(system, *boot)) diff --git a/Source/Core/Core/BootManager.h b/Source/Core/Core/BootManager.h index 10474c5f3fe7..e8ec56892146 100644 --- a/Source/Core/Core/BootManager.h +++ b/Source/Core/Core/BootManager.h @@ -5,12 +5,17 @@ #include +namespace Core +{ +class System; +} struct BootParameters; struct WindowSystemInfo; namespace BootManager { -bool BootCore(std::unique_ptr parameters, const WindowSystemInfo& wsi); +bool BootCore(Core::System& system, std::unique_ptr parameters, + const WindowSystemInfo& wsi); // Synchronise Dolphin's configuration with the SYSCONF (which may have changed during emulation), // and restore settings that were overriden by per-game INIs or for some other reason. diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index ff69e6bf7aa6..9db8ef8a4710 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -24,6 +24,7 @@ #include "Core/Core.h" #include "Core/DolphinAnalytics.h" #include "Core/Host.h" +#include "Core/System.h" #include "UICommon/CommandLineParse.h" #ifdef USE_DISCORD_PRESENCE @@ -304,7 +305,7 @@ int main(int argc, char* argv[]) DolphinAnalytics::Instance().ReportDolphinStart("nogui"); - if (!BootManager::BootCore(std::move(boot), wsi)) + if (!BootManager::BootCore(Core::System::GetInstance(), std::move(boot), wsi)) { fprintf(stderr, "Could not boot the specified file\n"); return 1; diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index ff028f5d376b..54b75c05c151 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1126,7 +1126,7 @@ void MainWindow::StartGame(std::unique_ptr&& parameters) ShowRenderWidget(); // Boot up, show an error if it fails to load the game. - if (!BootManager::BootCore(std::move(parameters), + if (!BootManager::BootCore(Core::System::GetInstance(), std::move(parameters), ::GetWindowSystemInfo(m_render_widget->windowHandle()))) { ModalMessageBox::critical(this, tr("Error"), tr("Failed to init core"), QMessageBox::Ok); From 8d5e39751efc02d713fc0cb2e70d2bb756576c1d Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 2 Mar 2024 07:53:23 -0800 Subject: [PATCH 052/223] BranchWatchDialog: Fix GCC Warnings GCC can't lambda right. --- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index f5e6a5acc3c8..688da4c9bf0d 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -201,13 +201,13 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br setWindowFlags((windowFlags() | Qt::WindowMinMaxButtonsHint) & ~Qt::WindowContextHelpButtonHint); SetQWidgetWindowDecorations(this); setLayout([this]() { - auto* layout = new QVBoxLayout; + auto* main_layout = new QVBoxLayout; // Controls Toolbar (widgets are added later) - layout->addWidget(m_control_toolbar = new QToolBar); + main_layout->addWidget(m_control_toolbar = new QToolBar); // Branch Watch Table - layout->addWidget(m_table_view = [this]() { + main_layout->addWidget(m_table_view = [this]() { const auto& ui_settings = Settings::Instance(); m_table_proxy = new BranchWatchProxyModel(m_branch_watch); @@ -271,7 +271,7 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br }(); // Menu Bar - layout->setMenuBar([this]() { + main_layout->setMenuBar([this]() { QMenuBar* const menu_bar = new QMenuBar; menu_bar->setNativeMenuBar(false); @@ -308,7 +308,7 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br }()); // Status Bar - layout->addWidget(m_status_bar = []() { + main_layout->addWidget(m_status_bar = []() { auto* const status_bar = new QStatusBar; status_bar->setSizeGripEnabled(false); return status_bar; @@ -394,7 +394,8 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br m_control_toolbar->addWidget([this]() { auto* const layout = new QGridLayout; - const auto routine = [this, layout](const QString& text, int row, int column, int width, + const auto routine = [this, layout](const QString& placeholder_text, int row, int column, + int width, void (BranchWatchProxyModel::*slot)(const QString&)) { QLineEdit* const line_edit = new QLineEdit; layout->addWidget(line_edit, row, column, 1, width); @@ -402,7 +403,7 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br (m_table_proxy->*slot)(text); UpdateStatus(); }); - line_edit->setPlaceholderText(text); + line_edit->setPlaceholderText(placeholder_text); return line_edit; }; @@ -487,7 +488,7 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br connect(m_table_proxy, &BranchWatchProxyModel::layoutChanged, this, &BranchWatchDialog::UpdateStatus); - return layout; + return main_layout; }()); // FIXME: On Linux, Qt6 has recently been resetting column widths to their defaults in many @@ -826,8 +827,8 @@ void BranchWatchDialog::OnTableContextMenu(const QPoint& pos) QAction* const action = menu->addAction(tr("Insert &BLR")); const bool enable_action = Core::GetState() != Core::State::Uninitialized && - std::all_of(index_list.begin(), index_list.end(), [this](const QModelIndex& index) { - const QModelIndex sibling = index.siblingAtColumn(Column::Instruction); + 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) @@ -846,8 +847,8 @@ void BranchWatchDialog::OnTableContextMenu(const QPoint& pos) QAction* const action = menu->addAction(tr("Insert &BLR at start")); const bool enable_action = Core::GetState() != Core::State::Uninitialized && - std::all_of(index_list.begin(), index_list.end(), [this](const QModelIndex& index) { - return m_table_proxy->data(index, UserRole::ClickRole).isValid(); + 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)]() { From f556f646a25747d049fe4168538602fc4214ac49 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sun, 3 Mar 2024 12:58:20 -0500 Subject: [PATCH 053/223] Don't Publish Unofficial Achievements Check an achievement's category and only request RetroAchievements to award if it is CORE and not UNOFFICIAL. --- 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 cd09562b0575..44f8a3102128 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -1460,7 +1460,6 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_runtime_event_ return; } it->second.session_unlock_count++; - m_queue.EmplaceItem([this, event_id] { AwardAchievement(event_id); }); AchievementId game_data_index = it->second.game_data_index; OSD::AddMessage(fmt::format("Unlocked: {} ({})", m_game_data.achievements[game_data_index].title, m_game_data.achievements[game_data_index].points), @@ -1471,6 +1470,7 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_runtime_event_ nullptr); if (m_game_data.achievements[game_data_index].category == RC_ACHIEVEMENT_CATEGORY_CORE) { + m_queue.EmplaceItem([this, event_id] { AwardAchievement(event_id); }); PointSpread spread = TallyScore(); if (spread.hard_points == spread.total_points && it->second.remote_unlock_status != UnlockStatus::UnlockType::HARDCORE) From a2db33b6f1e57cc67c83219c132a77852285df07 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sun, 3 Mar 2024 16:10:35 -0500 Subject: [PATCH 054/223] Update rcheevos submodule to master --- Externals/rcheevos/CMakeLists.txt | 19 +++++++++++++++++-- Externals/rcheevos/rcheevos | 2 +- Externals/rcheevos/rcheevos.vcxproj | 19 +++++++++++++++++-- 3 files changed, 35 insertions(+), 5 deletions(-) diff --git a/Externals/rcheevos/CMakeLists.txt b/Externals/rcheevos/CMakeLists.txt index 0fea1f9873b5..cd48ef5b29fa 100644 --- a/Externals/rcheevos/CMakeLists.txt +++ b/Externals/rcheevos/CMakeLists.txt @@ -4,13 +4,17 @@ add_library(rcheevos rcheevos/include/rc_api_request.h rcheevos/include/rc_api_runtime.h rcheevos/include/rc_api_user.h + rcheevos/include/rc_client.h + rcheevos/include/rc_client_raintegration.h rcheevos/include/rc_consoles.h rcheevos/include/rc_error.h + rcheevos/include/rc_export.h rcheevos/include/rc_hash.h rcheevos/include/rcheevos.h rcheevos/include/rc_runtime.h rcheevos/include/rc_runtime_types.h rcheevos/include/rc_url.h + rcheevos/include/rc_util.h rcheevos/src/rapi/rc_api_common.c rcheevos/src/rapi/rc_api_common.h rcheevos/src/rapi/rc_api_editor.c @@ -18,7 +22,6 @@ add_library(rcheevos rcheevos/src/rapi/rc_api_runtime.c rcheevos/src/rapi/rc_api_user.c rcheevos/src/rcheevos/alloc.c - rcheevos/src/rcheevos/compat.c rcheevos/src/rcheevos/condition.c rcheevos/src/rcheevos/condset.c rcheevos/src/rcheevos/consoleinfo.c @@ -26,7 +29,6 @@ add_library(rcheevos rcheevos/src/rcheevos/lboard.c rcheevos/src/rcheevos/memref.c rcheevos/src/rcheevos/operand.c - rcheevos/src/rcheevos/rc_compat.h rcheevos/src/rcheevos/rc_internal.h rcheevos/src/rcheevos/rc_validate.c rcheevos/src/rcheevos/rc_validate.h @@ -35,10 +37,23 @@ add_library(rcheevos rcheevos/src/rcheevos/runtime_progress.c rcheevos/src/rcheevos/trigger.c rcheevos/src/rcheevos/value.c + rcheevos/src/rhash/aes.c + rcheevos/src/rhash/aes.h + rcheevos/src/rhash/cdreader.c rcheevos/src/rhash/hash.c rcheevos/src/rhash/md5.c rcheevos/src/rhash/md5.h rcheevos/src/rurl/url.c + rcheevos/src/rc_client.c + rcheevos/src/rc_client_external.h + rcheevos/src/rc_client_internal.h + rcheevos/src/rc_client_raintegration.c + rcheevos/src/rc_client_raintegration_internal.h + rcheevos/src/rc_compat.c + rcheevos/src/rc_compat.h + rcheevos/src/rc_util.c + rcheevos/src/rc_version.c + rcheevos/src/rc_version.h ) target_include_directories(rcheevos PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/rcheevos/include") diff --git a/Externals/rcheevos/rcheevos b/Externals/rcheevos/rcheevos index d9e990e6d135..b64ac2b25038 160000 --- a/Externals/rcheevos/rcheevos +++ b/Externals/rcheevos/rcheevos @@ -1 +1 @@ -Subproject commit d9e990e6d13527532b7e2bb23164a1f3b7f33bb5 +Subproject commit b64ac2b25038bc9feb94ca759b5ba4d02642b3af diff --git a/Externals/rcheevos/rcheevos.vcxproj b/Externals/rcheevos/rcheevos.vcxproj index cde8fd6ecd65..46b8921a7548 100644 --- a/Externals/rcheevos/rcheevos.vcxproj +++ b/Externals/rcheevos/rcheevos.vcxproj @@ -22,7 +22,6 @@ - @@ -36,9 +35,16 @@ + + + + + + + @@ -47,17 +53,26 @@ + + + + - + + + + + + From 085c17aed472ade3af380fdd7db148384c674a20 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 4 Mar 2024 20:04:08 -0500 Subject: [PATCH 055/223] Remove the update callback on all events Not only was the extra call to the update callback in the AchievementEventHandler method unnecessary, it was getting called on events that don't even need to be tracked here, causing a lot of lag when it turned out one achievement was repeatedly spamming Achievement Reset Events as a shortcut. --- 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 270f49cc7789..07753776306f 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -751,8 +751,6 @@ void AchievementManager::AchievementEventHandler(const rc_runtime_event_t* runti break; } } - - m_update_callback(); } std::recursive_mutex& AchievementManager::GetLock() From 456844639815b4bd2f136c161d6e558f96e6182e Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Mon, 4 Mar 2024 19:36:26 -0800 Subject: [PATCH 056/223] JitInterface::ClearCache: Modernize With CPUThreadGuard It is recommended to view this diff with whitespace changes hidden. --- Source/Android/jni/MainAndroid.cpp | 8 +-- Source/Core/Core/Core.cpp | 19 +++---- Source/Core/Core/PowerPC/BreakPoints.cpp | 68 +++++++++++------------ Source/Core/Core/PowerPC/JitInterface.cpp | 2 +- Source/Core/Core/PowerPC/JitInterface.h | 5 +- Source/Core/DolphinQt/MenuBar.cpp | 3 +- 6 files changed, 52 insertions(+), 53 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 6a74cabd8754..7667836957a7 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -408,12 +408,12 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetProfiling jboolean enable) { HostThreadLock guard; - Core::SetState(Core::State::Paused); - auto& jit_interface = Core::System::GetInstance().GetJitInterface(); - jit_interface.ClearCache(); + auto& system = Core::System::GetInstance(); + auto& jit_interface = system.GetJitInterface(); + const Core::CPUThreadGuard cpu_guard(system); + jit_interface.ClearCache(cpu_guard); jit_interface.SetProfilingState(enable ? JitInterface::ProfilingState::Enabled : JitInterface::ProfilingState::Disabled); - Core::SetState(Core::State::Running); } JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteProfileResults(JNIEnv*, diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index c7c392fa0e6c..a7f743d9eea7 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -1015,18 +1015,17 @@ void UpdateWantDeterminism(bool initial) { NOTICE_LOG_FMT(COMMON, "Want determinism <- {}", new_want_determinism ? "true" : "false"); - RunAsCPUThread([&] { - s_wants_determinism = new_want_determinism; - const auto ios = system.GetIOS(); - if (ios) - ios->UpdateWantDeterminism(new_want_determinism); + const Core::CPUThreadGuard guard(system); + s_wants_determinism = new_want_determinism; + const auto ios = system.GetIOS(); + if (ios) + ios->UpdateWantDeterminism(new_want_determinism); - system.GetFifo().UpdateWantDeterminism(new_want_determinism); + system.GetFifo().UpdateWantDeterminism(new_want_determinism); - // We need to clear the cache because some parts of the JIT depend on want_determinism, - // e.g. use of FMA. - system.GetJitInterface().ClearCache(); - }); + // We need to clear the cache because some parts of the JIT depend on want_determinism, + // e.g. use of FMA. + system.GetJitInterface().ClearCache(guard); } } diff --git a/Source/Core/Core/PowerPC/BreakPoints.cpp b/Source/Core/Core/PowerPC/BreakPoints.cpp index 2d62dd569c43..4aeb37664313 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.cpp +++ b/Source/Core/Core/PowerPC/BreakPoints.cpp @@ -271,30 +271,30 @@ void MemChecks::AddFromStrings(const TMemChecksStr& mc_strings) void MemChecks::Add(TMemCheck memory_check) { bool had_any = HasAny(); - Core::RunAsCPUThread([&] { - // Check for existing breakpoint, and overwrite with new info. - // This is assuming we usually want the new breakpoint over an old one. - const u32 address = memory_check.start_address; - auto old_mem_check = - std::find_if(m_mem_checks.begin(), m_mem_checks.end(), - [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 - *old_mem_check = std::move(memory_check); - old_mem_check->is_enabled = is_enabled; - old_mem_check->num_hits = 0; - } - else - { - m_mem_checks.emplace_back(std::move(memory_check)); - } - // If this is the first one, clear the JIT cache so it can switch to - // watchpoint-compatible code. - if (!had_any) - m_system.GetJitInterface().ClearCache(); - m_system.GetMMU().DBATUpdated(); - }); + + const Core::CPUThreadGuard guard(m_system); + // Check for existing breakpoint, and overwrite with new info. + // This is assuming we usually want the new breakpoint over an old one. + const u32 address = memory_check.start_address; + auto old_mem_check = + std::find_if(m_mem_checks.begin(), m_mem_checks.end(), + [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 + *old_mem_check = std::move(memory_check); + old_mem_check->is_enabled = is_enabled; + old_mem_check->num_hits = 0; + } + else + { + m_mem_checks.emplace_back(std::move(memory_check)); + } + // If this is the first one, clear the JIT cache so it can switch to + // watchpoint-compatible code. + if (!had_any) + m_system.GetJitInterface().ClearCache(guard); + m_system.GetMMU().DBATUpdated(); } bool MemChecks::ToggleBreakPoint(u32 address) @@ -318,21 +318,19 @@ void MemChecks::Remove(u32 address) if (iter == m_mem_checks.cend()) return; - Core::RunAsCPUThread([&] { - m_mem_checks.erase(iter); - if (!HasAny()) - m_system.GetJitInterface().ClearCache(); - m_system.GetMMU().DBATUpdated(); - }); + const Core::CPUThreadGuard guard(m_system); + m_mem_checks.erase(iter); + if (!HasAny()) + m_system.GetJitInterface().ClearCache(guard); + m_system.GetMMU().DBATUpdated(); } void MemChecks::Clear() { - Core::RunAsCPUThread([&] { - m_mem_checks.clear(); - m_system.GetJitInterface().ClearCache(); - m_system.GetMMU().DBATUpdated(); - }); + const Core::CPUThreadGuard guard(m_system); + m_mem_checks.clear(); + m_system.GetJitInterface().ClearCache(guard); + m_system.GetMMU().DBATUpdated(); } TMemCheck* MemChecks::GetMemCheck(u32 address, size_t size) diff --git a/Source/Core/Core/PowerPC/JitInterface.cpp b/Source/Core/Core/PowerPC/JitInterface.cpp index ed60b4d489e6..fb1b4f3a95d0 100644 --- a/Source/Core/Core/PowerPC/JitInterface.cpp +++ b/Source/Core/Core/PowerPC/JitInterface.cpp @@ -241,7 +241,7 @@ bool JitInterface::HandleStackFault() return m_jit->HandleStackFault(); } -void JitInterface::ClearCache() +void JitInterface::ClearCache(const Core::CPUThreadGuard&) { if (m_jit) m_jit->ClearCache(); diff --git a/Source/Core/Core/PowerPC/JitInterface.h b/Source/Core/Core/PowerPC/JitInterface.h index f1d88b2ab0f3..4cf7c3179c44 100644 --- a/Source/Core/Core/PowerPC/JitInterface.h +++ b/Source/Core/Core/PowerPC/JitInterface.h @@ -16,8 +16,9 @@ class JitBase; namespace Core { +class CPUThreadGuard; class System; -} +} // namespace Core namespace PowerPC { enum class CPUCore; @@ -72,7 +73,7 @@ class JitInterface bool HandleStackFault(); // Clearing CodeCache - void ClearCache(); + void ClearCache(const Core::CPUThreadGuard& guard); // This clear is "safe" in the sense that it's okay to run from // inside a JIT'ed block: it clears the instruction cache, but not diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 07d4d21cbb7d..cb79feff94f4 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -1753,7 +1753,8 @@ void MenuBar::PatchHLEFunctions() void MenuBar::ClearCache() { - Core::RunAsCPUThread([] { Core::System::GetInstance().GetJitInterface().ClearCache(); }); + auto& system = Core::System::GetInstance(); + system.GetJitInterface().ClearCache(Core::CPUThreadGuard{system}); } void MenuBar::LogInstructions() From 7b0d4f0578b9f9bd559c2e03678392c1c766e183 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 7 Mar 2024 01:27:39 +0900 Subject: [PATCH 057/223] WiimoteReal: fix typo in WiimoteReal.cpp continous -> continuous --- Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp index ad310852f0d4..c376f536fe2f 100644 --- a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp +++ b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp @@ -762,7 +762,7 @@ void WiimoteScanner::ThreadFunc() } } - // Stop scanning if not in continous mode. + // Stop scanning if not in continuous mode. auto scan_mode = WiimoteScanMode::SCAN_ONCE; m_scan_mode.compare_exchange_strong(scan_mode, WiimoteScanMode::DO_NOT_SCAN); } From 0f36654d2b11a3c5fdd173b25418da6cf260af8a Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 3 Mar 2024 18:21:31 -0800 Subject: [PATCH 058/223] PPCSymbolDB: Eliminate Redundant Member This can be accessed through the CPUThreadGuard. --- Source/Core/Core/PowerPC/PPCSymbolDB.cpp | 8 ++++---- Source/Core/Core/PowerPC/PPCSymbolDB.h | 4 ---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp index 767a2f31c72f..bf0229f2924a 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp @@ -28,9 +28,7 @@ PPCSymbolDB g_symbolDB; -PPCSymbolDB::PPCSymbolDB() : debugger{&Core::System::GetInstance().GetPowerPC().GetDebugInterface()} -{ -} +PPCSymbolDB::PPCSymbolDB() = default; PPCSymbolDB::~PPCSymbolDB() = default; @@ -510,6 +508,8 @@ bool PPCSymbolDB::SaveCodeMap(const Core::CPUThreadGuard& guard, const std::stri // Write ".text" at the top f.WriteString(".text\n"); + const auto& ppc_debug_interface = guard.GetSystem().GetPowerPC().GetDebugInterface(); + u32 next_address = 0; for (const auto& function : m_functions) { @@ -530,7 +530,7 @@ bool PPCSymbolDB::SaveCodeMap(const Core::CPUThreadGuard& guard, const std::stri // Write the code for (u32 address = symbol.address; address < next_address; address += 4) { - const std::string disasm = debugger->Disassemble(&guard, address); + const std::string disasm = ppc_debug_interface.Disassemble(&guard, address); f.WriteString(fmt::format("{0:08x} {1:<{2}.{3}} {4}\n", address, symbol.name, SYMBOL_NAME_LIMIT, SYMBOL_NAME_LIMIT, disasm)); } diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.h b/Source/Core/Core/PowerPC/PPCSymbolDB.h index d5e2f3de8f8f..74714d011cdb 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.h +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.h @@ -11,7 +11,6 @@ namespace Core { class CPUThreadGuard; -class DebugInterface; } // namespace Core // This has functionality overlapping Debugger_Symbolmap. Should merge that stuff in here later. @@ -39,9 +38,6 @@ class PPCSymbolDB : public Common::SymbolDB void PrintCalls(u32 funcAddr) const; void PrintCallers(u32 funcAddr) const; void LogFunctionCall(u32 addr); - -private: - Core::DebugInterface* debugger; }; extern PPCSymbolDB g_symbolDB; From 9029b7a08283f64f993f87d8378c6d6e285eba06 Mon Sep 17 00:00:00 2001 From: Niel Lebeck Date: Sun, 3 Mar 2024 16:43:11 -0800 Subject: [PATCH 059/223] Add SettingsHandler unit tests exercising the edge case in PR #8704 --- .../UnitTests/Common/SettingsHandlerTest.cpp | 54 ++++++++++++++++++- 1 file changed, 52 insertions(+), 2 deletions(-) diff --git a/Source/UnitTests/Common/SettingsHandlerTest.cpp b/Source/UnitTests/Common/SettingsHandlerTest.cpp index cafa02ce988b..2007c4c9b28a 100644 --- a/Source/UnitTests/Common/SettingsHandlerTest.cpp +++ b/Source/UnitTests/Common/SettingsHandlerTest.cpp @@ -18,6 +18,27 @@ Common::SettingsHandler::Buffer BUFFER_A{0x91, 0x91, 0x90, 0xEE, 0xD1, 0x2F, 0xF Common::SettingsHandler::Buffer BUFFER_B{ 0x91, 0x91, 0x90, 0xE2, 0x9A, 0x38, 0xFD, 0x55, 0x42, 0xEA, 0xC4, 0xF6, 0x5E, 0xF, 0xDF, 0xE7, 0xC3, 0x0A, 0xBB, 0x9C, 0x50, 0xB1, 0x10, 0x82, 0xB4, 0x8A, 0x0D, 0xBE, 0xCD, 0x72, 0xF4}; + +// The encrypted bytes corresponding to the following setting: +// "\xFA" = "a" +// +// This setting triggers the edge case fixed in PR #8704: the key's first and only byte matches the +// first byte of the initial encryption key, resulting in a null encoded byte on the first attempt +// to encode the line. +Common::SettingsHandler::Buffer BUFFER_C{0xF0, 0x0E, 0xD4, 0xB2, 0xAA, 0x44}; + +// The encrypted bytes corresponding to the following setting: +// "\xFA\xE9" = "a" +// +// This setting triggers the edge case fixed in PR #8704 twice: +// +// 1. The key's first byte matches the first byte of the initial encryption key, resulting in a null +// encoded byte on the first attempt to encode the line. +// +// 2. The key's second byte matches the first byte of the encryption key after two +// rotations, resulting in a null encoded byte on the second attempt to encode the line (with a +// single LF inserted before the line). +Common::SettingsHandler::Buffer BUFFER_D{0xF0, 0xFE, 0x13, 0x3A, 0x9A, 0x2F, 0x91, 0x33}; } // namespace TEST(SettingsHandlerTest, EncryptSingleSetting) @@ -90,5 +111,34 @@ TEST(SettingsHandlerTest, GetValueAfterReset) EXPECT_EQ(handler.GetValue("key"), ""); } -// TODO: Add test coverage of the edge case fixed in -// https://github.com/dolphin-emu/dolphin/pull/8704. +TEST(SettingsHandlerTest, EncryptAddsLFOnNullChar) +{ + Common::SettingsHandler handler; + handler.AddSetting("\xFA", "a"); + Common::SettingsHandler::Buffer buffer = handler.GetBytes(); + + EXPECT_TRUE(std::equal(buffer.begin(), buffer.end(), BUFFER_C.begin(), BUFFER_C.end())); +} + +TEST(SettingsHandlerTest, EncryptAddsLFOnNullCharTwice) +{ + Common::SettingsHandler handler; + handler.AddSetting("\xFA\xE9", "a"); + Common::SettingsHandler::Buffer buffer = handler.GetBytes(); + + EXPECT_TRUE(std::equal(buffer.begin(), buffer.end(), BUFFER_D.begin(), BUFFER_D.end())); +} + +TEST(SettingsHandlerTest, DecryptSingleAddedLF) +{ + Common::SettingsHandler::Buffer buffer = BUFFER_C; + Common::SettingsHandler handler(std::move(buffer)); + EXPECT_EQ(handler.GetValue("\xFA"), "a"); +} + +TEST(SettingsHandlerTest, DecryptTwoAddedLFs) +{ + Common::SettingsHandler::Buffer buffer = BUFFER_D; + Common::SettingsHandler handler(std::move(buffer)); + EXPECT_EQ(handler.GetValue("\xFA\xE9"), "a"); +} From 0645b4d5792111cc992b85cda6694c95ab43408f Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Tue, 5 Mar 2024 14:02:45 -0800 Subject: [PATCH 060/223] BranchWatchDialog: Fix Misc. Errata Window icon was missing from QDialog lacking a parent. Giving the QDialog a parent revealed I had failed to make it properly non-modal, necessitating further changes. Settings save less often, now only upon destruction. Construction of BranchWatchDialog is now deferred. --- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 30 ++++++++++--------- .../DolphinQt/Debugger/BranchWatchDialog.h | 10 +++++-- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 18 ++++++----- Source/Core/DolphinQt/Debugger/CodeWidget.h | 2 +- 4 files changed, 35 insertions(+), 25 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index f5e6a5acc3c8..f45da30d20f9 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -504,15 +504,9 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br restoreGeometry(settings.value(QStringLiteral("branchwatchdialog/geometry")).toByteArray()); } -void BranchWatchDialog::done(int r) +BranchWatchDialog::~BranchWatchDialog() { - if (m_timer->isActive()) - m_timer->stop(); - auto& settings = Settings::GetQSettings(); - settings.setValue(QStringLiteral("branchwatchdialog/geometry"), saveGeometry()); - settings.setValue(QStringLiteral("branchwatchdialog/tableheader/state"), - m_table_view->horizontalHeader()->saveState()); - QDialog::done(r); + SaveSettings(); } static constexpr int BRANCH_WATCH_TOOL_TIMER_DELAY_MS = 100; @@ -523,18 +517,18 @@ static bool TimerCondition(const Core::BranchWatch& branch_watch, Core::State st return branch_watch.GetRecordingActive() && state > Core::State::Paused; } -int BranchWatchDialog::exec() +void BranchWatchDialog::hideEvent(QHideEvent* event) { - if (TimerCondition(m_branch_watch, Core::GetState())) - m_timer->start(BRANCH_WATCH_TOOL_TIMER_DELAY_MS); - return QDialog::exec(); + if (m_timer->isActive()) + m_timer->stop(); + QDialog::hideEvent(event); } -void BranchWatchDialog::open() +void BranchWatchDialog::showEvent(QShowEvent* event) { if (TimerCondition(m_branch_watch, Core::GetState())) m_timer->start(BRANCH_WATCH_TOOL_TIMER_DELAY_MS); - QDialog::open(); + QDialog::showEvent(event); } void BranchWatchDialog::OnStartPause(bool checked) @@ -927,6 +921,14 @@ void BranchWatchDialog::OnTableCopyAddress(QModelIndexList index_list) QApplication::clipboard()->setText(text); } +void BranchWatchDialog::SaveSettings() +{ + auto& settings = Settings::GetQSettings(); + settings.setValue(QStringLiteral("branchwatchdialog/geometry"), saveGeometry()); + settings.setValue(QStringLiteral("branchwatchdialog/tableheader/state"), + m_table_view->horizontalHeader()->saveState()); +} + void BranchWatchDialog::Update() { if (m_branch_watch.GetRecordingPhase() == Core::BranchWatch::Phase::Blacklist) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h index b167ca106dff..d97972980c2c 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -49,9 +49,11 @@ class BranchWatchDialog : public QDialog public: explicit BranchWatchDialog(Core::System& system, Core::BranchWatch& branch_watch, CodeWidget* code_widget, QWidget* parent = nullptr); - void done(int r) override; - int exec() override; - void open() override; + ~BranchWatchDialog() override; + +protected: + void hideEvent(QHideEvent* event) override; + void showEvent(QShowEvent* event) override; private: void OnStartPause(bool checked); @@ -82,6 +84,8 @@ class BranchWatchDialog : public QDialog void OnTableSetNOP(QModelIndexList index_list); void OnTableCopyAddress(QModelIndexList index_list); + void SaveSettings(); + public: // TODO: Step doesn't cause EmulationStateChanged to be emitted, so it has to call this manually. void Update(); diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 94662bba7180..382ec0386113 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -36,10 +36,7 @@ static const QString BOX_SPLITTER_STYLESHEET = QStringLiteral( "QSplitter::handle { border-top: 1px dashed black; width: 1px; margin-left: 10px; " "margin-right: 10px; }"); -CodeWidget::CodeWidget(QWidget* parent) - : QDockWidget(parent), m_system(Core::System::GetInstance()), - m_branch_watch_dialog( - new BranchWatchDialog(m_system, m_system.GetPowerPC().GetBranchWatch(), this)) +CodeWidget::CodeWidget(QWidget* parent) : QDockWidget(parent), m_system(Core::System::GetInstance()) { setWindowTitle(tr("Code")); setObjectName(QStringLiteral("code")); @@ -215,7 +212,12 @@ void CodeWidget::ConnectWidgets() void CodeWidget::OnBranchWatchDialog() { - m_branch_watch_dialog->open(); + if (m_branch_watch_dialog == nullptr) + { + m_branch_watch_dialog = + new BranchWatchDialog(m_system, m_system.GetPowerPC().GetBranchWatch(), this, this); + } + m_branch_watch_dialog->show(); m_branch_watch_dialog->raise(); m_branch_watch_dialog->activateWindow(); } @@ -397,7 +399,8 @@ void CodeWidget::UpdateSymbols() // TODO: There seems to be a lack of a ubiquitous signal for when symbols change. // This is the best location to catch the signals from MenuBar and CodeViewWidget. - m_branch_watch_dialog->UpdateSymbols(); + if (m_branch_watch_dialog != nullptr) + m_branch_watch_dialog->UpdateSymbols(); } void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol) @@ -470,7 +473,8 @@ void CodeWidget::Step() // Will get a UpdateDisasmDialog(), don't update the GUI here. // TODO: Step doesn't cause EmulationStateChanged to be emitted, so it has to call this manually. - m_branch_watch_dialog->Update(); + if (m_branch_watch_dialog != nullptr) + m_branch_watch_dialog->Update(); } void CodeWidget::StepOver() diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.h b/Source/Core/DolphinQt/Debugger/CodeWidget.h index e0a5679bfb16..7ccd2af2f3f5 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.h @@ -72,7 +72,7 @@ class CodeWidget : public QDockWidget Core::System& m_system; - BranchWatchDialog* m_branch_watch_dialog; + BranchWatchDialog* m_branch_watch_dialog = nullptr; QLineEdit* m_search_address; QPushButton* m_branch_watch; From fe61efcd7a6539db9820c583de5c4ad2518769a6 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Mon, 4 Mar 2024 16:45:25 -0800 Subject: [PATCH 061/223] DVDInterface: Modernize With CPUThreadGuard --- Source/Android/jni/MainAndroid.cpp | 3 ++- Source/Core/Core/HW/DVD/DVDInterface.cpp | 20 +++++++++++--------- Source/Core/Core/HW/DVD/DVDInterface.h | 11 ++++++----- Source/Core/Core/HW/WII_IPC.cpp | 7 +++++-- Source/Core/Core/Movie.cpp | 13 ++++++------- Source/Core/DolphinQt/GameList/GameList.cpp | 5 ++--- Source/Core/DolphinQt/MainWindow.cpp | 12 +++++++----- 7 files changed, 39 insertions(+), 32 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 6a74cabd8754..27374cb83a62 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -635,7 +635,8 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_ChangeDisc(J HostThreadLock guard; const std::string path = GetJString(env, jFile); __android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Change Disc: %s", path.c_str()); - Core::RunAsCPUThread([&path] { Core::System::GetInstance().GetDVDInterface().ChangeDisc(path); }); + auto& system = Core::System::GetInstance(); + system.GetDVDInterface().ChangeDisc(Core::CPUThreadGuard{system}, path); } JNIEXPORT jobject JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetLogTypeNames(JNIEnv* env, diff --git a/Source/Core/Core/HW/DVD/DVDInterface.cpp b/Source/Core/Core/HW/DVD/DVDInterface.cpp index 298d35827378..adf16777abb8 100644 --- a/Source/Core/Core/HW/DVD/DVDInterface.cpp +++ b/Source/Core/Core/HW/DVD/DVDInterface.cpp @@ -23,6 +23,7 @@ #include "Core/AchievementManager.h" #include "Core/Config/MainSettings.h" #include "Core/Config/SessionSettings.h" +#include "Core/Core.h" #include "Core/CoreTiming.h" #include "Core/DolphinAnalytics.h" #include "Core/HW/AudioInterface.h" @@ -419,7 +420,7 @@ bool DVDInterface::IsDiscInside() const void DVDInterface::AutoChangeDiscCallback(Core::System& system, u64 userdata, s64 cyclesLate) { - system.GetDVDInterface().AutoChangeDisc(); + system.GetDVDInterface().AutoChangeDisc(Core::CPUThreadGuard{system}); } void DVDInterface::EjectDiscCallback(Core::System& system, u64 userdata, s64 cyclesLate) @@ -441,7 +442,7 @@ void DVDInterface::InsertDiscCallback(Core::System& system, u64 userdata, s64 cy } // Must only be called on the CPU thread -void DVDInterface::EjectDisc(EjectCause cause) +void DVDInterface::EjectDisc(const Core::CPUThreadGuard& guard, EjectCause cause) { m_system.GetCoreTiming().ScheduleEvent(0, m_eject_disc); if (cause == EjectCause::User) @@ -449,7 +450,8 @@ void DVDInterface::EjectDisc(EjectCause cause) } // Must only be called on the CPU thread -void DVDInterface::ChangeDisc(const std::vector& paths) +void DVDInterface::ChangeDisc(const Core::CPUThreadGuard& guard, + const std::vector& paths) { ASSERT_MSG(DISCIO, !paths.empty(), "Trying to insert an empty list of discs"); @@ -459,11 +461,11 @@ void DVDInterface::ChangeDisc(const std::vector& paths) m_auto_disc_change_index = 0; } - ChangeDisc(paths[0]); + ChangeDisc(guard, paths[0]); } // Must only be called on the CPU thread -void DVDInterface::ChangeDisc(const std::string& new_path) +void DVDInterface::ChangeDisc(const Core::CPUThreadGuard& guard, const std::string& new_path) { if (!m_disc_path_to_insert.empty()) { @@ -471,7 +473,7 @@ void DVDInterface::ChangeDisc(const std::string& new_path) return; } - EjectDisc(EjectCause::User); + EjectDisc(guard, EjectCause::User); m_disc_path_to_insert = new_path; m_system.GetCoreTiming().ScheduleEvent(m_system.GetSystemTimers().GetTicksPerSecond(), @@ -491,13 +493,13 @@ void DVDInterface::ChangeDisc(const std::string& new_path) } // Must only be called on the CPU thread -bool DVDInterface::AutoChangeDisc() +bool DVDInterface::AutoChangeDisc(const Core::CPUThreadGuard& guard) { if (m_auto_disc_change_paths.empty()) return false; m_auto_disc_change_index = (m_auto_disc_change_index + 1) % m_auto_disc_change_paths.size(); - ChangeDisc(m_auto_disc_change_paths[m_auto_disc_change_index]); + ChangeDisc(guard, m_auto_disc_change_paths[m_auto_disc_change_index]); return true; } @@ -1096,7 +1098,7 @@ void DVDInterface::ExecuteCommand(ReplyType reply_type) } else if (force_eject) { - EjectDisc(EjectCause::Software); + EjectDisc(Core::CPUThreadGuard{m_system}, EjectCause::Software); } break; } diff --git a/Source/Core/Core/HW/DVD/DVDInterface.h b/Source/Core/Core/HW/DVD/DVDInterface.h index f01558cc1e3f..600edc5050eb 100644 --- a/Source/Core/Core/HW/DVD/DVDInterface.h +++ b/Source/Core/Core/HW/DVD/DVDInterface.h @@ -17,8 +17,9 @@ class PointerWrap; namespace Core { +class CPUThreadGuard; class System; -} +} // namespace Core namespace CoreTiming { struct EventType; @@ -140,10 +141,10 @@ class DVDInterface void SetDisc(std::unique_ptr disc, std::optional> auto_disc_change_paths); bool IsDiscInside() const; - void EjectDisc(EjectCause cause); // Must only be called on the CPU thread - void ChangeDisc(const std::vector& paths); // Must only be called on the CPU thread - void ChangeDisc(const std::string& new_path); // Must only be called on the CPU thread - bool AutoChangeDisc(); // Must only be called on the CPU thread + void EjectDisc(const Core::CPUThreadGuard& guard, EjectCause cause); + void ChangeDisc(const Core::CPUThreadGuard& guard, const std::vector& paths); + void ChangeDisc(const Core::CPUThreadGuard& guard, const std::string& new_path); + bool AutoChangeDisc(const Core::CPUThreadGuard& guard); // This function returns true and calls SConfig::SetRunningGameMetadata(Volume&, Partition&) // if both of the following conditions are true: diff --git a/Source/Core/Core/HW/WII_IPC.cpp b/Source/Core/Core/HW/WII_IPC.cpp index b3c7289a87f2..4243f57ae6c2 100644 --- a/Source/Core/Core/HW/WII_IPC.cpp +++ b/Source/Core/Core/HW/WII_IPC.cpp @@ -6,6 +6,7 @@ #include "Common/ChunkFile.h" #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" +#include "Core/Core.h" #include "Core/CoreTiming.h" #include "Core/HW/DVD/DVDInterface.h" #include "Core/HW/MMIO.h" @@ -176,7 +177,8 @@ void WiiIPC::RegisterMMIO(MMIO::Mapping* mmio, u32 base) if (wii_ipc.m_gpio_out[GPIO::DO_EJECT]) { INFO_LOG_FMT(WII_IPC, "Ejecting disc due to GPIO write"); - system.GetDVDInterface().EjectDisc(DVD::EjectCause::Software); + system.GetDVDInterface().EjectDisc(Core::CPUThreadGuard{system}, + DVD::EjectCause::Software); } // SENSOR_BAR is checked by WiimoteEmu::CameraLogic // TODO: AVE, SLOT_LED @@ -212,7 +214,8 @@ void WiiIPC::RegisterMMIO(MMIO::Mapping* mmio, u32 base) if (wii_ipc.m_gpio_out[GPIO::DO_EJECT]) { INFO_LOG_FMT(WII_IPC, "Ejecting disc due to GPIO write"); - system.GetDVDInterface().EjectDisc(DVD::EjectCause::Software); + system.GetDVDInterface().EjectDisc(Core::CPUThreadGuard{system}, + DVD::EjectCause::Software); } // SENSOR_BAR is checked by WiimoteEmu::CameraLogic // TODO: AVE, SLOT_LED diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index a2e0d9be1f33..ea6e6c0e5ac6 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -1254,13 +1254,12 @@ void MovieManager::PlayController(GCPadStatus* PadStatus, int controllerID) if (m_pad_state.disc) { - Core::RunAsCPUThread([this] { - if (!m_system.GetDVDInterface().AutoChangeDisc()) - { - m_system.GetCPU().Break(); - PanicAlertFmtT("Change the disc to {0}", m_disc_change_filename); - } - }); + const Core::CPUThreadGuard guard(m_system); + if (!m_system.GetDVDInterface().AutoChangeDisc(guard)) + { + m_system.GetCPU().Break(); + PanicAlertFmtT("Change the disc to {0}", m_disc_change_filename); + } } if (m_pad_state.reset) diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 6fc893329ef4..4e1da45033d6 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -879,9 +879,8 @@ void GameList::ChangeDisc() if (!game) return; - Core::RunAsCPUThread([file_path = game->GetFilePath()] { - Core::System::GetInstance().GetDVDInterface().ChangeDisc(file_path); - }); + auto& system = Core::System::GetInstance(); + system.GetDVDInterface().ChangeDisc(Core::CPUThreadGuard{system}, game->GetFilePath()); } QAbstractItemView* GameList::GetActiveView() const diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index ff028f5d376b..ab38f0d04700 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -794,15 +794,17 @@ void MainWindow::ChangeDisc() { std::vector paths = StringListToStdVector(PromptFileNames()); - if (!paths.empty()) - Core::RunAsCPUThread( - [&paths] { Core::System::GetInstance().GetDVDInterface().ChangeDisc(paths); }); + if (paths.empty()) + return; + + auto& system = Core::System::GetInstance(); + system.GetDVDInterface().ChangeDisc(Core::CPUThreadGuard{system}, paths); } void MainWindow::EjectDisc() { - Core::RunAsCPUThread( - [] { Core::System::GetInstance().GetDVDInterface().EjectDisc(DVD::EjectCause::User); }); + auto& system = Core::System::GetInstance(); + system.GetDVDInterface().EjectDisc(Core::CPUThreadGuard{system}, DVD::EjectCause::User); } void MainWindow::OpenUserFolder() From 5418e895232e20896968d27e61dbae7796e4dd94 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 8 Mar 2024 23:26:56 -0500 Subject: [PATCH 062/223] Adjusted achievement progress updates to duration short --- 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 07753776306f..3c5b329a8757 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -1519,7 +1519,7 @@ void AchievementManager::HandleAchievementProgressUpdatedEvent( } OSD::AddMessage( fmt::format("{} {}", m_game_data.achievements[game_data_index].title, value.data()), - OSD::Duration::VERY_LONG, OSD::Color::GREEN, + OSD::Duration::SHORT, OSD::Color::GREEN, (Config::Get(Config::RA_BADGES_ENABLED)) ? DecodeBadgeToOSDIcon(it->second.unlocked_badge.badge) : nullptr); From f71f2c6ba1436653fe8dc18ea9004c12956fcfa6 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 8 Mar 2024 12:01:44 -0800 Subject: [PATCH 063/223] CMakeLists: Add Clang's Specific WShadow Diagnostics For parity with GCC. --- Source/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 4a4cd61b5133..e589e4298366 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -41,6 +41,8 @@ else() check_and_add_flag(UNINITIALIZED -Wuninitialized) check_and_add_flag(LOGICAL_OP -Wlogical-op) check_and_add_flag(SHADOW -Wshadow) + check_and_add_flag(SHADOW_FIELD_IN_CONSTRUCTOR -Wshadow-field-in-constructor) + check_and_add_flag(SHADOW_UNCAPTURED_LOCAL -Wshadow-uncaptured-local) check_and_add_flag(INIT_SELF -Winit-self) check_and_add_flag(MISSING_DECLARATIONS -Wmissing-declarations) check_and_add_flag(MISSING_VARIABLE_DECLARATIONS -Wmissing-variable-declarations) From 967b4ac50441d7deb19c48046cffd337e5ff91d4 Mon Sep 17 00:00:00 2001 From: Avasam Date: Sat, 9 Mar 2024 20:21:04 -0500 Subject: [PATCH 064/223] Fix aspect ratio swapping in Pitfall: The Lost Expedition --- Data/Sys/GameSettings/GPH.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Data/Sys/GameSettings/GPH.ini b/Data/Sys/GameSettings/GPH.ini index ef8b49edb29b..80030e9a7d1e 100644 --- a/Data/Sys/GameSettings/GPH.ini +++ b/Data/Sys/GameSettings/GPH.ini @@ -17,3 +17,7 @@ # for the "Pitfall!" and "Lost Cavern" Atari 2600 games to render correctly. # Otherwise the retro games appear to be stuttering. SafeTextureCacheColorSamples = 2048 + +# Fixes cutscenes playing in a different aspect ratio and gameplay flipping back and forth between 4:3 and 16:9. +WidescreenHeuristicStandardRatio = 1.17 +WidescreenHeuristicWidescreenRatio = 1.56 From f3d1cda67206d3049a2fd518d597df394b2489be Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Sun, 10 Mar 2024 03:25:20 -0400 Subject: [PATCH 065/223] Add PerceptualHDR --- Data/Sys/Shaders/PerceptualHDR.glsl | 92 +++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 Data/Sys/Shaders/PerceptualHDR.glsl diff --git a/Data/Sys/Shaders/PerceptualHDR.glsl b/Data/Sys/Shaders/PerceptualHDR.glsl new file mode 100644 index 000000000000..d9e5db2a1c17 --- /dev/null +++ b/Data/Sys/Shaders/PerceptualHDR.glsl @@ -0,0 +1,92 @@ +/* +[configuration] + +[OptionRangeFloat] +GUIName = Amplificiation +OptionName = AMPLIFICATION +MinValue = 1.0 +MaxValue = 6.0 +StepAmount = 0.25 +DefaultValue = 2.5 + +[OptionRangeFloat] +GUIName = Desaturation +OptionName = DESATURATION +MinValue = 0.0 +MaxValue = 1.0 +StepAmount = 0.1 +DefaultValue = 0.0 + +[/configuration] +*/ + +/***** Linear <--> Oklab *****/ + +const mat4 RGBtoLMS = mat4( + 0.4122214708, 0.2119034982, 0.0883024619, 0.0000000000, + 0.5363325363, 0.6806995451, 0.2817188376, 0.0000000000, + 0.0514459929, 0.1073969566, 0.6299787005, 0.0000000000, + 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); + +const mat4 LMStoOklab = mat4( + 0.2104542553, 1.9779984951, 0.0259040371, 0.0000000000, + 0.7936177850, -2.4285922050, 0.7827717662, 0.0000000000, + -0.0040720468, 0.4505937099, -0.8086757660, 0.0000000000, + 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); + +float4 LinearRGBToOklab(float4 c) +{ + return LMStoOklab * pow(RGBtoLMS * c, float4(1.0 / 3.0)); +} + +const mat4 OklabtoLMS = mat4( + 1.0000000000, 1.0000000000, 1.0000000000, 0.0000000000, + 0.3963377774, -0.1055613458, -0.0894841775, 0.0000000000, + 0.2158037573, -0.0638541728, -1.2914855480, 0.0000000000, + 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); + +const mat4 LMStoRGB = mat4( + 4.0767416621, -1.2684380046, -0.0041960863, 0.0000000000, + -3.3077115913, 2.6097574011, -0.7034186147, 0.0000000000, + 0.2309699292, -0.3413193965, 1.7076147010, 0.0000000000, + 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); + +float4 OklabToLinearRGB(float4 c) +{ + return max(LMStoRGB * pow(OklabtoLMS * c, float4(3.0)), 0.0); +} + +void main() +{ + float4 color = Sample(); + + // Nothing to do here, we are in SDR + if (!OptionEnabled(hdr_output) || !OptionEnabled(linear_space_output)) { + SetOutput(color); + return; + } + + // Renormalize Color to be in SDR Space + const float hdr_paper_white = hdr_paper_white_nits / hdr_sdr_white_nits; + color.rgb /= hdr_paper_white; + + // Convert Color to Oklab (previous conditions garuntee color is linear) + float4 oklab_color = LinearRGBToOklab(color); + + // Amount to raise hdr_paper_white to the power of. + // We divide by 3 because Oklab is a cubic space, this accounts for that. + float lum_pow = pow(oklab_color.x, 1.0) / 3.0; + float sat_pow = pow(oklab_color.x, DESATURATION) / 3.0; + + // The reason we raise hdr_paper_white to a power is so that at low + // luminosities, very little about the colors / brightnesses change. + // However at luminosities of 1.0, the colors and brightnesses are + // able to reach the full range of hdr_paper_white. + + // This is the key to PerceptualHDR working. + oklab_color.x *= pow(AMPLIFICATION, lum_pow); + oklab_color.z *= pow(AMPLIFICATION, sat_pow); + oklab_color.y *= pow(AMPLIFICATION, sat_pow); + + SetOutput(hdr_paper_white * OklabToLinearRGB(oklab_color)); +} From 153d0201a80cb5eec84239396a1d66efc04833fd Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Sun, 10 Mar 2024 03:25:33 -0400 Subject: [PATCH 066/223] Add HDR to Metal --- Source/Core/VideoBackends/Metal/MTLMain.mm | 15 +++++++++++++++ Source/Core/VideoBackends/Metal/MTLUtil.h | 2 ++ Source/Core/VideoBackends/Metal/MTLUtil.mm | 2 ++ 3 files changed, 19 insertions(+) diff --git a/Source/Core/VideoBackends/Metal/MTLMain.mm b/Source/Core/VideoBackends/Metal/MTLMain.mm index cddb8f1c7cb1..56c9b3c68fa7 100644 --- a/Source/Core/VideoBackends/Metal/MTLMain.mm +++ b/Source/Core/VideoBackends/Metal/MTLMain.mm @@ -164,8 +164,23 @@ static bool WindowSystemTypeSupportsMetal(WindowSystemType type) return; NSView* view = static_cast(wsi.render_surface); CAMetalLayer* layer = [CAMetalLayer layer]; + + Util::PopulateBackendInfo(&g_Config); + + if (g_Config.backend_info.bSupportsHDROutput && g_Config.bHDR) + { + [layer setWantsExtendedDynamicRangeContent:YES]; + [layer setPixelFormat:MTLPixelFormatRGBA16Float]; + + const CFStringRef name = kCGColorSpaceExtendedLinearSRGB; + CGColorSpaceRef colorspace = CGColorSpaceCreateWithName(name); + [layer setColorspace:colorspace]; + CGColorSpaceRelease(colorspace); + } + [view setWantsLayer:YES]; [view setLayer:layer]; + wsi.render_surface = layer; #endif } diff --git a/Source/Core/VideoBackends/Metal/MTLUtil.h b/Source/Core/VideoBackends/Metal/MTLUtil.h index 28fb57cb0b0c..a5663b5e3530 100644 --- a/Source/Core/VideoBackends/Metal/MTLUtil.h +++ b/Source/Core/VideoBackends/Metal/MTLUtil.h @@ -3,7 +3,9 @@ #pragma once +#include #include + #include #include "VideoCommon/AbstractShader.h" diff --git a/Source/Core/VideoBackends/Metal/MTLUtil.mm b/Source/Core/VideoBackends/Metal/MTLUtil.mm index c7a5c82e34a2..6ebe745ee64b 100644 --- a/Source/Core/VideoBackends/Metal/MTLUtil.mm +++ b/Source/Core/VideoBackends/Metal/MTLUtil.mm @@ -77,6 +77,8 @@ config->backend_info.bSupportsPartialMultisampleResolve = false; config->backend_info.bSupportsDynamicVertexLoader = true; config->backend_info.bSupportsVSLinePointExpand = true; + config->backend_info.bSupportsHDROutput = + 1.0 < [[NSScreen deepestScreen] maximumPotentialExtendedDynamicRangeColorComponentValue]; } void Metal::Util::PopulateBackendInfoAdapters(VideoConfig* config, From fba333dde52320540bd5ba898e5a9ed22a6362e7 Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Sun, 10 Mar 2024 12:52:54 -0400 Subject: [PATCH 067/223] Update PerceptualHDR with better color space --- Data/Sys/Shaders/PerceptualHDR.glsl | 125 ++++++++++++++++------------ 1 file changed, 71 insertions(+), 54 deletions(-) diff --git a/Data/Sys/Shaders/PerceptualHDR.glsl b/Data/Sys/Shaders/PerceptualHDR.glsl index d9e5db2a1c17..6545992fc4db 100644 --- a/Data/Sys/Shaders/PerceptualHDR.glsl +++ b/Data/Sys/Shaders/PerceptualHDR.glsl @@ -9,51 +9,63 @@ MaxValue = 6.0 StepAmount = 0.25 DefaultValue = 2.5 -[OptionRangeFloat] -GUIName = Desaturation -OptionName = DESATURATION -MinValue = 0.0 -MaxValue = 1.0 -StepAmount = 0.1 -DefaultValue = 0.0 - [/configuration] */ -/***** Linear <--> Oklab *****/ +// ICtCP Colorspace as defined by Dolby here: +// https://professional.dolby.com/siteassets/pdfs/ictcp_dolbywhitepaper_v071.pdf + +/***** Transfer Function *****/ + +const float4 m_1 = float4(2610.0 / 16384.0); +const float4 m_2 = float4(128.0 * 2523.0 / 4096.0); +const float4 m_1_inv = float4(16384.0 / 2610.0); +const float4 m_2_inv = float4(4096.0 / (128.0 * 2523.0)); + +const float4 c_1 = float4(3424.0 / 4096.0); +const float4 c_2 = float4(2413.0 / 4096.0 * 32.0); +const float4 c_3 = float4(2392.0 / 4096.0 * 32.0); + +float4 EOTF_inv(float4 lms) { + float4 y = pow(lms, m_1); + return pow((c_1 + c_2 * y) / (1.0 + c_3 * y), m_2); +} + +float4 EOTF(float4 lms) { + float4 x = pow(lms, m_2_inv); + return pow(-(x - c_1) / (c_3 * x - c_2), m_1_inv); +} + +// This is required as scaling in EOTF space is not linear. +float EOTF_AMPLIFICATION = EOTF_inv(float4(AMPLIFICATION)).x; + +/***** Linear <--> ICtCp *****/ const mat4 RGBtoLMS = mat4( - 0.4122214708, 0.2119034982, 0.0883024619, 0.0000000000, - 0.5363325363, 0.6806995451, 0.2817188376, 0.0000000000, - 0.0514459929, 0.1073969566, 0.6299787005, 0.0000000000, - 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); - -const mat4 LMStoOklab = mat4( - 0.2104542553, 1.9779984951, 0.0259040371, 0.0000000000, - 0.7936177850, -2.4285922050, 0.7827717662, 0.0000000000, - -0.0040720468, 0.4505937099, -0.8086757660, 0.0000000000, - 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); - -float4 LinearRGBToOklab(float4 c) + 1688.0, 683.0, 99.0, 0.0, + 2146.0, 2951.0, 309.0, 0.0, + 262.0, 462.0, 3688.0, 0.0, + 0.0, 0.0, 0.0, 4096.0) / 4096.0; + +const mat4 LMStoICtCp = mat4( + +2048.0, +6610.0, +17933.0, 0.0, + +2048.0, -13613.0, -17390.0, 0.0, + +0.0, +7003.0, -543.0, 0.0, + +0.0, +0.0, +0.0, 4096.0) / 4096.0; + +float4 LinearRGBToICtCP(float4 c) { - return LMStoOklab * pow(RGBtoLMS * c, float4(1.0 / 3.0)); + return LMStoICtCp * EOTF_inv(RGBtoLMS * c); } -const mat4 OklabtoLMS = mat4( - 1.0000000000, 1.0000000000, 1.0000000000, 0.0000000000, - 0.3963377774, -0.1055613458, -0.0894841775, 0.0000000000, - 0.2158037573, -0.0638541728, -1.2914855480, 0.0000000000, - 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); +/***** ICtCp <--> Linear *****/ -const mat4 LMStoRGB = mat4( - 4.0767416621, -1.2684380046, -0.0041960863, 0.0000000000, - -3.3077115913, 2.6097574011, -0.7034186147, 0.0000000000, - 0.2309699292, -0.3413193965, 1.7076147010, 0.0000000000, - 0.0000000000, 0.0000000000, 0.0000000000, 1.0000000000); +mat4 ICtCptoLMS = inverse(LMStoICtCp); +mat4 LMStoRGB = inverse(RGBtoLMS); -float4 OklabToLinearRGB(float4 c) +float4 ICtCpToLinearRGB(float4 c) { - return max(LMStoRGB * pow(OklabtoLMS * c, float4(3.0)), 0.0); + return LMStoRGB * EOTF(ICtCptoLMS * c); } void main() @@ -66,27 +78,32 @@ void main() return; } - // Renormalize Color to be in SDR Space + // Renormalize Color to be in [0.0 - 1.0] SDR Space. We will revert this later. const float hdr_paper_white = hdr_paper_white_nits / hdr_sdr_white_nits; color.rgb /= hdr_paper_white; - // Convert Color to Oklab (previous conditions garuntee color is linear) - float4 oklab_color = LinearRGBToOklab(color); - - // Amount to raise hdr_paper_white to the power of. - // We divide by 3 because Oklab is a cubic space, this accounts for that. - float lum_pow = pow(oklab_color.x, 1.0) / 3.0; - float sat_pow = pow(oklab_color.x, DESATURATION) / 3.0; - - // The reason we raise hdr_paper_white to a power is so that at low - // luminosities, very little about the colors / brightnesses change. - // However at luminosities of 1.0, the colors and brightnesses are - // able to reach the full range of hdr_paper_white. - - // This is the key to PerceptualHDR working. - oklab_color.x *= pow(AMPLIFICATION, lum_pow); - oklab_color.z *= pow(AMPLIFICATION, sat_pow); - oklab_color.y *= pow(AMPLIFICATION, sat_pow); - - SetOutput(hdr_paper_white * OklabToLinearRGB(oklab_color)); + // Convert Color to Perceptual Color Space. This will allow us to do perceptual + // scaling while also being able to use the luminance channel. + float4 ictcp_color = LinearRGBToICtCP(color); + + // Scale the color in perceptual space depending on the percieved luminance. + // + // At low luminances, ~0.0, pow(EOTF_AMPLIFICATION, ~0.0) ~= 1.0, so the + // color will appear to be unchanged. This is important as we don't want to + // over expose dark colors which would not have otherwise been seen. + // + // At high luminances, ~1.0, pow(EOTF_AMPLIFICATION, ~1.0) ~= EOTF_AMPLIFICATION, + // which is equivilant to scaling the color by EOTF_AMPLIFICATION. This is + // important as we want to get the most out of the display, and we want to + // get bright colors to hit their target brightness. + // + // For more information, see this desmos demonstrating this scaling process: + // https://www.desmos.com/calculator/syjyrjsj5c + const float luminance = ictcp_color.x; + ictcp_color *= pow(EOTF_AMPLIFICATION, luminance); + + // Convert back to Linear RGB and output the color to the display. + // We use hdr_paper_white to renormalize the color to the comfortable + // SDR viewing range. + SetOutput(hdr_paper_white * ICtCpToLinearRGB(ictcp_color)); } From b23dbad0985216aa7de57ed58042b022121e7c13 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 01:11:13 -0500 Subject: [PATCH 068/223] InputCommon: Remove some IOKit leftovers. --- Source/Core/InputCommon/CMakeLists.txt | 2 - .../ForceFeedback/ForceFeedbackDevice.h | 9 +- .../ForceFeedback/OSX/DirectInputAdapter.h | 196 ------------------ .../ForceFeedback/OSX/DirectInputConstants.h | 146 ------------- 4 files changed, 3 insertions(+), 350 deletions(-) delete mode 100644 Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputAdapter.h delete mode 100644 Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputConstants.h diff --git a/Source/Core/InputCommon/CMakeLists.txt b/Source/Core/InputCommon/CMakeLists.txt index ed19e12b74b1..0f6652370034 100644 --- a/Source/Core/InputCommon/CMakeLists.txt +++ b/Source/Core/InputCommon/CMakeLists.txt @@ -112,8 +112,6 @@ elseif(APPLE) ControllerInterface/Quartz/Quartz.mm ControllerInterface/Quartz/QuartzKeyboardAndMouse.h ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm - ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp - ControllerInterface/ForceFeedback/ForceFeedbackDevice.h ) target_link_libraries(inputcommon PRIVATE ${COREFOUNDATION_LIBRARY} diff --git a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h b/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h index 0c03e1fd9d60..6a00d2812aa1 100644 --- a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h +++ b/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h @@ -7,16 +7,13 @@ #include #include +#include + #include "Common/Event.h" #include "Common/Flag.h" -#include "InputCommon/ControllerInterface/CoreDevice.h" -#ifdef _WIN32 -#include +#include "InputCommon/ControllerInterface/CoreDevice.h" #include "InputCommon/ControllerInterface/DInput/DInput8.h" -#elif __APPLE__ -#include "InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputAdapter.h" -#endif namespace ciface::ForceFeedback { diff --git a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputAdapter.h b/Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputAdapter.h deleted file mode 100644 index 3c76ce4b4e1c..000000000000 --- a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputAdapter.h +++ /dev/null @@ -1,196 +0,0 @@ -// Copyright 2014 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -/* - * The OS X Force Feedback API is very similar to the DirectInput API, - * but it is no longer object-oriented and all prefixes have been changed. - * - * Our implementation uses the Windows API names so we need to adapt - * for these differences on OS X. - */ - -#pragma once - -#include - -typedef LONG* LPLONG; // Missing type for ForceFeedback.h -#include -#include -#include "Common/CommonTypes.h" // for LONG -#include "DirectInputConstants.h" // Not stricty necessary - -namespace ciface::ForceFeedback -{ -// Prototypes -class IUnknownImpl; -class FFEffectAdapter; -class FFDeviceAdapter; - -// Structs -typedef FFCAPABILITIES DICAPABILITIES; -typedef FFCONDITION DICONDITION; -typedef FFCONSTANTFORCE DICONSTANTFORCE; -typedef FFCUSTOMFORCE DICUSTOMFORCE; -typedef FFEFFECT DIEFFECT; -typedef FFEFFESCAPE DIEFFESCAPE; -typedef FFENVELOPE DIENVELOPE; -typedef FFPERIODIC DIPERIODIC; -typedef FFRAMPFORCE DIRAMPFORCE; - -// Other types -typedef CFUUIDRef GUID; -typedef FFDeviceAdapter* FFDeviceAdapterReference; -typedef FFEffectAdapter* FFEffectAdapterReference; -typedef FFDeviceAdapterReference LPDIRECTINPUTDEVICE8; -typedef FFEffectAdapterReference LPDIRECTINPUTEFFECT; - -// Property structures -#define DIPH_DEVICE 0 - -typedef struct DIPROPHEADER -{ - DWORD dwSize; - DWORD dwHeaderSize; - DWORD dwObj; - DWORD dwHow; -} DIPROPHEADER, *LPDIPROPHEADER; - -typedef struct DIPROPDWORD -{ - DIPROPHEADER diph; - DWORD dwData; -} DIPROPDWORD, *LPDIPROPDWORD; - -class IUnknownImpl : public IUnknown -{ -private: - std::atomic m_cRef; - -public: - IUnknownImpl() : m_cRef(1) {} - virtual ~IUnknownImpl() {} - HRESULT QueryInterface(REFIID iid, LPVOID* ppv) - { - *ppv = nullptr; - - if (CFEqual(&iid, IUnknownUUID)) - *ppv = this; - if (nullptr == *ppv) - return E_NOINTERFACE; - - ((IUnknown*)*ppv)->AddRef(); - - return S_OK; - } - - ULONG AddRef() { return ++m_cRef; } - ULONG Release() - { - if (--m_cRef == 0) - delete this; - - return m_cRef; - } -}; - -class FFEffectAdapter : public IUnknownImpl -{ -private: - // Only used for destruction - FFDeviceObjectReference m_device; - -public: - FFEffectObjectReference m_effect; - - FFEffectAdapter(FFDeviceObjectReference device, FFEffectObjectReference effect) - : m_device(device), m_effect(effect) - { - } - ~FFEffectAdapter() { FFDeviceReleaseEffect(m_device, m_effect); } - HRESULT Download() { return FFEffectDownload(m_effect); } - HRESULT Escape(FFEFFESCAPE* pFFEffectEscape) { return FFEffectEscape(m_effect, pFFEffectEscape); } - HRESULT GetEffectStatus(FFEffectStatusFlag* pFlags) - { - return FFEffectGetEffectStatus(m_effect, pFlags); - } - - HRESULT GetParameters(FFEFFECT* pFFEffect, FFEffectParameterFlag flags) - { - return FFEffectGetParameters(m_effect, pFFEffect, flags); - } - - HRESULT SetParameters(FFEFFECT* pFFEffect, FFEffectParameterFlag flags) - { - return FFEffectSetParameters(m_effect, pFFEffect, flags); - } - - HRESULT Start(UInt32 iterations, FFEffectStartFlag flags) - { - return FFEffectStart(m_effect, iterations, flags); - } - - HRESULT Stop() { return FFEffectStop(m_effect); } - HRESULT Unload() { return FFEffectUnload(m_effect); } -}; - -class FFDeviceAdapter : public IUnknownImpl -{ -public: - FFDeviceObjectReference m_device; - - FFDeviceAdapter(FFDeviceObjectReference device) : m_device(device) {} - ~FFDeviceAdapter() { FFReleaseDevice(m_device); } - static HRESULT Create(io_service_t hidDevice, FFDeviceAdapterReference* pDeviceReference) - { - FFDeviceObjectReference ref; - - HRESULT hr = FFCreateDevice(hidDevice, &ref); - if (SUCCEEDED(hr)) - *pDeviceReference = new FFDeviceAdapter(ref); - - return hr; - } - - HRESULT CreateEffect(CFUUIDRef uuidRef, FFEFFECT* pEffectDefinition, - FFEffectAdapterReference* pEffectReference, IUnknown* punkOuter) - { - FFEffectObjectReference ref; - - HRESULT hr = FFDeviceCreateEffect(m_device, uuidRef, pEffectDefinition, &ref); - if (SUCCEEDED(hr)) - *pEffectReference = new FFEffectAdapter(m_device, ref); - - return hr; - } - - HRESULT Escape(FFEFFESCAPE* pFFEffectEscape) { return FFDeviceEscape(m_device, pFFEffectEscape); } - HRESULT GetForceFeedbackState(FFState* pFFState) - { - return FFDeviceGetForceFeedbackState(m_device, pFFState); - } - - HRESULT SendForceFeedbackCommand(FFCommandFlag flags) - { - return FFDeviceSendForceFeedbackCommand(m_device, flags); - } - - HRESULT SetCooperativeLevel(void* taskIdentifier, FFCooperativeLevelFlag flags) - { - return FFDeviceSetCooperativeLevel(m_device, taskIdentifier, flags); - } - - HRESULT SetProperty(FFProperty property, const LPDIPROPHEADER pdiph) - { - // There are only two properties supported - if (property != DIPROP_FFGAIN && property != DIPROP_AUTOCENTER) - return DIERR_UNSUPPORTED; - - // And they are both device properties - if (pdiph->dwHow != DIPH_DEVICE) - return DIERR_INVALIDPARAM; - - UInt32 value = ((const LPDIPROPDWORD)pdiph)->dwData; - return FFDeviceSetForceFeedbackProperty(m_device, property, &value); - } -}; -} // namespace ciface::ForceFeedback diff --git a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputConstants.h b/Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputConstants.h deleted file mode 100644 index 1f65f028a047..000000000000 --- a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/OSX/DirectInputConstants.h +++ /dev/null @@ -1,146 +0,0 @@ -// Copyright 2014 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -/* - * Define all constants from ForceFeedbackConstants.h with DirectInput prefixes. - * - * No effort was made to confirm if all definitions are actually supported by - * DirectInput, so some of these definitions may actually only exist on Mac OS X. - */ - -// UUIDs -#define GUID_ConstantForce kFFEffectType_ConstantForce_ID -#define GUID_CustomForce kFFEffectType_CustomForce_ID -#define GUID_Damper kFFEffectType_Damper_ID -#define GUID_Friction kFFEffectType_Friction_ID -#define GUID_Inertia kFFEffectType_Inertia_ID -#define GUID_RampForce kFFEffectType_RampForce_ID -#define GUID_SawtoothDown kFFEffectType_SawtoothDown_ID -#define GUID_SawtoothUp kFFEffectType_SawtoothUp_ID -#define GUID_Sine kFFEffectType_Sine_ID -#define GUID_Spring kFFEffectType_Spring_ID -#define GUID_Square kFFEffectType_Square_ID -#define GUID_Triangle kFFEffectType_Triangle_ID - -// Miscellaneous -#define DI_DEGREES FF_DEGREES -#define DI_DOWNLOADSKIPPED FF_DOWNLOADSKIPPED -#define DI_EFFECTRESTARTED FF_EFFECTRESTARTED -#define DI_FALSE FF_FALSE -#define DI_FFNOMINALMAX FF_FFNOMINALMAX -#define DI_INFINITE FF_INFINITE -#define DI_OK FF_OK -#define DI_SECONDS FF_SECONDS -#define DI_TRUNCATED FF_TRUNCATED -#define DI_TRUNCATEDANDRESTARTED FF_TRUNCATEDANDRESTARTED -#define DIEFF_OBJECTOFFSETS FFEFF_OBJECTOFFSETS -#define DIERR_DEVICEFULL FFERR_DEVICEFULL -#define DIERR_DEVICENOTREG FFERR_DEVICENOTREG -#define DIERR_DEVICEPAUSED FFERR_DEVICEPAUSED -#define DIERR_DEVICERELEASED FFERR_DEVICERELEASED -#define DIERR_EFFECTPLAYING FFERR_EFFECTPLAYING -#define DIERR_EFFECTTYPEMISMATCH FFERR_EFFECTTYPEMISMATCH -#define DIERR_EFFECTTYPENOTSUPPORTED FFERR_EFFECTTYPENOTSUPPORTED -#define DIERR_GENERIC FFERR_GENERIC -#define DIERR_HASEFFECTS FFERR_HASEFFECTS -#define DIERR_INCOMPLETEEFFECT FFERR_INCOMPLETEEFFECT -#define DIERR_INTERNAL FFERR_INTERNAL -#define DIERR_INVALIDDOWNLOADID FFERR_INVALIDDOWNLOADID -#define DIERR_INVALIDPARAM FFERR_INVALIDPARAM -#define DIERR_MOREDATA FFERR_MOREDATA -#define DIERR_NOINTERFACE FFERR_NOINTERFACE -#define DIERR_NOTDOWNLOADED FFERR_NOTDOWNLOADED -#define DIERR_NOTINITIALIZED FFERR_NOTINITIALIZED -#define DIERR_OUTOFMEMORY FFERR_OUTOFMEMORY -#define DIERR_UNPLUGGED FFERR_UNPLUGGED -#define DIERR_UNSUPPORTED FFERR_UNSUPPORTED -#define DIERR_UNSUPPORTEDAXIS FFERR_UNSUPPORTEDAXIS -#define DIJOFS_X FFJOFS_X -#define DIJOFS_Y FFJOFS_Y -#define DIJOFS_Z FFJOFS_Z - -// FFCapabilitiesEffectSubType -#define DICAP_ST_KINESTHETIC FFCAP_ST_KINESTHETIC -#define DICAP_ST_VIBRATION FFCAP_ST_VIBRATION - -// FFCapabilitiesEffectType -#define DICAP_ET_CONSTANTFORCE FFCAP_ET_CONSTANTFORCE -#define DICAP_ET_RAMPFORCE FFCAP_ET_RAMPFORCE -#define DICAP_ET_SQUARE FFCAP_ET_SQUARE -#define DICAP_ET_SINE FFCAP_ET_SINE -#define DICAP_ET_TRIANGLE FFCAP_ET_TRIANGLE -#define DICAP_ET_SAWTOOTHUP FFCAP_ET_SAWTOOTHUP -#define DICAP_ET_SAWTOOTHDOWN FFCAP_ET_SAWTOOTHDOWN -#define DICAP_ET_SPRING FFCAP_ET_SPRING -#define DICAP_ET_DAMPER FFCAP_ET_DAMPER -#define DICAP_ET_INERTIA FFCAP_ET_INERTIA -#define DICAP_ET_FRICTION FFCAP_ET_FRICTION -#define DICAP_ET_CUSTOMFORCE FFCAP_ET_CUSTOMFORCE - -// FFCommandFlag -#define DISFFC_RESET FFSFFC_RESET -#define DISFFC_STOPALL FFSFFC_STOPALL -#define DISFFC_PAUSE FFSFFC_PAUSE -#define DISFFC_CONTINUE FFSFFC_CONTINUE -#define DISFFC_SETACTUATORSON FFSFFC_SETACTUATORSON -#define DISFFC_SETACTUATORSOFF FFSFFC_SETACTUATORSOFF - -// FFCooperativeLevelFlag -#define DISCL_EXCLUSIVE FFSCL_EXCLUSIVE -#define DISCL_NONEXCLUSIVE FFSCL_NONEXCLUSIVE -#define DISCL_FOREGROUND FFSCL_FOREGROUND -#define DISCL_BACKGROUND FFSCL_BACKGROUND - -// FFCoordinateSystemFlag -#define DIEFF_CARTESIAN FFEFF_CARTESIAN -#define DIEFF_POLAR FFEFF_POLAR -#define DIEFF_SPHERICAL FFEFF_SPHERICAL - -// FFEffectParameterFlag -#define DIEP_DURATION FFEP_DURATION -#define DIEP_SAMPLEPERIOD FFEP_SAMPLEPERIOD -#define DIEP_GAIN FFEP_GAIN -#define DIEP_TRIGGERBUTTON FFEP_TRIGGERBUTTON -#define DIEP_TRIGGERREPEATINTERVAL FFEP_TRIGGERREPEATINTERVAL -#define DIEP_AXES FFEP_AXES -#define DIEP_DIRECTION FFEP_DIRECTION -#define DIEP_ENVELOPE FFEP_ENVELOPE -#define DIEP_TYPESPECIFICPARAMS FFEP_TYPESPECIFICPARAMS -#define DIEP_STARTDELAY FFEP_STARTDELAY -#define DIEP_ALLPARAMS FFEP_ALLPARAMS -#define DIEP_START FFEP_START -#define DIEP_NORESTART FFEP_NORESTART -#define DIEP_NODOWNLOAD FFEP_NODOWNLOAD -#define DIEB_NOTRIGGER FFEB_NOTRIGGER - -// FFEffectStartFlag -#define DIES_SOLO FFES_SOLO -#define DIES_NODOWNLOAD FFES_NODOWNLOAD - -// FFEffectStatusFlag -#define DIEGES_NOTPLAYING FFEGES_NOTPLAYING -#define DIEGES_PLAYING FFEGES_PLAYING -#define DIEGES_EMULATED FFEGES_EMULATED - -// FFProperty -#define DIPROP_FFGAIN FFPROP_FFGAIN -#define DIPROP_AUTOCENTER FFPROP_AUTOCENTER -// not defined in ForceFeedbackConstants.h -#define DIPROPAUTOCENTER_OFF 0 -#define DIPROPAUTOCENTER_ON 1 - -// FFState -#define DIGFFS_EMPTY FFGFFS_EMPTY -#define DIGFFS_STOPPED FFGFFS_STOPPED -#define DIGFFS_PAUSED FFGFFS_PAUSED -#define DIGFFS_ACTUATORSON FFGFFS_ACTUATORSON -#define DIGFFS_ACTUATORSOFF FFGFFS_ACTUATORSOFF -#define DIGFFS_POWERON FFGFFS_POWERON -#define DIGFFS_POWEROFF FFGFFS_POWEROFF -#define DIGFFS_SAFETYSWITCHON FFGFFS_SAFETYSWITCHON -#define DIGFFS_SAFETYSWITCHOFF FFGFFS_SAFETYSWITCHOFF -#define DIGFFS_USERFFSWITCHON FFGFFS_USERFFSWITCHON -#define DIGFFS_USERFFSWITCHOFF FFGFFS_USERFFSWITCHOFF -#define DIGFFS_DEVICELOST FFGFFS_DEVICELOST From 9941c54911e8ab713aad1f156511bf6552ca4b3b Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 01:31:05 -0500 Subject: [PATCH 069/223] InputCommon: Provide WindowSystemInfo getter for ControllerInterface. --- .../InputCommon/ControllerInterface/ControllerInterface.cpp | 5 +++++ .../InputCommon/ControllerInterface/ControllerInterface.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index b7a9c7f307da..24653acdd12e 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -423,6 +423,11 @@ ciface::InputChannel ControllerInterface::GetCurrentInputChannel() return tls_input_channel; } +WindowSystemInfo ControllerInterface::GetWindowSystemInfo() const +{ + return m_wsi; +} + void ControllerInterface::SetAspectRatioAdjustment(float value) { m_aspect_ratio_adjustment = value; diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h index 837e5135d5b6..d3998a48390e 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h @@ -122,6 +122,8 @@ class ControllerInterface : public ciface::Core::DeviceContainer static void SetCurrentInputChannel(ciface::InputChannel); static ciface::InputChannel GetCurrentInputChannel(); + WindowSystemInfo GetWindowSystemInfo() const; + private: void ClearDevices(); From 498584ac777ac4fc452a83a4380889ef2c99d216 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 01:31:30 -0500 Subject: [PATCH 070/223] InputCommon: Add Quartz InputBackend class. --- .../ControllerInterface.cpp | 11 +--------- .../ControllerInterface/Quartz/Quartz.h | 5 +++-- .../ControllerInterface/Quartz/Quartz.mm | 20 ++++++++++++++----- .../Quartz/QuartzKeyboardAndMouse.mm | 1 + 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index 24653acdd12e..ba3740214a52 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -65,7 +65,7 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi) // nothing needed #endif #ifdef CIFACE_USE_OSX -// nothing needed for Quartz + m_input_backends.emplace_back(ciface::Quartz::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_SDL m_input_backends.emplace_back(ciface::SDL::CreateInputBackend(this)); @@ -166,12 +166,6 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) if (m_wsi.type == WindowSystemType::X11) ciface::XInput2::PopulateDevices(m_wsi.render_window); #endif -#ifdef CIFACE_USE_OSX - if (m_wsi.type == WindowSystemType::MacOS) - { - ciface::Quartz::PopulateDevices(m_wsi.render_window); - } -#endif #ifdef CIFACE_USE_ANDROID ciface::Android::PopulateDevices(); #endif @@ -223,9 +217,6 @@ void ControllerInterface::Shutdown() #ifdef CIFACE_USE_XLIB // nothing needed #endif -#ifdef CIFACE_USE_OSX - ciface::Quartz::DeInit(); -#endif #ifdef CIFACE_USE_ANDROID ciface::Android::Shutdown(); #endif diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h index 8818425344f4..34219e982814 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h @@ -3,8 +3,9 @@ #pragma once +#include "InputCommon/ControllerInterface/InputBackend.h" + namespace ciface::Quartz { -void PopulateDevices(void* window); -void DeInit(); +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); } // namespace ciface::Quartz diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm index 22dc4074d9aa..75054f08b9a2 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm @@ -7,15 +7,25 @@ namespace ciface::Quartz { -void PopulateDevices(void* window) +class InputBackend final : public ciface::InputBackend { - if (!window) - return; +public: + using ciface::InputBackend::InputBackend; + void PopulateDevices() override; +}; - g_controller_interface.AddDevice(std::make_shared(window)); +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) +{ + return std::make_unique(controller_interface); } -void DeInit() +void InputBackend::PopulateDevices() { + const WindowSystemInfo wsi = GetControllerInterface().GetWindowSystemInfo(); + if (wsi.type != WindowSystemType::MacOS) + return; + + GetControllerInterface().AddDevice(std::make_shared(wsi.render_window)); } + } // namespace ciface::Quartz diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm index e41c370edf2f..b21eb48ab478 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm @@ -12,6 +12,7 @@ #include "Core/Host.h" #include "InputCommon/ControllerInterface/ControllerInterface.h" +#include "InputCommon/ControllerInterface/Quartz/Quartz.h" /// Helper class to get window position data from threads other than the main thread @interface DolWindowPositionObserver : NSObject From 8098be3dfa07aa529f61ea2ec4ff4077ef01b2d8 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 01:42:32 -0500 Subject: [PATCH 071/223] InputCommon: Add XInput2 InputBackend class. --- .../ControllerInterface.cpp | 9 +------- .../ControllerInterface/Xlib/XInput2.cpp | 22 +++++++++++++++++-- .../ControllerInterface/Xlib/XInput2.h | 3 ++- 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index ba3740214a52..fa44e8bf793c 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -62,7 +62,7 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi) ciface::Win32::Init(wsi.render_window); #endif #ifdef CIFACE_USE_XLIB -// nothing needed + m_input_backends.emplace_back(ciface::XInput2::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_OSX m_input_backends.emplace_back(ciface::Quartz::CreateInputBackend(this)); @@ -162,10 +162,6 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) #ifdef CIFACE_USE_WIN32 ciface::Win32::PopulateDevices(m_wsi.render_window); #endif -#ifdef CIFACE_USE_XLIB - if (m_wsi.type == WindowSystemType::X11) - ciface::XInput2::PopulateDevices(m_wsi.render_window); -#endif #ifdef CIFACE_USE_ANDROID ciface::Android::PopulateDevices(); #endif @@ -214,9 +210,6 @@ void ControllerInterface::Shutdown() #ifdef CIFACE_USE_WIN32 ciface::Win32::DeInit(); #endif -#ifdef CIFACE_USE_XLIB -// nothing needed -#endif #ifdef CIFACE_USE_ANDROID ciface::Android::Shutdown(); #endif diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp index f041dd16a144..5de0840354f0 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp @@ -66,9 +66,27 @@ constexpr int XINPUT_MAJOR = 2, XINPUT_MINOR = 1; namespace ciface::XInput2 { +class InputBackend final : public ciface::InputBackend +{ +public: + using ciface::InputBackend::InputBackend; + void PopulateDevices() override; +}; + +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) +{ + return std::make_unique(controller_interface); +} + // This function will add zero or more KeyboardMouse objects to devices. -void PopulateDevices(void* const hwnd) +void InputBackend::PopulateDevices() { + const WindowSystemInfo wsi = GetControllerInterface().GetWindowSystemInfo(); + if (wsi.type != WindowSystemType::X11) + return; + + const auto hwnd = wsi.render_window; + Display* dpy = XOpenDisplay(nullptr); // xi_opcode is important; it will be used to identify XInput events by @@ -119,7 +137,7 @@ void PopulateDevices(void* const hwnd) } // Since current_master is a master pointer, its attachment must // be a master keyboard. - g_controller_interface.AddDevice( + GetControllerInterface().AddDevice( std::make_shared((Window)hwnd, xi_opcode, current_master->deviceid, current_master->attachment, scroll_increment)); } diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h index a8960c1d23fc..427c81b18ad2 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h @@ -16,10 +16,11 @@ extern "C" { #include "Common/CommonTypes.h" #include "Common/Matrix.h" #include "InputCommon/ControllerInterface/ControllerInterface.h" +#include "InputCommon/ControllerInterface/InputBackend.h" namespace ciface::XInput2 { -void PopulateDevices(void* const hwnd); +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); class KeyboardMouse : public Core::Device { From 2ac59bf5813ab44dc3e7f067913b0e951e8b6199 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 01:46:33 -0500 Subject: [PATCH 072/223] InputCommon: Add Pipes InputBackend class. --- .../ControllerInterface/ControllerInterface.cpp | 5 +---- .../ControllerInterface/Pipes/Pipes.cpp | 14 +++++++++++++- .../InputCommon/ControllerInterface/Pipes/Pipes.h | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index fa44e8bf793c..71dea5512c2f 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -77,7 +77,7 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi) m_input_backends.emplace_back(ciface::evdev::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_PIPES -// nothing needed + m_input_backends.emplace_back(ciface::Pipes::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_DUALSHOCKUDPCLIENT m_input_backends.emplace_back(ciface::DualShockUDPClient::CreateInputBackend(this)); @@ -165,9 +165,6 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) #ifdef CIFACE_USE_ANDROID ciface::Android::PopulateDevices(); #endif -#ifdef CIFACE_USE_PIPES - ciface::Pipes::PopulateDevices(); -#endif for (auto& backend : m_input_backends) backend->PopulateDevices(); diff --git a/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp b/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp index af7ad7dc6fdf..1a2052089eac 100644 --- a/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp @@ -39,7 +39,19 @@ static double StringToDouble(const std::string& text) return result; } -void PopulateDevices() +class InputBackend final : public ciface::InputBackend +{ +public: + using ciface::InputBackend::InputBackend; + void PopulateDevices() override; +}; + +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) +{ + return std::make_unique(controller_interface); +} + +void InputBackend::PopulateDevices() { // Search the Pipes directory for files that we can open in read-only, // non-blocking mode. The device name is the virtual name of the file. diff --git a/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.h b/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.h index 53fefd0cb50e..857d5e81285a 100644 --- a/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.h +++ b/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.h @@ -21,7 +21,7 @@ namespace ciface::Pipes // SET {L, R} [0, 1] // SET {MAIN, C} [0, 1] [0, 1] -void PopulateDevices(); +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); class PipeDevice : public Core::Device { From 341f99a3f1feaf981bb704909b2dc3b3a0b70245 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 02:09:31 -0500 Subject: [PATCH 073/223] InputCommon: Add Win32 InputBackend class. --- .../ControllerInterface.cpp | 13 ++--- .../ControllerInterface/InputBackend.cpp | 4 ++ .../ControllerInterface/InputBackend.h | 2 + .../ControllerInterface/Win32/Win32.cpp | 53 +++++++++++++------ .../ControllerInterface/Win32/Win32.h | 7 ++- 5 files changed, 50 insertions(+), 29 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index 71dea5512c2f..8f7bed3af1a7 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -59,7 +59,7 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi) m_populating_devices_counter = 1; #ifdef CIFACE_USE_WIN32 - ciface::Win32::Init(wsi.render_window); + m_input_backends.emplace_back(ciface::Win32::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_XLIB m_input_backends.emplace_back(ciface::XInput2::CreateInputBackend(this)); @@ -135,9 +135,8 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) { m_populating_devices_counter.fetch_add(1); - // No need to do anything else in this case. - // Only (Win32) DInput needs the window handle to be updated. - ciface::Win32::ChangeWindow(m_wsi.render_window); + for (auto& backend : m_input_backends) + backend->HandleWindowChange(); if (m_populating_devices_counter.fetch_sub(1) == 1) InvokeDevicesChangedCallbacks(); @@ -159,9 +158,6 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) // do it async, to not risk the emulated controllers default config loading not finding a default // device. -#ifdef CIFACE_USE_WIN32 - ciface::Win32::PopulateDevices(m_wsi.render_window); -#endif #ifdef CIFACE_USE_ANDROID ciface::Android::PopulateDevices(); #endif @@ -204,9 +200,6 @@ void ControllerInterface::Shutdown() // Update control references so shared_ptrs are freed up BEFORE we shutdown the backends. ClearDevices(); -#ifdef CIFACE_USE_WIN32 - ciface::Win32::DeInit(); -#endif #ifdef CIFACE_USE_ANDROID ciface::Android::Shutdown(); #endif diff --git a/Source/Core/InputCommon/ControllerInterface/InputBackend.cpp b/Source/Core/InputCommon/ControllerInterface/InputBackend.cpp index 422d7e911c6e..7b52f55caa4d 100644 --- a/Source/Core/InputCommon/ControllerInterface/InputBackend.cpp +++ b/Source/Core/InputCommon/ControllerInterface/InputBackend.cpp @@ -16,6 +16,10 @@ void InputBackend::UpdateInput(std::vector>& { } +void InputBackend::HandleWindowChange() +{ +} + ControllerInterface& InputBackend::GetControllerInterface() { return m_controller_interface; diff --git a/Source/Core/InputCommon/ControllerInterface/InputBackend.h b/Source/Core/InputCommon/ControllerInterface/InputBackend.h index 80ced7e19417..7d7560385120 100644 --- a/Source/Core/InputCommon/ControllerInterface/InputBackend.h +++ b/Source/Core/InputCommon/ControllerInterface/InputBackend.h @@ -28,6 +28,8 @@ class InputBackend // just add them to the removal list if necessary. virtual void UpdateInput(std::vector>& devices_to_remove); + virtual void HandleWindowChange(); + ControllerInterface& GetControllerInterface(); private: diff --git a/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp b/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp index 21e984796468..36b847aa91f9 100644 --- a/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp @@ -20,13 +20,25 @@ #pragma comment(lib, "OneCoreUAP.Lib") -// Dolphin's render window -static HWND s_hwnd; static std::mutex s_populate_mutex; // TODO is this really needed? static Common::Flag s_first_populate_devices_asked; static HCMNOTIFICATION s_notify_handle; +namespace ciface::Win32 +{ +class InputBackend final : public ciface::InputBackend +{ +public: + InputBackend(ControllerInterface* controller_interface); + ~InputBackend(); + + void PopulateDevices() override; + void HandleWindowChange() override; + HWND GetHWND(); +}; +} // namespace ciface::Win32 + _Pre_satisfies_(EventDataSize >= sizeof(CM_NOTIFY_EVENT_DATA)) static DWORD CALLBACK OnDevicesChanged(_In_ HCMNOTIFICATION hNotify, _In_opt_ PVOID Context, _In_ CM_NOTIFY_ACTION Action, @@ -43,8 +55,9 @@ _Pre_satisfies_(EventDataSize >= sizeof(CM_NOTIFY_EVENT_DATA)) static DWORD CALL std::lock_guard lk_population(s_populate_mutex); // TODO: we could easily use the message passed alongside this event, which tells // whether a device was added or removed, to avoid removing old, still connected, devices - g_controller_interface.PlatformPopulateDevices([] { - ciface::DInput::PopulateDevices(s_hwnd); + g_controller_interface.PlatformPopulateDevices([&] { + ciface::DInput::PopulateDevices( + static_cast(Context)->GetHWND()); ciface::XInput::PopulateDevices(); }); } @@ -52,10 +65,21 @@ _Pre_satisfies_(EventDataSize >= sizeof(CM_NOTIFY_EVENT_DATA)) static DWORD CALL return ERROR_SUCCESS; } -void ciface::Win32::Init(void* hwnd) +namespace ciface::Win32 +{ +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) { - s_hwnd = static_cast(hwnd); + return std::make_unique(controller_interface); +} +HWND InputBackend::GetHWND() +{ + return static_cast(GetControllerInterface().GetWindowSystemInfo().render_window); +} + +InputBackend::InputBackend(ControllerInterface* controller_interface) + : ciface::InputBackend(controller_interface) +{ XInput::Init(); WGInput::Init(); @@ -63,35 +87,32 @@ void ciface::Win32::Init(void* hwnd) .FilterType = CM_NOTIFY_FILTER_TYPE_DEVICEINTERFACE, .u{.DeviceInterface{.ClassGuid = GUID_DEVINTERFACE_HID}}}; const CONFIGRET cfg_rv = - CM_Register_Notification(¬ify_filter, nullptr, OnDevicesChanged, &s_notify_handle); + CM_Register_Notification(¬ify_filter, this, OnDevicesChanged, &s_notify_handle); if (cfg_rv != CR_SUCCESS) { ERROR_LOG_FMT(CONTROLLERINTERFACE, "CM_Register_Notification failed: {:x}", cfg_rv); } } -void ciface::Win32::PopulateDevices(void* hwnd) +void InputBackend::PopulateDevices() { - s_hwnd = static_cast(hwnd); std::lock_guard lk_population(s_populate_mutex); s_first_populate_devices_asked.Set(); - ciface::DInput::PopulateDevices(s_hwnd); + ciface::DInput::PopulateDevices(GetHWND()); ciface::XInput::PopulateDevices(); ciface::WGInput::PopulateDevices(); } -void ciface::Win32::ChangeWindow(void* hwnd) +void InputBackend::HandleWindowChange() { - s_hwnd = static_cast(hwnd); std::lock_guard lk_population(s_populate_mutex); - ciface::DInput::ChangeWindow(s_hwnd); + ciface::DInput::ChangeWindow(GetHWND()); } -void ciface::Win32::DeInit() +InputBackend::~InputBackend() { s_first_populate_devices_asked.Clear(); DInput::DeInit(); - s_hwnd = nullptr; if (s_notify_handle) { @@ -106,3 +127,5 @@ void ciface::Win32::DeInit() XInput::DeInit(); WGInput::DeInit(); } + +} // namespace ciface::Win32 diff --git a/Source/Core/InputCommon/ControllerInterface/Win32/Win32.h b/Source/Core/InputCommon/ControllerInterface/Win32/Win32.h index c842b5c6b5c6..17e46c54b900 100644 --- a/Source/Core/InputCommon/ControllerInterface/Win32/Win32.h +++ b/Source/Core/InputCommon/ControllerInterface/Win32/Win32.h @@ -3,10 +3,9 @@ #pragma once +#include "InputCommon/ControllerInterface/InputBackend.h" + namespace ciface::Win32 { -void Init(void* hwnd); -void PopulateDevices(void* hwnd); -void ChangeWindow(void* hwnd); -void DeInit(); +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); } // namespace ciface::Win32 From 3665f7abac4d5c93936f0325fe40bba73703813d Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 02:20:54 -0500 Subject: [PATCH 074/223] InputCommon: Implement xlib window change logic. --- .../ControllerInterface/ControllerInterface.cpp | 2 +- .../ControllerInterface/Xlib/XInput2.cpp | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index 8f7bed3af1a7..9c272fdec423 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -128,7 +128,7 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) // or removing them as we are populating them (causing missing or duplicate devices). std::lock_guard lk_population(m_devices_population_mutex); -#if defined(CIFACE_USE_WIN32) && !defined(CIFACE_USE_XLIB) && !defined(CIFACE_USE_OSX) +#if defined(CIFACE_USE_WIN32) && !defined(CIFACE_USE_OSX) // If only the window changed, avoid removing and re-adding all devices. // Instead only refresh devices that require the window handle. if (reason == RefreshReason::WindowChangeOnly) diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp index 5de0840354f0..e4b717e3af33 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp @@ -66,11 +66,14 @@ constexpr int XINPUT_MAJOR = 2, XINPUT_MINOR = 1; namespace ciface::XInput2 { +constexpr std::string_view SOURCE_NAME = "XInput2"; + class InputBackend final : public ciface::InputBackend { public: using ciface::InputBackend::InputBackend; void PopulateDevices() override; + void HandleWindowChange() override; }; std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) @@ -78,6 +81,14 @@ std::unique_ptr CreateInputBackend(ControllerInterface* co return std::make_unique(controller_interface); } +void InputBackend::HandleWindowChange() +{ + GetControllerInterface().RemoveDevice( + [](const auto* dev) { return dev->GetSource() == SOURCE_NAME; }, true); + + PopulateDevices(); +} + // This function will add zero or more KeyboardMouse objects to devices. void InputBackend::PopulateDevices() { @@ -400,7 +411,7 @@ std::string KeyboardMouse::GetName() const std::string KeyboardMouse::GetSource() const { - return "XInput2"; + return std::string(SOURCE_NAME); } KeyboardMouse::Key::Key(Display* const display, KeyCode keycode, const char* keyboard) From 8583b6751abe08334329c7cae99c83df82683ce2 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 02:28:18 -0500 Subject: [PATCH 075/223] InputCommon: Handle window change in Quartz. --- .../ControllerInterface/ControllerInterface.cpp | 3 +-- .../ControllerInterface/Quartz/Quartz.h | 4 ++++ .../ControllerInterface/Quartz/Quartz.mm | 15 +++++++++++++++ .../Quartz/QuartzKeyboardAndMouse.mm | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index 9c272fdec423..b82cba645edc 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -128,7 +128,6 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) // or removing them as we are populating them (causing missing or duplicate devices). std::lock_guard lk_population(m_devices_population_mutex); -#if defined(CIFACE_USE_WIN32) && !defined(CIFACE_USE_OSX) // If only the window changed, avoid removing and re-adding all devices. // Instead only refresh devices that require the window handle. if (reason == RefreshReason::WindowChangeOnly) @@ -140,9 +139,9 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) if (m_populating_devices_counter.fetch_sub(1) == 1) InvokeDevicesChangedCallbacks(); + return; } -#endif m_populating_devices_counter.fetch_add(1); diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h index 34219e982814..b2c6906e42e9 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.h @@ -3,9 +3,13 @@ #pragma once +#include + #include "InputCommon/ControllerInterface/InputBackend.h" namespace ciface::Quartz { +std::string GetSourceName(); + std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); } // namespace ciface::Quartz diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm index 75054f08b9a2..5d525958358d 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm @@ -7,11 +7,17 @@ namespace ciface::Quartz { +std::string GetSourceName() +{ + return "Quartz"; +} + class InputBackend final : public ciface::InputBackend { public: using ciface::InputBackend::InputBackend; void PopulateDevices() override; + void HandleWindowChange() override; }; std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) @@ -19,6 +25,15 @@ return std::make_unique(controller_interface); } +void InputBackend::HandleWindowChange() +{ + const std::string source_name = GetSourceName(); + GetControllerInterface().RemoveDevice( + [&](const auto* dev) { return dev->GetSource() == source_name; }, true); + + PopulateDevices(); +} + void InputBackend::PopulateDevices() { const WindowSystemInfo wsi = GetControllerInterface().GetWindowSystemInfo(); diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm index b21eb48ab478..55f212900d7d 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm @@ -280,7 +280,7 @@ - (void)dealloc std::string KeyboardAndMouse::GetSource() const { - return "Quartz"; + return Quartz::GetSourceName(); } ControlState KeyboardAndMouse::Cursor::GetState() const From a9a9fdd9e903d47ec83aa7385e7be54871abbf0b Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 11 Mar 2024 02:36:07 -0500 Subject: [PATCH 076/223] InputCommon: Add Android InputBackend class. --- .../ControllerInterface/Android/Android.cpp | 30 +++++++++++++++---- .../ControllerInterface/Android/Android.h | 7 ++--- .../ControllerInterface.cpp | 10 +------ 3 files changed, 28 insertions(+), 19 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp index 50858cd3de24..69f0e5b5ec4f 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp @@ -23,6 +23,7 @@ #include "InputCommon/ControllerInterface/ControllerInterface.h" +#include "InputCommon/ControllerInterface/InputBackend.h" #include "jni/AndroidCommon/AndroidCommon.h" #include "jni/AndroidCommon/IDCache.h" #include "jni/Input/CoreDevice.h" @@ -444,6 +445,23 @@ std::shared_ptr FindDevice(jint device_id) namespace ciface::Android { +class InputBackend final : public ciface::InputBackend +{ +public: + using ciface::InputBackend::InputBackend; + ~InputBackend(); + void PopulateDevices() override; + +private: + void AddDevice(JNIEnv* env, int device_id); + void AddSensorDevice(JNIEnv* env); +}; + +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface) +{ + return std::make_unique(controller_interface); +} + class AndroidInput : public Core::Device::Input { public: @@ -885,7 +903,7 @@ void Init() s_controller_interface_register_input_device_listener); } -void Shutdown() +InputBackend::~InputBackend() { JNIEnv* env = IDCache::GetEnvForThread(); @@ -903,7 +921,7 @@ void Shutdown() env->DeleteGlobalRef(s_keycodes_array); } -static void AddDevice(JNIEnv* env, int device_id) +void InputBackend::AddDevice(JNIEnv* env, int device_id) { jobject input_device = env->CallStaticObjectMethod(s_input_device_class, s_input_device_get_device, device_id); @@ -921,7 +939,7 @@ static void AddDevice(JNIEnv* env, int device_id) if (device->Inputs().empty() && device->Outputs().empty()) return; - g_controller_interface.AddDevice(device); + GetControllerInterface().AddDevice(device); Core::DeviceQualifier qualifier; qualifier.FromDevice(device.get()); @@ -936,7 +954,7 @@ static void AddDevice(JNIEnv* env, int device_id) env->DeleteLocalRef(j_qualifier); } -static void AddSensorDevice(JNIEnv* env) +void InputBackend::AddSensorDevice(JNIEnv* env) { // Device sensors (accelerometer, etc.) aren't associated with any Android InputDevice. // Create an otherwise empty Dolphin input device so that they have somewhere to live. @@ -946,7 +964,7 @@ static void AddSensorDevice(JNIEnv* env) if (device->Inputs().empty() && device->Outputs().empty()) return; - g_controller_interface.AddDevice(device); + GetControllerInterface().AddDevice(device); Core::DeviceQualifier qualifier; qualifier.FromDevice(device.get()); @@ -959,7 +977,7 @@ static void AddSensorDevice(JNIEnv* env) env->DeleteLocalRef(j_qualifier); } -void PopulateDevices() +void InputBackend::PopulateDevices() { INFO_LOG_FMT(CONTROLLERINTERFACE, "Android populating devices"); diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.h b/Source/Core/InputCommon/ControllerInterface/Android/Android.h index 8b8478d7acd2..e63ac4f2da1d 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.h +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.h @@ -3,11 +3,10 @@ #pragma once +#include "InputCommon/ControllerInterface/InputBackend.h" + namespace ciface::Android { -void Init(); -void Shutdown(); - -void PopulateDevices(); +std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); } // namespace ciface::Android diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index b82cba645edc..ab266292bcd5 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -71,7 +71,7 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi) m_input_backends.emplace_back(ciface::SDL::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_ANDROID - ciface::Android::Init(); + m_input_backends.emplace_back(ciface::Android::CreateInputBackend(this)); #endif #ifdef CIFACE_USE_EVDEV m_input_backends.emplace_back(ciface::evdev::CreateInputBackend(this)); @@ -157,10 +157,6 @@ void ControllerInterface::RefreshDevices(RefreshReason reason) // do it async, to not risk the emulated controllers default config loading not finding a default // device. -#ifdef CIFACE_USE_ANDROID - ciface::Android::PopulateDevices(); -#endif - for (auto& backend : m_input_backends) backend->PopulateDevices(); @@ -199,10 +195,6 @@ void ControllerInterface::Shutdown() // Update control references so shared_ptrs are freed up BEFORE we shutdown the backends. ClearDevices(); -#ifdef CIFACE_USE_ANDROID - ciface::Android::Shutdown(); -#endif - // Empty the container of input backends to deconstruct and deinitialize them. m_input_backends.clear(); From eced34f3f394b5ea3bd0cc0785d8dd354d361783 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Tue, 9 Jan 2024 01:00:59 +0100 Subject: [PATCH 077/223] Core/HW/WiimoteEmu: Allow storing and reporting up to 4 camera objects, like a real Wiimote. --- Source/Core/Core/HW/WiimoteEmu/Camera.cpp | 4 ++-- Source/Core/Core/HW/WiimoteEmu/Camera.h | 2 +- Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp | 6 +++--- Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.h | 7 ++++--- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Source/Core/Core/HW/WiimoteEmu/Camera.cpp b/Source/Core/Core/HW/WiimoteEmu/Camera.cpp index 593c7bc87fb6..7b68ab9d5f82 100644 --- a/Source/Core/Core/HW/WiimoteEmu/Camera.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/Camera.cpp @@ -59,7 +59,7 @@ CameraLogic::GetCameraPoints(const Common::Matrix44& transform, Common::Vec2 fie using Common::Vec3; using Common::Vec4; - const std::array leds{ + const std::array leds{ Vec3{-SENSOR_BAR_LED_SEPARATION / 2, 0, 0}, Vec3{SENSOR_BAR_LED_SEPARATION / 2, 0, 0}, }; @@ -68,7 +68,7 @@ CameraLogic::GetCameraPoints(const Common::Matrix44& transform, Common::Vec2 fie Matrix44::Perspective(field_of_view.y, field_of_view.x / field_of_view.y, 0.001f, 1000) * Matrix44::FromMatrix33(Matrix33::RotateX(float(MathUtil::TAU / 4))) * transform; - std::array camera_points; + std::array camera_points; std::transform(leds.begin(), leds.end(), camera_points.begin(), [&](const Vec3& v) { const auto point = camera_view * Vec4(v, 1.0); diff --git a/Source/Core/Core/HW/WiimoteEmu/Camera.h b/Source/Core/Core/HW/WiimoteEmu/Camera.h index 693b07e515e9..316ee5ec3b15 100644 --- a/Source/Core/Core/HW/WiimoteEmu/Camera.h +++ b/Source/Core/Core/HW/WiimoteEmu/Camera.h @@ -126,7 +126,7 @@ class CameraLogic : public I2CSlave // FYI: A real wiimote normally only returns 1 point for each LED cluster (2 total). // Sending all 4 points can actually cause some stuttering issues. - static constexpr int NUM_POINTS = 2; + static constexpr int NUM_POINTS = 4; // Range from 0-15. Small values (2-4) seem to be very typical. // This is reduced based on distance from sensor bar. diff --git a/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp b/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp index 3157e8b9c867..a5a223712cf4 100644 --- a/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp @@ -82,7 +82,7 @@ SerializedWiimoteState SerializeDesiredState(const DesiredWiimoteState& state) if (has_camera) { - for (size_t i = 0; i < 2; ++i) + for (size_t i = 0; i < state.camera_points.size(); ++i) { const u16 camera_x = state.camera_points[i].position.x; // 10 bits const u16 camera_y = state.camera_points[i].position.y; // 10 bits @@ -178,7 +178,7 @@ bool DeserializeDesiredState(DesiredWiimoteState* state, const SerializedWiimote else if (has_accel) s += 4; if (has_camera) - s += 6; + s += 12; if (has_motion_plus) s += 6; switch (extension) @@ -260,7 +260,7 @@ bool DeserializeDesiredState(DesiredWiimoteState* state, const SerializedWiimote if (has_camera) { - for (size_t i = 0; i < 2; ++i) + for (size_t i = 0; i < state->camera_points.size(); ++i) { const u8 camera_misc = d[pos]; const u8 camera_x_high = d[pos + 1]; diff --git a/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.h b/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.h index 3cde05f7a976..6ef25675f3f0 100644 --- a/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.h +++ b/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.h @@ -21,11 +21,12 @@ struct DesiredWiimoteState {Wiimote::ACCEL_ZERO_G << 2, Wiimote::ACCEL_ZERO_G << 2, Wiimote::ACCEL_ONE_G << 2}); // No light detected by the IR camera. - static constexpr std::array DEFAULT_CAMERA = {CameraPoint(), CameraPoint()}; + static constexpr std::array DEFAULT_CAMERA = {CameraPoint(), CameraPoint(), + CameraPoint(), CameraPoint()}; WiimoteCommon::ButtonData buttons{}; // non-button state in this is ignored WiimoteCommon::AccelData acceleration = DEFAULT_ACCELERATION; - std::array camera_points = DEFAULT_CAMERA; + std::array camera_points = DEFAULT_CAMERA; std::optional motion_plus = std::nullopt; DesiredExtensionState extension; }; @@ -34,7 +35,7 @@ struct DesiredWiimoteState struct SerializedWiimoteState { u8 length; - std::array data; // 12 bytes Wiimote, 6 bytes MotionPlus, 6 bytes Extension + std::array data; // 18 bytes Wiimote, 6 bytes MotionPlus, 6 bytes Extension }; SerializedWiimoteState SerializeDesiredState(const DesiredWiimoteState& state); From 9c68b156d1572f5e8fd1094d16568896b85e4dee Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Tue, 9 Jan 2024 18:27:30 +0100 Subject: [PATCH 078/223] Core/HW/WiimoteCommon: Add a method to DataReport to query the format of the stored IR data. --- .../Core/Core/HW/WiimoteCommon/DataReport.cpp | 28 +++++++++++++++---- .../Core/Core/HW/WiimoteCommon/DataReport.h | 2 ++ .../Core/HW/WiimoteCommon/WiimoteConstants.h | 9 ++++++ 3 files changed, 33 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/HW/WiimoteCommon/DataReport.cpp b/Source/Core/Core/HW/WiimoteCommon/DataReport.cpp index 68a2a7a7260d..9bac2e934855 100644 --- a/Source/Core/Core/HW/WiimoteCommon/DataReport.cpp +++ b/Source/Core/Core/HW/WiimoteCommon/DataReport.cpp @@ -125,13 +125,14 @@ struct NoExt : virtual DataReportManipulator u8* GetExtDataPtr() override { return nullptr; } }; -template +template struct IncludeIR : virtual DataReportManipulator { u32 GetIRDataSize() const override { return Length; } const u8* GetIRDataPtr() const override { return data_ptr + Offset; } u8* GetIRDataPtr() override { return data_ptr + Offset; } u32 GetIRDataFormatOffset() const override { return DataOffset; } + IRReportFormat GetIRReportFormat() const override { return Format; } }; struct NoIR : virtual DataReportManipulator @@ -140,6 +141,7 @@ struct NoIR : virtual DataReportManipulator const u8* GetIRDataPtr() const override { return nullptr; } u8* GetIRDataPtr() override { return nullptr; } u32 GetIRDataFormatOffset() const override { return 0; } + IRReportFormat GetIRReportFormat() const override { return IRReportFormat::None; } }; #ifdef _MSC_VER @@ -162,7 +164,10 @@ struct ReportCoreExt8 : IncludeCore, NoAccel, NoIR, IncludeExt<2, 8> { }; -struct ReportCoreAccelIR12 : IncludeCore, IncludeAccel, IncludeIR<5, 12>, NoExt +struct ReportCoreAccelIR12 : IncludeCore, + IncludeAccel, + IncludeIR, + NoExt { u32 GetDataSize() const override { return 17; } }; @@ -175,11 +180,17 @@ struct ReportCoreAccelExt16 : IncludeCore, IncludeAccel, NoIR, IncludeExt<5, 16> { }; -struct ReportCoreIR10Ext9 : IncludeCore, NoAccel, IncludeIR<2, 10>, IncludeExt<12, 9> +struct ReportCoreIR10Ext9 : IncludeCore, + NoAccel, + IncludeIR, + IncludeExt<12, 9> { }; -struct ReportCoreAccelIR10Ext6 : IncludeCore, IncludeAccel, IncludeIR<5, 10>, IncludeExt<15, 6> +struct ReportCoreAccelIR10Ext6 : IncludeCore, + IncludeAccel, + IncludeIR, + IncludeExt<15, 6> { }; @@ -187,7 +198,7 @@ struct ReportExt21 : NoCore, NoAccel, NoIR, IncludeExt<0, 21> { }; -struct ReportInterleave1 : IncludeCore, IncludeIR<3, 18, 0>, NoExt +struct ReportInterleave1 : IncludeCore, IncludeIR, NoExt { // FYI: Only 8-bits of precision in this report, and no Y axis. void GetAccelData(AccelData* accel) const override @@ -220,7 +231,7 @@ struct ReportInterleave1 : IncludeCore, IncludeIR<3, 18, 0>, NoExt u32 GetDataSize() const override { return 21; } }; -struct ReportInterleave2 : IncludeCore, IncludeIR<3, 18, 18>, NoExt +struct ReportInterleave2 : IncludeCore, IncludeIR, NoExt { // FYI: Only 8-bits of precision in this report, and no X axis. void GetAccelData(AccelData* accel) const override @@ -372,6 +383,11 @@ u32 DataReportBuilder::GetIRDataFormatOffset() const return m_manip->GetIRDataFormatOffset(); } +IRReportFormat DataReportBuilder::GetIRReportFormat() const +{ + return m_manip->GetIRReportFormat(); +} + void DataReportBuilder::GetCoreData(CoreData* core) const { m_manip->GetCoreData(core); diff --git a/Source/Core/Core/HW/WiimoteCommon/DataReport.h b/Source/Core/Core/HW/WiimoteCommon/DataReport.h index 8297424e6a7d..df11b3f6ddda 100644 --- a/Source/Core/Core/HW/WiimoteCommon/DataReport.h +++ b/Source/Core/Core/HW/WiimoteCommon/DataReport.h @@ -39,6 +39,7 @@ class DataReportManipulator virtual const u8* GetIRDataPtr() const = 0; virtual u32 GetIRDataSize() const = 0; virtual u32 GetIRDataFormatOffset() const = 0; + virtual IRReportFormat GetIRReportFormat() const = 0; virtual u8* GetExtDataPtr() = 0; virtual const u8* GetExtDataPtr() const = 0; @@ -76,6 +77,7 @@ class DataReportBuilder u32 GetExtDataSize() const; u32 GetIRDataFormatOffset() const; + IRReportFormat GetIRReportFormat() const; void GetCoreData(CoreData*) const; void GetAccelData(AccelData*) const; diff --git a/Source/Core/Core/HW/WiimoteCommon/WiimoteConstants.h b/Source/Core/Core/HW/WiimoteCommon/WiimoteConstants.h index 651ee5f20d34..7475f8043927 100644 --- a/Source/Core/Core/HW/WiimoteCommon/WiimoteConstants.h +++ b/Source/Core/Core/HW/WiimoteCommon/WiimoteConstants.h @@ -50,6 +50,15 @@ enum class OutputReportID : u8 IRLogicEnable2 = 0x1a, }; +enum class IRReportFormat : u8 +{ + None, + Basic, // from ReportCoreIR10Ext9 or ReportCoreAccelIR10Ext6 + Extended, // from ReportCoreAccelIR12 + Full1, // from ReportInterleave1 + Full2, // from ReportInterleave2 +}; + enum class LED : u8 { None = 0x00, From c3903fcc7e281a488a26b7e6d7d739c794fa4676 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Wed, 10 Jan 2024 05:10:21 +0100 Subject: [PATCH 079/223] InputCommon/WiimoteController: Add inputs that report the raw IR objects seen by the Wiimote. --- .../Wiimote/WiimoteController.cpp | 60 ++++++++++++++++--- .../Wiimote/WiimoteController.h | 5 +- 2 files changed, 57 insertions(+), 8 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp index bc2db5332827..c4e5fe028f04 100644 --- a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp @@ -201,6 +201,17 @@ Device::Device(std::unique_ptr wiimote) : m_wiimote(std::m AddInput(new UndetectableAnalogInput(&m_ir_state.distance, "IR Distance", 1)); + // Raw IR Objects. + for (std::size_t i = 0; i < 4; ++i) + { + AddInput(new UndetectableAnalogInput(&m_ir_state.raw_ir_object_position[i].x, + fmt::format("IR Object {} X", i + 1), 1)); + AddInput(new UndetectableAnalogInput(&m_ir_state.raw_ir_object_position[i].y, + fmt::format("IR Object {} Y", i + 1), 1)); + AddInput(new UndetectableAnalogInput(&m_ir_state.raw_ir_object_size[i], + fmt::format("IR Object {} Size", i + 1), 1)); + } + // Raw gyroscope. static constexpr std::array, 3> gyro_names = {{ {"Gyro Pitch Down", "Gyro Pitch Up"}, @@ -1178,8 +1189,7 @@ void Device::ProcessInputReport(WiimoteReal::Report& report) // Process IR data. if (manipulator->HasIR() && m_ir_state.IsFullyConfigured()) { - m_ir_state.ProcessData( - Common::BitCastPtr>(manipulator->GetIRDataPtr())); + m_ir_state.ProcessData(*manipulator); } // Process extension data. @@ -1251,7 +1261,7 @@ void Device::UpdateOrientation() float(MathUtil::PI); } -void Device::IRState::ProcessData(const std::array& data) +void Device::IRState::ProcessData(const DataReportManipulator& manipulator) { // A better implementation might extrapolate points when they fall out of camera view. // But just averaging visible points actually seems to work very well. @@ -1263,18 +1273,54 @@ void Device::IRState::ProcessData(const std::array& data const auto camera_max = IRObject(WiimoteEmu::CameraLogic::CAMERA_RES_X - 1, WiimoteEmu::CameraLogic::CAMERA_RES_Y - 1); - const auto add_point = [&](IRObject point) { + const auto add_point = [&](IRObject point, u8 size, size_t idx) { // Non-visible points are 0xFF-filled. if (point.y > camera_max.y) + { + raw_ir_object_position[idx].x = 0.0f; + raw_ir_object_position[idx].y = 0.0f; + raw_ir_object_size[idx] = 0.0f; return; + } + + raw_ir_object_position[idx].x = static_cast(point.x) / camera_max.x; + raw_ir_object_position[idx].y = static_cast(point.y) / camera_max.y; + raw_ir_object_size[idx] = static_cast(size) / 15.0f; points.Push(Common::Vec2(point)); }; - for (auto& block : data) + size_t object_index = 0; + switch (manipulator.GetIRReportFormat()) + { + case IRReportFormat::Basic: + { + const std::array data = + Common::BitCastPtr>(manipulator.GetIRDataPtr()); + for (const auto& block : data) + { + // size is not reported by IRBasic, just assume a typical size + add_point(block.GetObject1(), 2, object_index); + ++object_index; + add_point(block.GetObject2(), 2, object_index); + ++object_index; + } + break; + } + case IRReportFormat::Extended: { - add_point(block.GetObject1()); - add_point(block.GetObject2()); + const std::array data = + Common::BitCastPtr>(manipulator.GetIRDataPtr()); + for (const auto& object : data) + { + add_point(object.GetPosition(), object.size, object_index); + ++object_index; + } + break; + } + default: + // unsupported format + return; } is_hidden = !points.Count(); diff --git a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.h b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.h index bbc07e58be02..bc60a1405e5e 100644 --- a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.h +++ b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.h @@ -126,7 +126,7 @@ class Device final : public Core::Device { static u32 GetDesiredIRSensitivity(); - void ProcessData(const std::array&); + void ProcessData(const DataReportManipulator& manipulator); bool IsFullyConfigured() const; u32 current_sensitivity = u32(-1); @@ -139,6 +139,9 @@ class Device final : public Core::Device float distance = 0; bool is_hidden = true; + + std::array raw_ir_object_position; + std::array raw_ir_object_size; }; class ReportHandler From 617fcc3cf85ea723eec02ef9ce5c30983bb15cf8 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Wed, 10 Jan 2024 05:26:29 +0100 Subject: [PATCH 080/223] WiimoteEmu: Add user-accessible controls that report the desired state of the IR camera objects. --- Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp | 38 +++++++++++++- Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h | 4 ++ Source/Core/DolphinLib.props | 2 + .../Mapping/WiimoteEmuMotionControlIMU.cpp | 2 + Source/Core/InputCommon/CMakeLists.txt | 2 + .../ControllerEmu/ControlGroup/ControlGroup.h | 3 +- .../ControlGroup/IRPassthrough.cpp | 51 +++++++++++++++++++ .../ControlGroup/IRPassthrough.h | 23 +++++++++ 8 files changed, 123 insertions(+), 2 deletions(-) create mode 100644 Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp create mode 100644 Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h diff --git a/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp b/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp index b3aab5b4865a..4c72126f574d 100644 --- a/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp @@ -49,6 +49,7 @@ #include "InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.h" #include "InputCommon/ControllerEmu/ControlGroup/IMUCursor.h" #include "InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.h" +#include "InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h" #include "InputCommon/ControllerEmu/ControlGroup/ModifySettingsButton.h" #include "InputCommon/ControllerEmu/ControlGroup/Tilt.h" @@ -250,6 +251,8 @@ Wiimote::Wiimote(const unsigned int index) : m_index(index), m_bt_device_index(i _trans("Camera field of view (affects sensitivity of pointing).")}, fov_default.y, 0.01, 180); + groups.emplace_back(m_ir_passthrough = new ControllerEmu::IRPassthrough( + IR_PASSTHROUGH_GROUP, _trans("Point (Passthrough)"))); groups.emplace_back(m_imu_accelerometer = new ControllerEmu::IMUAccelerometer( ACCELEROMETER_GROUP, _trans("Accelerometer"))); groups.emplace_back(m_imu_gyroscope = @@ -360,6 +363,8 @@ ControllerEmu::ControlGroup* Wiimote::GetWiimoteGroup(WiimoteGroup group) const return m_imu_gyroscope; case WiimoteGroup::IMUPoint: return m_imu_ir; + case WiimoteGroup::IRPassthrough: + return m_ir_passthrough; default: ASSERT(false); return nullptr; @@ -447,6 +452,33 @@ void Wiimote::UpdateButtonsStatus(const DesiredWiimoteState& target_state) m_status.buttons.hex = target_state.buttons.hex & ButtonData::BUTTON_MASK; } +static std::array +GetPassthroughCameraPoints(ControllerEmu::IRPassthrough* ir_passthrough) +{ + std::array camera_points; + for (size_t i = 0; i < camera_points.size(); ++i) + { + const ControlState size = ir_passthrough->GetObjectSize(i); + if (size <= 0.0f) + continue; + + const ControlState x = ir_passthrough->GetObjectPositionX(i); + const ControlState y = ir_passthrough->GetObjectPositionY(i); + + camera_points[i].position.x = + std::clamp(std::lround(x * ControlState(CameraLogic::CAMERA_RES_X - 1)), long(0), + long(CameraLogic::CAMERA_RES_X - 1)); + camera_points[i].position.y = + std::clamp(std::lround(y * ControlState(CameraLogic::CAMERA_RES_Y - 1)), long(0), + long(CameraLogic::CAMERA_RES_Y - 1)); + camera_points[i].size = + std::clamp(std::lround(size * ControlState(CameraLogic::MAX_POINT_SIZE)), long(0), + long(CameraLogic::MAX_POINT_SIZE)); + } + + return camera_points; +} + void Wiimote::BuildDesiredWiimoteState(DesiredWiimoteState* target_state, SensorBarState sensor_bar_state) { @@ -470,7 +502,11 @@ void Wiimote::BuildDesiredWiimoteState(DesiredWiimoteState* target_state, ConvertAccelData(GetTotalAcceleration(), ACCEL_ZERO_G << 2, ACCEL_ONE_G << 2); // Calculate IR camera state. - if (sensor_bar_state == SensorBarState::Enabled) + if (m_ir_passthrough->enabled) + { + target_state->camera_points = GetPassthroughCameraPoints(m_ir_passthrough); + } + else if (sensor_bar_state == SensorBarState::Enabled) { target_state->camera_points = CameraLogic::GetCameraPoints( GetTotalTransformation(), diff --git a/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h b/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h index f6cfab90d7d5..e364ccdb6c91 100644 --- a/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h +++ b/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h @@ -34,6 +34,7 @@ class Force; class IMUAccelerometer; class IMUGyroscope; class IMUCursor; +class IRPassthrough; class ModifySettingsButton; class Output; class Tilt; @@ -59,6 +60,7 @@ enum class WiimoteGroup IMUAccelerometer, IMUGyroscope, IMUPoint, + IRPassthrough, }; enum class NunchukGroup; @@ -121,6 +123,7 @@ class Wiimote : public ControllerEmu::EmulatedController, public WiimoteCommon:: static constexpr const char* ACCELEROMETER_GROUP = "IMUAccelerometer"; static constexpr const char* GYROSCOPE_GROUP = "IMUGyroscope"; static constexpr const char* IR_GROUP = "IR"; + static constexpr const char* IR_PASSTHROUGH_GROUP = "IRPassthrough"; static constexpr const char* A_BUTTON = "A"; static constexpr const char* B_BUTTON = "B"; @@ -300,6 +303,7 @@ class Wiimote : public ControllerEmu::EmulatedController, public WiimoteCommon:: ControllerEmu::IMUAccelerometer* m_imu_accelerometer; ControllerEmu::IMUGyroscope* m_imu_gyroscope; ControllerEmu::IMUCursor* m_imu_ir; + ControllerEmu::IRPassthrough* m_ir_passthrough; ControllerEmu::SettingValue m_sideways_setting; ControllerEmu::SettingValue m_upright_setting; diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index a5039859f9f0..50a6eb549403 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -504,6 +504,7 @@ + @@ -1162,6 +1163,7 @@ + diff --git a/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp b/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp index 8d07e9201ee2..9536b2ef9d1e 100644 --- a/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp @@ -48,6 +48,8 @@ void WiimoteEmuMotionControlIMU::CreateMainLayout() auto* groups_layout = new QHBoxLayout(); groups_layout->addWidget( CreateGroupBox(Wiimote::GetWiimoteGroup(GetPort(), WiimoteEmu::WiimoteGroup::IMUPoint))); + groups_layout->addWidget( + CreateGroupBox(Wiimote::GetWiimoteGroup(GetPort(), WiimoteEmu::WiimoteGroup::IRPassthrough))); groups_layout->addWidget(CreateGroupBox( Wiimote::GetWiimoteGroup(GetPort(), WiimoteEmu::WiimoteGroup::IMUAccelerometer))); groups_layout->addWidget( diff --git a/Source/Core/InputCommon/CMakeLists.txt b/Source/Core/InputCommon/CMakeLists.txt index ed19e12b74b1..dc4da808a1e5 100644 --- a/Source/Core/InputCommon/CMakeLists.txt +++ b/Source/Core/InputCommon/CMakeLists.txt @@ -37,6 +37,8 @@ add_library(inputcommon ControllerEmu/ControlGroup/IMUCursor.h ControllerEmu/ControlGroup/IMUGyroscope.cpp ControllerEmu/ControlGroup/IMUGyroscope.h + ControllerEmu/ControlGroup/IRPassthrough.cpp + ControllerEmu/ControlGroup/IRPassthrough.h ControllerEmu/ControlGroup/MixedTriggers.cpp ControllerEmu/ControlGroup/MixedTriggers.h ControllerEmu/ControlGroup/ModifySettingsButton.cpp diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.h index f51fff60156b..bb426e9297b0 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.h +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.h @@ -49,7 +49,8 @@ enum class GroupType Shake, IMUAccelerometer, IMUGyroscope, - IMUCursor + IMUCursor, + IRPassthrough, }; class ControlGroup diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp new file mode 100644 index 000000000000..119f9bcb0e74 --- /dev/null +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp @@ -0,0 +1,51 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h" + +#include +#include + +#include "Common/Common.h" +#include "Common/MathUtil.h" + +#include "InputCommon/ControlReference/ControlReference.h" +#include "InputCommon/ControllerEmu/Control/Control.h" +#include "InputCommon/ControllerEmu/Control/Input.h" + +namespace ControllerEmu +{ +IRPassthrough::IRPassthrough(std::string name_, std::string ui_name_) + : ControlGroup(std::move(name_), std::move(ui_name_), GroupType::IRPassthrough, + ControlGroup::DefaultValue::Disabled) +{ + AddInput(Translatability::Translate, _trans("Object 1 X")); + AddInput(Translatability::Translate, _trans("Object 1 Y")); + AddInput(Translatability::Translate, _trans("Object 1 Size")); + AddInput(Translatability::Translate, _trans("Object 2 X")); + AddInput(Translatability::Translate, _trans("Object 2 Y")); + AddInput(Translatability::Translate, _trans("Object 2 Size")); + AddInput(Translatability::Translate, _trans("Object 3 X")); + AddInput(Translatability::Translate, _trans("Object 3 Y")); + AddInput(Translatability::Translate, _trans("Object 3 Size")); + AddInput(Translatability::Translate, _trans("Object 4 X")); + AddInput(Translatability::Translate, _trans("Object 4 Y")); + AddInput(Translatability::Translate, _trans("Object 4 Size")); +} + +ControlState IRPassthrough::GetObjectPositionX(size_t object_index) const +{ + return controls[object_index * 3 + 0]->GetState(); +} + +ControlState IRPassthrough::GetObjectPositionY(size_t object_index) const +{ + return controls[object_index * 3 + 1]->GetState(); +} + +ControlState IRPassthrough::GetObjectSize(size_t object_index) const +{ + return controls[object_index * 3 + 2]->GetState(); +} + +} // namespace ControllerEmu diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h new file mode 100644 index 000000000000..9e6bf9b5bb61 --- /dev/null +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h @@ -0,0 +1,23 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h" +#include "InputCommon/ControllerEmu/Setting/NumericSetting.h" +#include "InputCommon/ControllerInterface/CoreDevice.h" + +namespace ControllerEmu +{ +class IRPassthrough : public ControlGroup +{ +public: + IRPassthrough(std::string name, std::string ui_name); + + ControlState GetObjectPositionX(size_t object_index) const; + ControlState GetObjectPositionY(size_t object_index) const; + ControlState GetObjectSize(size_t object_index) const; +}; +} // namespace ControllerEmu From f6f435e6240421d170d2f79f46d8b70489663795 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Wed, 10 Jan 2024 05:41:10 +0100 Subject: [PATCH 081/223] WiimoteEmu: Set sensible defaults for IR Object expressions. --- .../Wiimote/Wii Remote with MotionPlus Pointing.ini | 13 +++++++++++++ Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp | 6 ++++++ 2 files changed, 19 insertions(+) diff --git a/Data/Sys/Profiles/Wiimote/Wii Remote with MotionPlus Pointing.ini b/Data/Sys/Profiles/Wiimote/Wii Remote with MotionPlus Pointing.ini index 408c2ed0b403..e43c6551bdd1 100644 --- a/Data/Sys/Profiles/Wiimote/Wii Remote with MotionPlus Pointing.ini +++ b/Data/Sys/Profiles/Wiimote/Wii Remote with MotionPlus Pointing.ini @@ -7,6 +7,19 @@ Buttons/2 = `2` Buttons/- = `-` Buttons/+ = `+` Buttons/Home = `HOME` +IRPassthrough/Enabled = False +IRPassthrough/Object 1 X = `IR Object 1 X` +IRPassthrough/Object 1 Y = `IR Object 1 Y` +IRPassthrough/Object 1 Size = `IR Object 1 Size` +IRPassthrough/Object 2 X = `IR Object 2 X` +IRPassthrough/Object 2 Y = `IR Object 2 Y` +IRPassthrough/Object 2 Size = `IR Object 2 Size` +IRPassthrough/Object 3 X = `IR Object 3 X` +IRPassthrough/Object 3 Y = `IR Object 3 Y` +IRPassthrough/Object 3 Size = `IR Object 3 Size` +IRPassthrough/Object 4 X = `IR Object 4 X` +IRPassthrough/Object 4 Y = `IR Object 4 Y` +IRPassthrough/Object 4 Size = `IR Object 4 Size` IMUAccelerometer/Up = `Accel Up` IMUAccelerometer/Down = `Accel Down` IMUAccelerometer/Left = `Accel Left` diff --git a/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp b/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp index 4c72126f574d..a93ad379e8a7 100644 --- a/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp @@ -798,6 +798,12 @@ void Wiimote::LoadDefaults(const ControllerInterface& ciface) m_imu_gyroscope->SetControlExpression(3, "`Gyro Roll Right`"); m_imu_gyroscope->SetControlExpression(4, "`Gyro Yaw Left`"); m_imu_gyroscope->SetControlExpression(5, "`Gyro Yaw Right`"); + for (int i = 0; i < 4; ++i) + { + m_ir_passthrough->SetControlExpression(i * 3 + 0, fmt::format("`IR Object {} X`", i + 1)); + m_ir_passthrough->SetControlExpression(i * 3 + 1, fmt::format("`IR Object {} Y`", i + 1)); + m_ir_passthrough->SetControlExpression(i * 3 + 2, fmt::format("`IR Object {} Size`", i + 1)); + } #endif // Enable Nunchuk: From 9427a4ec689a3ed7de82bcc5b79e6d0707cd5468 Mon Sep 17 00:00:00 2001 From: AGuy27 <91433739+AGuy27@users.noreply.github.com> Date: Tue, 5 Mar 2024 16:50:59 -0500 Subject: [PATCH 082/223] GameINI: Fix Emergency Mayhem hang on loading --- Data/Sys/GameSettings/REG.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/REG.ini diff --git a/Data/Sys/GameSettings/REG.ini b/Data/Sys/GameSettings/REG.ini new file mode 100644 index 000000000000..f6f988ea43de --- /dev/null +++ b/Data/Sys/GameSettings/REG.ini @@ -0,0 +1,4 @@ +# REGE36, REGP36 - Emergency Mayhem +[Core] +# Dual core causes hang on loading +CPUThread = False From 62caa24d40b9ece464286cf26cb56c80226fc993 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sun, 10 Mar 2024 23:25:44 -0500 Subject: [PATCH 083/223] DolphinQt: Add IRPassthrough indicator. --- .../Config/Mapping/MappingIndicator.cpp | 31 +++++++++++++++++++ .../Config/Mapping/MappingIndicator.h | 14 +++++++++ .../Config/Mapping/MappingWidget.cpp | 5 +++ 3 files changed, 50 insertions(+) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp index 9e1e0dcde9bf..c60c732e373a 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp @@ -17,6 +17,8 @@ #include "Common/MathUtil.h" +#include "Core/HW/WiimoteEmu/Camera.h" + #include "InputCommon/ControlReference/ControlReference.h" #include "InputCommon/ControllerEmu/Control/Control.h" #include "InputCommon/ControllerEmu/ControlGroup/Cursor.h" @@ -823,6 +825,35 @@ void GyroMappingIndicator::Draw() p.drawEllipse(QPointF{}, INPUT_DOT_RADIUS, INPUT_DOT_RADIUS); } +void IRPassthroughMappingIndicator::Draw() +{ + QPainter p(this); + DrawBoundingBox(p); + TransformPainter(p); + + p.scale(1.0, -1.0); + + auto pen = GetInputDotPen(m_ir_group.enabled ? GetAdjustedInputColor() : GetRawInputColor()); + + for (std::size_t i = 0; i != WiimoteEmu::CameraLogic::NUM_POINTS; ++i) + { + const auto size = m_ir_group.GetObjectSize(i); + + const bool is_visible = size > 0; + if (!is_visible) + continue; + + const auto point = + (QPointF{m_ir_group.GetObjectPositionX(i), m_ir_group.GetObjectPositionY(i)} - + QPointF{0.5, 0.5}) * + 2.0; + + pen.setWidth(size * NORMAL_INDICATOR_WIDTH / 2); + p.setPen(pen); + p.drawPoint(point); + } +} + void ReshapableInputIndicator::DrawCalibration(QPainter& p, Common::DVec2 point) { const auto center = m_calibration_widget->GetCenter(); diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h index 7680886f7470..448a86b24a82 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h +++ b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h @@ -9,6 +9,7 @@ #include #include "Core/HW/WiimoteEmu/Dynamics.h" +#include "InputCommon/ControllerEmu/ControlGroup/IRPassthrough.h" #include "InputCommon/ControllerEmu/StickGate.h" namespace ControllerEmu @@ -180,6 +181,19 @@ class GyroMappingIndicator : public SquareIndicator u32 m_stable_steps = 0; }; +class IRPassthroughMappingIndicator : public SquareIndicator +{ +public: + explicit IRPassthroughMappingIndicator(ControllerEmu::IRPassthrough& ir_group) + : m_ir_group(ir_group) + { + } + +private: + void Draw() override; + + ControllerEmu::IRPassthrough& m_ir_group; +}; class CalibrationWidget : public QToolButton { public: diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp index f9c4ffb29c52..5eadb359b46d 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp @@ -95,6 +95,11 @@ QGroupBox* MappingWidget::CreateGroupBox(const QString& name, ControllerEmu::Con indicator = new AnalogStickIndicator(*static_cast(group)); break; + case ControllerEmu::GroupType::IRPassthrough: + indicator = + new IRPassthroughMappingIndicator(*static_cast(group)); + break; + default: break; } From c377c1e21ea64435a4e0fb2d08c03cabb4ec981d Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 1 Mar 2024 08:07:13 -0800 Subject: [PATCH 084/223] CheatsManager/CheatSearchWidget: Avoid Global System Accessor OnResetClicked and GenerateARCode appear to have been using the CPUThreadGuard in error. --- Source/Core/DolphinQt/CheatSearchWidget.cpp | 23 +++++++++------------ Source/Core/DolphinQt/CheatSearchWidget.h | 10 ++++++++- Source/Core/DolphinQt/CheatsManager.cpp | 5 +++-- Source/Core/DolphinQt/CheatsManager.h | 7 +++++-- Source/Core/DolphinQt/MainWindow.cpp | 2 +- 5 files changed, 28 insertions(+), 19 deletions(-) diff --git a/Source/Core/DolphinQt/CheatSearchWidget.cpp b/Source/Core/DolphinQt/CheatSearchWidget.cpp index 020c7607a1b2..a76373238e3a 100644 --- a/Source/Core/DolphinQt/CheatSearchWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchWidget.cpp @@ -54,8 +54,10 @@ constexpr int ADDRESS_TABLE_COLUMN_INDEX_ADDRESS = 1; constexpr int ADDRESS_TABLE_COLUMN_INDEX_LAST_VALUE = 2; constexpr int ADDRESS_TABLE_COLUMN_INDEX_CURRENT_VALUE = 3; -CheatSearchWidget::CheatSearchWidget(std::unique_ptr session) - : m_session(std::move(session)) +CheatSearchWidget::CheatSearchWidget(Core::System& system, + std::unique_ptr session, + QWidget* parent) + : QWidget(parent), m_system(system), m_session(std::move(session)) { setAttribute(Qt::WA_DeleteOnClose); CreateWidgets(); @@ -275,13 +277,10 @@ void CheatSearchWidget::ConnectWidgets() void CheatSearchWidget::OnNextScanClicked() { - Core::CPUThreadGuard guard(Core::System::GetInstance()); const bool had_old_results = m_session->WasFirstSearchDone(); - const size_t old_count = m_session->GetResultCount(); const auto filter_type = m_value_source_dropdown->currentData().value(); - if (filter_type == Cheats::FilterType::CompareAgainstLastValue && - !m_session->WasFirstSearchDone()) + if (filter_type == Cheats::FilterType::CompareAgainstLastValue && !had_old_results) { m_info_label_1->setText(tr("Cannot compare against last value on first search.")); return; @@ -301,7 +300,8 @@ void CheatSearchWidget::OnNextScanClicked() } } - const Cheats::SearchErrorCode error_code = m_session->RunSearch(guard); + const size_t old_count = m_session->GetResultCount(); + const Cheats::SearchErrorCode error_code = m_session->RunSearch(Core::CPUThreadGuard{m_system}); if (error_code == Cheats::SearchErrorCode::Success) { @@ -416,11 +416,11 @@ void CheatSearchWidget::UpdateTableVisibleCurrentValues(const UpdateSource sourc if (source == UpdateSource::Auto && !m_autoupdate_current_values->isChecked()) return; - Core::CPUThreadGuard guard(Core::System::GetInstance()); if (m_address_table->rowCount() == 0) return; - UpdateTableRows(guard, GetVisibleRowsBeginIndex(), GetVisibleRowsEndIndex(), source); + UpdateTableRows(Core::CPUThreadGuard{m_system}, GetVisibleRowsBeginIndex(), + GetVisibleRowsEndIndex(), source); } bool CheatSearchWidget::UpdateTableAllCurrentValues(const UpdateSource source) @@ -428,7 +428,6 @@ bool CheatSearchWidget::UpdateTableAllCurrentValues(const UpdateSource source) if (source == UpdateSource::Auto && !m_autoupdate_current_values->isChecked()) return false; - Core::CPUThreadGuard guard(Core::System::GetInstance()); const size_t result_count = m_address_table->rowCount(); if (result_count == 0) { @@ -437,7 +436,7 @@ bool CheatSearchWidget::UpdateTableAllCurrentValues(const UpdateSource source) return false; } - return UpdateTableRows(guard, 0, result_count, source); + return UpdateTableRows(Core::CPUThreadGuard{m_system}, 0, result_count, source); } void CheatSearchWidget::OnRefreshClicked() @@ -447,7 +446,6 @@ void CheatSearchWidget::OnRefreshClicked() void CheatSearchWidget::OnResetClicked() { - Core::CPUThreadGuard guard(Core::System::GetInstance()); m_session->ResetResults(); m_address_table_current_values.clear(); @@ -525,7 +523,6 @@ void CheatSearchWidget::OnDisplayHexCheckboxStateChanged() void CheatSearchWidget::GenerateARCode() { - Core::CPUThreadGuard guard(Core::System::GetInstance()); if (m_address_table->selectedItems().isEmpty()) return; diff --git a/Source/Core/DolphinQt/CheatSearchWidget.h b/Source/Core/DolphinQt/CheatSearchWidget.h index 5c3ad52423a3..5828c0423da0 100644 --- a/Source/Core/DolphinQt/CheatSearchWidget.h +++ b/Source/Core/DolphinQt/CheatSearchWidget.h @@ -18,6 +18,10 @@ namespace ActionReplay { struct ARCode; } +namespace Core +{ +class System; +} class QCheckBox; class QComboBox; @@ -36,7 +40,9 @@ class CheatSearchWidget : public QWidget { Q_OBJECT public: - explicit CheatSearchWidget(std::unique_ptr session); + explicit CheatSearchWidget(Core::System& system, + std::unique_ptr session, + QWidget* parent = nullptr); ~CheatSearchWidget() override; enum class UpdateSource @@ -74,6 +80,8 @@ class CheatSearchWidget : public QWidget int GetVisibleRowsBeginIndex() const; int GetVisibleRowsEndIndex() const; + Core::System& m_system; + std::unique_ptr m_session; // storage for the 'Current Value' column's data diff --git a/Source/Core/DolphinQt/CheatsManager.cpp b/Source/Core/DolphinQt/CheatsManager.cpp index 8f2725b4a958..1af4d8919729 100644 --- a/Source/Core/DolphinQt/CheatsManager.cpp +++ b/Source/Core/DolphinQt/CheatsManager.cpp @@ -24,7 +24,8 @@ #include "VideoCommon/VideoEvents.h" -CheatsManager::CheatsManager(QWidget* parent) : QDialog(parent) +CheatsManager::CheatsManager(Core::System& system, QWidget* parent) + : QDialog(parent), m_system(system) { setWindowTitle(tr("Cheats Manager")); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); @@ -169,7 +170,7 @@ void CheatsManager::CreateWidgets() void CheatsManager::OnNewSessionCreated(const Cheats::CheatSearchSessionBase& session) { - auto* w = new CheatSearchWidget(session.Clone()); + auto* w = new CheatSearchWidget(m_system, session.Clone()); const int tab_index = m_tab_widget->addTab(w, tr("Cheat Search")); w->connect(w, &CheatSearchWidget::ActionReplayCodeGenerated, this, [this](const ActionReplay::ARCode& ar_code) { diff --git a/Source/Core/DolphinQt/CheatsManager.h b/Source/Core/DolphinQt/CheatsManager.h index 33b61a4ccc1b..783a79ef45c0 100644 --- a/Source/Core/DolphinQt/CheatsManager.h +++ b/Source/Core/DolphinQt/CheatsManager.h @@ -26,13 +26,14 @@ class PartiallyClosableTabWidget; namespace Core { enum class State; -} +class System; +} // namespace Core class CheatsManager : public QDialog { Q_OBJECT public: - explicit CheatsManager(QWidget* parent = nullptr); + explicit CheatsManager(Core::System& system, QWidget* parent = nullptr); ~CheatsManager(); signals: @@ -64,6 +65,8 @@ class CheatsManager : public QDialog std::string m_game_tdb_id; u16 m_revision = 0; + Core::System& m_system; + QDialogButtonBox* m_button_box; PartiallyClosableTabWidget* m_tab_widget = nullptr; diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index a76fd36b5570..e70d4f64f183 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -456,7 +456,7 @@ void MainWindow::CreateComponents() m_watch_widget = new WatchWidget(this); m_breakpoint_widget = new BreakpointWidget(this); m_code_widget = new CodeWidget(this); - m_cheats_manager = new CheatsManager(this); + m_cheats_manager = new CheatsManager(Core::System::GetInstance(), this); m_assembler_widget = new AssemblerWidget(this); const auto request_watch = [this](QString name, u32 addr) { From da86c2bcc6fbe6e1fef40d2d19e51fc1df842431 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Thu, 1 Feb 2024 22:05:40 +0400 Subject: [PATCH 085/223] BBA/HLE: Don't assume connect is successful --- Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp | 115 ++++++++++++++++++++---- Source/Core/Core/HW/EXI/BBA/BuiltIn.h | 15 ++++ 2 files changed, 111 insertions(+), 19 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp index 04bb76340726..be77eb6d59ae 100644 --- a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp +++ b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp @@ -6,6 +6,7 @@ #ifdef _WIN32 #include #else +#include #include #include #endif @@ -18,8 +19,6 @@ #include "Core/HW/EXI/EXI_Device.h" #include "Core/HW/EXI/EXI_DeviceEthernet.h" -namespace ExpansionInterface -{ namespace { u64 GetTickCountStd() @@ -27,7 +26,12 @@ u64 GetTickCountStd() using namespace std::chrono; return duration_cast(steady_clock::now().time_since_epoch()).count(); } +} // namespace +namespace ExpansionInterface +{ +namespace +{ std::vector BuildFINFrame(StackRef* ref) { const Common::TCPPacket result(ref->bba_mac, ref->my_mac, ref->from, ref->to, ref->seq_num, @@ -255,6 +259,9 @@ CEXIETHERNET::BuiltInBBAInterface::TryGetDataFromSocket(StackRef* ref) } case IPPROTO_TCP: + if (!ref->tcp_socket.Connected(ref)) + return std::nullopt; + sf::Socket::Status st = sf::Socket::Status::Done; TcpBuffer* tcp_buffer = nullptr; for (auto& tcp_buf : ref->tcp_buffers) @@ -357,26 +364,11 @@ void CEXIETHERNET::BuiltInBBAInterface::HandleTCPFrame(const Common::TCPPacket& ref->bba_mac = m_current_mac; ref->my_mac = ResolveAddress(destination_ip); ref->tcp_socket.setBlocking(false); - - // reply with a sin_ack - Common::TCPPacket result(ref->bba_mac, ref->my_mac, ref->from, ref->to, ref->seq_num, - ref->ack_num, TCP_FLAG_SIN | TCP_FLAG_ACK); - - result.tcp_options = { - 0x02, 0x04, 0x05, 0xb4, // Maximum segment size: 1460 bytes - 0x01, 0x01, 0x01, 0x01 // NOPs - }; - - ref->seq_num++; - target = sf::IpAddress(ntohl(destination_ip)); - ref->tcp_socket.Connect(target, ntohs(tcp_header.destination_port), m_current_ip); ref->ready = false; ref->ip = Common::BitCast(ip_header.destination_addr); - ref->tcp_buffers[0].data = result.Build(); - ref->tcp_buffers[0].seq_id = ref->seq_num - 1; - ref->tcp_buffers[0].tick = GetTickCountStd() - 900; // delay - ref->tcp_buffers[0].used = true; + target = sf::IpAddress(ntohl(destination_ip)); + ref->tcp_socket.Connect(target, ntohs(tcp_header.destination_port), m_current_ip); } else { @@ -808,6 +800,7 @@ sf::Socket::Status BbaTcpSocket::Connect(const sf::IpAddress& dest, u16 port, u3 addr.sin_family = AF_INET; addr.sin_port = 0; ::bind(getHandle(), reinterpret_cast(&addr), sizeof(addr)); + m_connecting_state = ConnectingState::Connecting; return this->connect(dest, port); } @@ -833,6 +826,90 @@ sf::Socket::Status BbaTcpSocket::GetSockName(sockaddr_in* addr) const return sf::Socket::Status::Done; } +bool BbaTcpSocket::Connected(StackRef* ref) +{ + // Called by ReadThreadHandler's TryGetDataFromSocket + // TODO: properly handle error state + switch (m_connecting_state) + { + case ConnectingState::Connected: + return true; + case ConnectingState::Connecting: + { + const int fd = getHandle(); + const s32 nfds = fd + 1; + fd_set read_fds; + fd_set write_fds; + fd_set except_fds; + struct timeval t = {0, 0}; + FD_ZERO(&read_fds); + FD_ZERO(&write_fds); + FD_ZERO(&except_fds); + FD_SET(fd, &write_fds); + FD_SET(fd, &except_fds); + + if (select(nfds, &read_fds, &write_fds, &except_fds, &t) < 0) + { + ERROR_LOG_FMT(SP1, "Failed to get BBA socket connection state: {}", + Common::StrNetworkError()); + break; + } + + if (FD_ISSET(fd, &write_fds) == 0 && FD_ISSET(fd, &except_fds) == 0) + break; + + s32 error = 0; + socklen_t len = sizeof(error); + if (getsockopt(fd, SOL_SOCKET, SO_ERROR, reinterpret_cast(&error), &len) != 0) + { + ERROR_LOG_FMT(SP1, "Failed to get BBA socket error state: {}", Common::StrNetworkError()); + break; + } + + if (error != 0) + { + ERROR_LOG_FMT(SP1, "BBA connect failed (err={}): {}", error, + Common::DecodeNetworkError(error)); + m_connecting_state = ConnectingState::Error; + break; + } + + // Get peername to ensure the socket is connected + sockaddr_in peer; + socklen_t peer_len = sizeof(peer); + if (getpeername(fd, reinterpret_cast(&peer), &peer_len) != 0) + { + ERROR_LOG_FMT(SP1, "BBA connect failed to get peername: {}", Common::StrNetworkError()); + m_connecting_state = ConnectingState::Error; + break; + } + + // Create the resulting SYN ACK packet + m_connecting_state = ConnectingState::Connected; + INFO_LOG_FMT(SP1, "BBA connect succeeded"); + + Common::TCPPacket result(ref->bba_mac, ref->my_mac, ref->from, ref->to, ref->seq_num, + ref->ack_num, TCP_FLAG_SIN | TCP_FLAG_ACK); + + result.tcp_options = { + 0x02, 0x04, 0x05, 0xb4, // Maximum segment size: 1460 bytes + 0x01, 0x01, 0x01, 0x01 // NOPs + }; + + ref->seq_num++; + ref->tcp_buffers[0].data = result.Build(); + ref->tcp_buffers[0].seq_id = ref->seq_num - 1; + ref->tcp_buffers[0].tick = GetTickCountStd() - 900; // delay + ref->tcp_buffers[0].used = true; + + break; + } + default: + break; + } + return false; +} + BbaUdpSocket::BbaUdpSocket() = default; sf::Socket::Status BbaUdpSocket::Bind(u16 port, u32 net_ip) diff --git a/Source/Core/Core/HW/EXI/BBA/BuiltIn.h b/Source/Core/Core/HW/EXI/BBA/BuiltIn.h index afcf39d2931b..981b2e46e2ba 100644 --- a/Source/Core/Core/HW/EXI/BBA/BuiltIn.h +++ b/Source/Core/Core/HW/EXI/BBA/BuiltIn.h @@ -32,6 +32,8 @@ struct TcpBuffer std::vector data; }; +struct StackRef; + // Socket helper classes to ensure network interface consistency. // // If the socket isn't bound, the system will pick the interface to use automatically. @@ -45,6 +47,19 @@ class BbaTcpSocket : public sf::TcpSocket sf::Socket::Status Connect(const sf::IpAddress& dest, u16 port, u32 net_ip); sf::Socket::Status GetPeerName(sockaddr_in* addr) const; sf::Socket::Status GetSockName(sockaddr_in* addr) const; + + bool Connected(StackRef* ref); + +private: + enum class ConnectingState + { + None, + Connecting, + Connected, + Error + }; + + ConnectingState m_connecting_state = ConnectingState::None; }; class BbaUdpSocket : public sf::UdpSocket From 07448dcc819987ffd50ba29de4d39a7c75d67e39 Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Wed, 13 Mar 2024 16:36:42 +0100 Subject: [PATCH 086/223] VSProps: Set VcpkgEnabled to false We don't rely on vcpkg for dependencies --- Source/VSProps/Base.props | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/VSProps/Base.props b/Source/VSProps/Base.props index 329c832f51ef..2717cd6a1e60 100644 --- a/Source/VSProps/Base.props +++ b/Source/VSProps/Base.props @@ -10,6 +10,8 @@ $(IntDir)bin\ false + + false From 4d9038c7c3544bce061794f48580d7da9bddfe24 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Thu, 14 Mar 2024 00:19:02 +0000 Subject: [PATCH 087/223] Cubeb: change log level from NOTICE to INFO Cubeb logs a message at CUBEB_LOG_NORMAL verbosity every time you start or stop a stream which can get a bit annoying when using frame advance at Dolphin's default verbosity. --- Source/Core/AudioCommon/CubebUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/CubebUtils.cpp b/Source/Core/AudioCommon/CubebUtils.cpp index 766a5c3b83b5..710b68ca93ad 100644 --- a/Source/Core/AudioCommon/CubebUtils.cpp +++ b/Source/Core/AudioCommon/CubebUtils.cpp @@ -36,7 +36,7 @@ static void LogCallback(const char* format, ...) const std::string message = StringFromFormatV(adapted_format.c_str(), args); va_end(args); - instance->LogWithFullPath(Common::Log::LogLevel::LNOTICE, log_type, filename, lineno, + instance->LogWithFullPath(Common::Log::LogLevel::LINFO, log_type, filename, lineno, message.c_str()); } From c24fa93965a68b8adf5d0df9005212792d029146 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 10 Mar 2024 11:43:12 -0700 Subject: [PATCH 088/223] PPCSymbolDB: Move instance to PowerPCManager --- Source/Core/Core/Boot/Boot.cpp | 10 +-- Source/Core/Core/Boot/Boot.h | 6 +- Source/Core/Core/Boot/DolReader.h | 5 +- Source/Core/Core/Boot/ElfReader.cpp | 6 +- Source/Core/Core/Boot/ElfReader.h | 2 +- Source/Core/Core/ConfigManager.cpp | 9 +-- .../Core/Core/Debugger/Debugger_SymbolMap.cpp | 25 ++++--- .../Core/Core/Debugger/PPCDebugInterface.cpp | 7 +- Source/Core/Core/Debugger/PPCDebugInterface.h | 4 +- Source/Core/Core/HLE/HLE.cpp | 22 ++++--- Source/Core/Core/HLE/HLE.h | 7 +- Source/Core/Core/IOS/MIOS.cpp | 11 ++-- Source/Core/Core/PowerPC/BreakPoints.cpp | 8 +-- Source/Core/Core/PowerPC/BreakPoints.h | 7 +- .../CachedInterpreter/CachedInterpreter.cpp | 2 +- .../Core/PowerPC/Interpreter/Interpreter.cpp | 8 ++- .../Core/PowerPC/Interpreter/Interpreter.h | 4 +- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 2 +- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 2 +- .../Core/Core/PowerPC/JitCommon/JitBase.cpp | 3 +- Source/Core/Core/PowerPC/JitCommon/JitBase.h | 2 + .../Core/Core/PowerPC/JitCommon/JitCache.cpp | 2 +- Source/Core/Core/PowerPC/JitInterface.cpp | 2 +- Source/Core/Core/PowerPC/MMU.cpp | 3 +- Source/Core/Core/PowerPC/PPCAnalyst.cpp | 17 +++-- Source/Core/Core/PowerPC/PPCSymbolDB.cpp | 2 - Source/Core/Core/PowerPC/PPCSymbolDB.h | 2 - Source/Core/Core/PowerPC/PowerPC.cpp | 5 +- Source/Core/Core/PowerPC/PowerPC.h | 4 ++ Source/Core/Core/System.cpp | 8 ++- Source/Core/Core/System.h | 2 + .../DolphinQt/Debugger/BranchWatchDialog.cpp | 11 ++-- .../DolphinQt/Debugger/BranchWatchDialog.h | 5 +- .../Debugger/BranchWatchTableModel.cpp | 4 +- .../Debugger/BranchWatchTableModel.h | 7 +- .../DolphinQt/Debugger/BreakpointWidget.cpp | 12 ++-- .../DolphinQt/Debugger/CodeViewWidget.cpp | 19 +++--- .../Core/DolphinQt/Debugger/CodeViewWidget.h | 2 + Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 35 ++++------ Source/Core/DolphinQt/Debugger/CodeWidget.h | 2 + Source/Core/DolphinQt/MenuBar.cpp | 65 +++++++++---------- 41 files changed, 201 insertions(+), 160 deletions(-) diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index ef87f3c396df..f1380270a682 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -376,11 +376,11 @@ bool CBoot::FindMapFile(std::string* existing_map_file, std::string* writable_ma return false; } -bool CBoot::LoadMapFromFilename(const Core::CPUThreadGuard& guard) +bool CBoot::LoadMapFromFilename(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) { std::string strMapFilename; bool found = FindMapFile(&strMapFilename, nullptr); - if (found && g_symbolDB.LoadMap(guard, strMapFilename)) + if (found && ppc_symbol_db.LoadMap(guard, strMapFilename)) { UpdateDebugger_MapLoaded(); return true; @@ -514,9 +514,9 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, { SConfig& config = SConfig::GetInstance(); - if (!g_symbolDB.IsEmpty()) + if (auto& ppc_symbol_db = system.GetPPCSymbolDB(); !ppc_symbol_db.IsEmpty()) { - g_symbolDB.Clear(); + ppc_symbol_db.Clear(); UpdateDebugger_MapLoaded(); } @@ -595,7 +595,7 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, ppc_state.pc = executable.reader->GetEntryPoint(); - if (executable.reader->LoadSymbols(guard)) + if (executable.reader->LoadSymbols(guard, system.GetPPCSymbolDB())) { UpdateDebugger_MapLoaded(); HLE::PatchFunctions(system); diff --git a/Source/Core/Core/Boot/Boot.h b/Source/Core/Core/Boot/Boot.h index cb162b6b3390..e119cae95580 100644 --- a/Source/Core/Core/Boot/Boot.h +++ b/Source/Core/Core/Boot/Boot.h @@ -19,6 +19,8 @@ #include "DiscIO/VolumeDisc.h" #include "DiscIO/VolumeWad.h" +class PPCSymbolDB; + namespace Core { class CPUThreadGuard; @@ -168,7 +170,7 @@ class CBoot // // Returns true if a map file exists, false if none could be found. static bool FindMapFile(std::string* existing_map_file, std::string* writable_map_file); - static bool LoadMapFromFilename(const Core::CPUThreadGuard& guard); + static bool LoadMapFromFilename(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db); private: static bool DVDRead(Core::System& system, const DiscIO::VolumeDisc& disc, u64 dvd_offset, @@ -215,7 +217,7 @@ class BootExecutableReader virtual bool IsValid() const = 0; virtual bool IsWii() const = 0; virtual bool LoadIntoMemory(Core::System& system, bool only_in_mem1 = false) const = 0; - virtual bool LoadSymbols(const Core::CPUThreadGuard& guard) const = 0; + virtual bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const = 0; protected: std::vector m_bytes; diff --git a/Source/Core/Core/Boot/DolReader.h b/Source/Core/Core/Boot/DolReader.h index af227bb3feca..807f13432bce 100644 --- a/Source/Core/Core/Boot/DolReader.h +++ b/Source/Core/Core/Boot/DolReader.h @@ -27,7 +27,10 @@ class DolReader final : public BootExecutableReader 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) const override { return false; } + bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const override + { + return false; + } private: enum diff --git a/Source/Core/Core/Boot/ElfReader.cpp b/Source/Core/Core/Boot/ElfReader.cpp index f1281601ea69..2fc428399a41 100644 --- a/Source/Core/Core/Boot/ElfReader.cpp +++ b/Source/Core/Core/Boot/ElfReader.cpp @@ -180,7 +180,7 @@ SectionID ElfReader::GetSectionByName(const char* name, int firstSection) const return -1; } -bool ElfReader::LoadSymbols(const Core::CPUThreadGuard& guard) const +bool ElfReader::LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const { bool hasSymbols = false; SectionID sec = GetSectionByName(".symtab"); @@ -218,11 +218,11 @@ bool ElfReader::LoadSymbols(const Core::CPUThreadGuard& guard) const default: continue; } - g_symbolDB.AddKnownSymbol(guard, value, size, name, symtype); + ppc_symbol_db.AddKnownSymbol(guard, value, size, name, symtype); hasSymbols = true; } } - g_symbolDB.Index(); + ppc_symbol_db.Index(); return hasSymbols; } diff --git a/Source/Core/Core/Boot/ElfReader.h b/Source/Core/Core/Boot/ElfReader.h index 28b4631c6ee4..4213bd10903d 100644 --- a/Source/Core/Core/Boot/ElfReader.h +++ b/Source/Core/Core/Boot/ElfReader.h @@ -36,7 +36,7 @@ class ElfReader final : public BootExecutableReader u32 GetEntryPoint() const override { return entryPoint; } u32 GetFlags() const { return (u32)(header->e_flags); } bool LoadIntoMemory(Core::System& system, bool only_in_mem1 = false) const override; - bool LoadSymbols(const Core::CPUThreadGuard& guard) const override; + bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const override; // TODO: actually check for validity. bool IsValid() const override { return true; } bool IsWii() const override; diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index 5ad626f56ec4..693b2fb439a9 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -205,13 +205,14 @@ void SConfig::OnNewTitleLoad(const Core::CPUThreadGuard& guard) if (!Core::IsRunning()) return; - if (!g_symbolDB.IsEmpty()) + auto& system = guard.GetSystem(); + auto& ppc_symbol_db = system.GetPPCSymbolDB(); + if (!ppc_symbol_db.IsEmpty()) { - g_symbolDB.Clear(); + ppc_symbol_db.Clear(); Host_NotifyMapLoaded(); } - CBoot::LoadMapFromFilename(guard); - auto& system = Core::System::GetInstance(); + CBoot::LoadMapFromFilename(guard, ppc_symbol_db); HLE::Reload(system); PatchEngine::Reload(); HiresTexture::Update(); diff --git a/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp b/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp index b235d15286ae..893efdbd4aa9 100644 --- a/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp +++ b/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp @@ -54,7 +54,8 @@ static void WalkTheStack(const Core::CPUThreadGuard& guard, // instead of "pointing ahead" bool GetCallstack(const Core::CPUThreadGuard& guard, std::vector& output) { - const auto& ppc_state = guard.GetSystem().GetPPCState(); + auto& power_pc = guard.GetSystem().GetPowerPC(); + const auto& ppc_state = power_pc.GetPPCState(); if (!Core::IsRunning() || !PowerPC::MMU::HostIsRAMAddress(guard, ppc_state.gpr[1])) return false; @@ -68,14 +69,16 @@ bool GetCallstack(const Core::CPUThreadGuard& guard, std::vector return false; } + auto& ppc_symbol_db = power_pc.GetSymbolDB(); + output.push_back({ - .Name = fmt::format(" * {} [ LR = {:08x} ]\n", g_symbolDB.GetDescription(LR(ppc_state)), + .Name = fmt::format(" * {} [ LR = {:08x} ]\n", ppc_symbol_db.GetDescription(LR(ppc_state)), LR(ppc_state) - 4), .vAddress = LR(ppc_state) - 4, }); - WalkTheStack(guard, [&output](u32 func_addr) { - std::string func_desc = g_symbolDB.GetDescription(func_addr); + WalkTheStack(guard, [&output, &ppc_symbol_db](u32 func_addr) { + std::string func_desc = ppc_symbol_db.GetDescription(func_addr); if (func_desc.empty() || func_desc == "Invalid") func_desc = "(unknown)"; @@ -91,7 +94,9 @@ bool GetCallstack(const Core::CPUThreadGuard& guard, std::vector void PrintCallstack(const Core::CPUThreadGuard& guard, Common::Log::LogType type, Common::Log::LogLevel level) { - const auto& ppc_state = guard.GetSystem().GetPPCState(); + auto& power_pc = guard.GetSystem().GetPowerPC(); + const auto& ppc_state = power_pc.GetPPCState(); + auto& ppc_symbol_db = power_pc.GetSymbolDB(); GENERIC_LOG_FMT(type, level, "== STACK TRACE - SP = {:08x} ==", ppc_state.gpr[1]); @@ -100,14 +105,14 @@ void PrintCallstack(const Core::CPUThreadGuard& guard, Common::Log::LogType type GENERIC_LOG_FMT(type, level, " LR = 0 - this is bad"); } - if (g_symbolDB.GetDescription(ppc_state.pc) != g_symbolDB.GetDescription(LR(ppc_state))) + if (ppc_symbol_db.GetDescription(ppc_state.pc) != ppc_symbol_db.GetDescription(LR(ppc_state))) { - GENERIC_LOG_FMT(type, level, " * {} [ LR = {:08x} ]", g_symbolDB.GetDescription(LR(ppc_state)), - LR(ppc_state)); + GENERIC_LOG_FMT(type, level, " * {} [ LR = {:08x} ]", + ppc_symbol_db.GetDescription(LR(ppc_state)), LR(ppc_state)); } - WalkTheStack(guard, [type, level](u32 func_addr) { - std::string func_desc = g_symbolDB.GetDescription(func_addr); + WalkTheStack(guard, [type, level, &ppc_symbol_db](u32 func_addr) { + std::string func_desc = ppc_symbol_db.GetDescription(func_addr); if (func_desc.empty() || func_desc == "Invalid") func_desc = "(unknown)"; GENERIC_LOG_FMT(type, level, " * {} [ addr = {:08x} ]", func_desc, func_addr); diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index d6afc64e69d7..c9d0346858f7 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -90,7 +90,8 @@ void PPCPatches::UnPatch(std::size_t index) PatchEngine::RemoveMemoryPatch(index); } -PPCDebugInterface::PPCDebugInterface(Core::System& system) : m_system(system) +PPCDebugInterface::PPCDebugInterface(Core::System& system, PPCSymbolDB& ppc_symbol_db) + : m_system(system), m_ppc_symbol_db(ppc_symbol_db) { } @@ -423,7 +424,7 @@ u32 PPCDebugInterface::GetColor(const Core::CPUThreadGuard* guard, u32 address) if (!PowerPC::MMU::HostIsRAMAddress(*guard, address)) return 0xeeeeee; - Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(address); + const Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(address); if (!symbol) return 0xFFFFFF; if (symbol->type != Common::Symbol::Type::Function) @@ -443,7 +444,7 @@ u32 PPCDebugInterface::GetColor(const Core::CPUThreadGuard* guard, u32 address) std::string PPCDebugInterface::GetDescription(u32 address) const { - return g_symbolDB.GetDescription(address); + return m_ppc_symbol_db.GetDescription(address); } std::optional diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.h b/Source/Core/Core/Debugger/PPCDebugInterface.h index ca12de23f86c..579a7792090c 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.h +++ b/Source/Core/Core/Debugger/PPCDebugInterface.h @@ -17,6 +17,7 @@ namespace Core class CPUThreadGuard; class System; } // namespace Core +class PPCSymbolDB; void ApplyMemoryPatch(const Core::CPUThreadGuard&, Common::Debug::MemoryPatch& patch, bool store_existing_value = true); @@ -36,7 +37,7 @@ class PPCPatches final : public Common::Debug::MemoryPatches class PPCDebugInterface final : public Core::DebugInterface { public: - explicit PPCDebugInterface(Core::System& system); + explicit PPCDebugInterface(Core::System& system, PPCSymbolDB& ppc_symbol_db); ~PPCDebugInterface() override; // Watches @@ -112,4 +113,5 @@ class PPCDebugInterface final : public Core::DebugInterface PPCPatches m_patches; std::shared_ptr m_network_logger; Core::System& m_system; + PPCSymbolDB& m_ppc_symbol_db; }; diff --git a/Source/Core/Core/HLE/HLE.cpp b/Source/Core/Core/HLE/HLE.cpp index a8bc7c9901d9..94548d84efce 100644 --- a/Source/Core/Core/HLE/HLE.cpp +++ b/Source/Core/Core/HLE/HLE.cpp @@ -106,7 +106,9 @@ void PatchFixedFunctions(Core::System& system) void PatchFunctions(Core::System& system) { - auto& ppc_state = system.GetPPCState(); + auto& power_pc = system.GetPowerPC(); + auto& ppc_state = power_pc.GetPPCState(); + auto& ppc_symbol_db = power_pc.GetSymbolDB(); // Remove all hooks that aren't fixed address hooks for (auto i = s_hooked_addresses.begin(); i != s_hooked_addresses.end();) @@ -128,7 +130,7 @@ void PatchFunctions(Core::System& system) if (os_patches[i].flags == HookFlag::Fixed) continue; - for (const auto& symbol : g_symbolDB.GetSymbolsFromName(os_patches[i].name)) + for (const auto& symbol : ppc_symbol_db.GetSymbolsFromName(os_patches[i].name)) { for (u32 addr = symbol->address; addr < symbol->address + symbol->size; addr += 4) { @@ -178,14 +180,14 @@ u32 GetHookByAddress(u32 address) return (iter != s_hooked_addresses.end()) ? iter->second : 0; } -u32 GetHookByFunctionAddress(u32 address) +u32 GetHookByFunctionAddress(PPCSymbolDB& ppc_symbol_db, u32 address) { const u32 index = GetHookByAddress(address); // Fixed hooks use a fixed address and don't patch the whole function if (index == 0 || os_patches[index].flags == HookFlag::Fixed) return index; - const auto symbol = g_symbolDB.GetSymbolFromAddr(address); + const Common::Symbol* const symbol = ppc_symbol_db.GetSymbolFromAddr(address); return (symbol && symbol->address == address) ? index : 0; } @@ -199,9 +201,10 @@ HookFlag GetHookFlagsByIndex(u32 index) return os_patches[index].flags; } -TryReplaceFunctionResult TryReplaceFunction(u32 address, PowerPC::CoreMode mode) +TryReplaceFunctionResult TryReplaceFunction(PPCSymbolDB& ppc_symbol_db, u32 address, + PowerPC::CoreMode mode) { - const u32 hook_index = GetHookByFunctionAddress(address); + const u32 hook_index = GetHookByFunctionAddress(ppc_symbol_db, address); if (hook_index == 0) return {}; @@ -229,7 +232,8 @@ u32 UnPatch(Core::System& system, std::string_view patch_name) if (patch == std::end(os_patches)) return 0; - auto& ppc_state = system.GetPPCState(); + auto& power_pc = system.GetPowerPC(); + auto& ppc_state = power_pc.GetPPCState(); if (patch->flags == HookFlag::Fixed) { @@ -252,10 +256,10 @@ u32 UnPatch(Core::System& system, std::string_view patch_name) return addr; } - const auto& symbols = g_symbolDB.GetSymbolsFromName(patch_name); + const auto symbols = power_pc.GetSymbolDB().GetSymbolsFromName(patch_name); if (!symbols.empty()) { - const auto& symbol = symbols[0]; + const Common::Symbol* const symbol = symbols.front(); for (u32 addr = symbol->address; addr < symbol->address + symbol->size; addr += 4) { s_hooked_addresses.erase(addr); diff --git a/Source/Core/Core/HLE/HLE.h b/Source/Core/Core/HLE/HLE.h index 3935ce4c5ea1..e273e8b4d7ea 100644 --- a/Source/Core/Core/HLE/HLE.h +++ b/Source/Core/Core/HLE/HLE.h @@ -18,6 +18,8 @@ namespace PowerPC enum class CoreMode; } +class PPCSymbolDB; + namespace HLE { using HookFunction = void (*)(const Core::CPUThreadGuard&); @@ -66,7 +68,7 @@ void ExecuteFromJIT(u32 current_pc, u32 hook_index, Core::System& system); // Returns the HLE hook index of the address u32 GetHookByAddress(u32 address); // Returns the HLE hook index if the address matches the function start -u32 GetHookByFunctionAddress(u32 address); +u32 GetHookByFunctionAddress(PPCSymbolDB& ppc_symbol_db, u32 address); HookType GetHookTypeByIndex(u32 index); HookFlag GetHookFlagsByIndex(u32 index); @@ -74,6 +76,7 @@ bool IsEnabled(HookFlag flag, PowerPC::CoreMode mode); // Performs the backend-independent preliminary checking for whether a function // can be HLEd. If it can be, the information needed for HLEing it is returned. -TryReplaceFunctionResult TryReplaceFunction(u32 address, PowerPC::CoreMode mode); +TryReplaceFunctionResult TryReplaceFunction(PPCSymbolDB& ppc_symbol_db, u32 address, + PowerPC::CoreMode mode); } // namespace HLE diff --git a/Source/Core/Core/IOS/MIOS.cpp b/Source/Core/Core/IOS/MIOS.cpp index 43b959acc0f8..e4babae25354 100644 --- a/Source/Core/Core/IOS/MIOS.cpp +++ b/Source/Core/Core/IOS/MIOS.cpp @@ -67,21 +67,22 @@ bool Load(Core::System& system) ReinitHardware(system); NOTICE_LOG_FMT(IOS, "Reinitialised hardware."); + auto& power_pc = system.GetPowerPC(); + auto& ppc_symbol_db = power_pc.GetSymbolDB(); + // Load symbols for the IPL if they exist. - if (!g_symbolDB.IsEmpty()) + if (!ppc_symbol_db.IsEmpty()) { - g_symbolDB.Clear(); + ppc_symbol_db.Clear(); Host_NotifyMapLoaded(); } - if (g_symbolDB.LoadMap(guard, File::GetUserPath(D_MAPS_IDX) + "mios-ipl.map")) + if (ppc_symbol_db.LoadMap(guard, File::GetUserPath(D_MAPS_IDX) + "mios-ipl.map")) { ::HLE::Clear(); ::HLE::PatchFunctions(system); Host_NotifyMapLoaded(); } - auto& power_pc = system.GetPowerPC(); - const PowerPC::CoreMode core_mode = power_pc.GetMode(); power_pc.SetMode(PowerPC::CoreMode::Interpreter); diff --git a/Source/Core/Core/PowerPC/BreakPoints.cpp b/Source/Core/Core/PowerPC/BreakPoints.cpp index 2d62dd569c43..0365fd81c641 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.cpp +++ b/Source/Core/Core/PowerPC/BreakPoints.cpp @@ -365,8 +365,7 @@ bool MemChecks::OverlapsMemcheck(u32 address, u32 length) const }); } -bool TMemCheck::Action(Core::System& system, Core::DebugInterface* debug_interface, u64 value, - u32 addr, bool write, size_t size, u32 pc) +bool TMemCheck::Action(Core::System& system, u64 value, u32 addr, bool write, size_t size, u32 pc) { if (!is_enabled) return false; @@ -376,9 +375,10 @@ bool TMemCheck::Action(Core::System& system, Core::DebugInterface* debug_interfa { if (log_on_hit) { + auto& ppc_symbol_db = system.GetPPCSymbolDB(); NOTICE_LOG_FMT(MEMMAP, "MBP {:08x} ({}) {}{} {:x} at {:08x} ({})", pc, - debug_interface->GetDescription(pc), write ? "Write" : "Read", size * 8, value, - addr, debug_interface->GetDescription(addr)); + ppc_symbol_db.GetDescription(pc), write ? "Write" : "Read", size * 8, value, + addr, ppc_symbol_db.GetDescription(addr)); } if (break_on_hit) return true; diff --git a/Source/Core/Core/PowerPC/BreakPoints.h b/Source/Core/Core/PowerPC/BreakPoints.h index 40d049986876..ce509e5d9735 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.h +++ b/Source/Core/Core/PowerPC/BreakPoints.h @@ -11,10 +11,6 @@ #include "Common/CommonTypes.h" #include "Core/PowerPC/Expression.h" -namespace Core -{ -class DebugInterface; -} namespace Core { class System; @@ -49,8 +45,7 @@ struct TMemCheck std::optional condition; // returns whether to break - bool Action(Core::System& system, Core::DebugInterface* debug_interface, u64 value, u32 addr, - bool write, size_t size, u32 pc); + bool Action(Core::System& system, u64 value, u32 addr, bool write, size_t size, u32 pc); }; // Code breakpoints. diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 291321f97a79..b9d78514d5c9 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -271,7 +271,7 @@ bool CachedInterpreter::HandleFunctionHooking(u32 address) { // CachedInterpreter inherits from JitBase and is considered a JIT by relevant code. // (see JitInterface and how m_mode is set within PowerPC.cpp) - const auto result = HLE::TryReplaceFunction(address, PowerPC::CoreMode::JIT); + const auto result = HLE::TryReplaceFunction(m_ppc_symbol_db, address, PowerPC::CoreMode::JIT); if (!result) return false; diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp index fc5f1d2abaea..a7c2fbed52be 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp @@ -65,8 +65,9 @@ void Interpreter::UpdatePC() } Interpreter::Interpreter(Core::System& system, PowerPC::PowerPCState& ppc_state, PowerPC::MMU& mmu, - Core::BranchWatch& branch_watch) - : m_system(system), m_ppc_state(ppc_state), m_mmu(mmu), m_branch_watch(branch_watch) + Core::BranchWatch& branch_watch, PPCSymbolDB& ppc_symbol_db) + : m_system(system), m_ppc_state(ppc_state), m_mmu(mmu), m_branch_watch(branch_watch), + m_ppc_symbol_db(ppc_symbol_db) { } @@ -107,7 +108,8 @@ void Interpreter::Trace(const UGeckoInstruction& inst) bool Interpreter::HandleFunctionHooking(u32 address) { - const auto result = HLE::TryReplaceFunction(address, PowerPC::CoreMode::Interpreter); + const auto result = + HLE::TryReplaceFunction(m_ppc_symbol_db, address, PowerPC::CoreMode::Interpreter); if (!result) return false; diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.h b/Source/Core/Core/PowerPC/Interpreter/Interpreter.h index d51ad1a2ddfe..d0c87b1c90dd 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.h +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.h @@ -19,12 +19,13 @@ namespace PowerPC class MMU; struct PowerPCState; } // namespace PowerPC +class PPCSymbolDB; class Interpreter : public CPUCoreBase { public: Interpreter(Core::System& system, PowerPC::PowerPCState& ppc_state, PowerPC::MMU& mmu, - Core::BranchWatch& branch_watch); + Core::BranchWatch& branch_watch, PPCSymbolDB& ppc_symbol_db); Interpreter(const Interpreter&) = delete; Interpreter(Interpreter&&) = delete; Interpreter& operator=(const Interpreter&) = delete; @@ -317,6 +318,7 @@ class Interpreter : public CPUCoreBase PowerPC::PowerPCState& m_ppc_state; PowerPC::MMU& m_mmu; Core::BranchWatch& m_branch_watch; + PPCSymbolDB& m_ppc_symbol_db; UGeckoInstruction m_prev_inst{}; u32 m_last_pc = 0; diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index e83b9204aa9b..ce1dc906d396 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -1285,7 +1285,7 @@ void Jit64::IntializeSpeculativeConstants() bool Jit64::HandleFunctionHooking(u32 address) { - const auto result = HLE::TryReplaceFunction(address, PowerPC::CoreMode::JIT); + const auto result = HLE::TryReplaceFunction(m_ppc_symbol_db, address, PowerPC::CoreMode::JIT); if (!result) return false; diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index 49b4238cce43..b8fada1dcb88 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -781,7 +781,7 @@ void JitArm64::WriteConditionalExceptionExit(int exception, ARM64Reg temp_gpr, A bool JitArm64::HandleFunctionHooking(u32 address) { - const auto result = HLE::TryReplaceFunction(address, PowerPC::CoreMode::JIT); + const auto result = HLE::TryReplaceFunction(m_ppc_symbol_db, address, PowerPC::CoreMode::JIT); if (!result) return false; diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp index 87f017f7f8fd..c99938876028 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp @@ -94,7 +94,8 @@ void JitTrampoline(JitBase& jit, u32 em_address) JitBase::JitBase(Core::System& system) : m_code_buffer(code_buffer_size), m_system(system), m_ppc_state(system.GetPPCState()), - m_mmu(system.GetMMU()), m_branch_watch(system.GetPowerPC().GetBranchWatch()) + m_mmu(system.GetMMU()), m_branch_watch(system.GetPowerPC().GetBranchWatch()), + m_ppc_symbol_db(system.GetPPCSymbolDB()) { m_registered_config_callback_id = CPUThreadConfigCallback::AddConfigChangedCallback([this] { if (DoesConfigNeedRefresh()) diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.h b/Source/Core/Core/PowerPC/JitCommon/JitBase.h index 1d947da5eae4..d3579368f42f 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.h @@ -31,6 +31,7 @@ namespace PowerPC class MMU; struct PowerPCState; } // namespace PowerPC +class PPCSymbolDB; //#define JIT_LOG_GENERATED_CODE // Enables logging of generated code //#define JIT_LOG_GPR // Enables logging of the PPC general purpose regs @@ -208,6 +209,7 @@ class JitBase : public CPUCoreBase PowerPC::PowerPCState& m_ppc_state; PowerPC::MMU& m_mmu; Core::BranchWatch& m_branch_watch; + PPCSymbolDB& m_ppc_symbol_db; }; void JitTrampoline(JitBase& jit, u32 em_address); diff --git a/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp b/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp index ecd7600700e4..d8d6e8d13b81 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp @@ -152,7 +152,7 @@ void JitBaseBlockCache::FinalizeBlock(JitBlock& block, bool block_link, Common::Symbol* symbol = nullptr; if (Common::JitRegister::IsEnabled() && - (symbol = g_symbolDB.GetSymbolFromAddr(block.effectiveAddress)) != nullptr) + (symbol = m_jit.m_ppc_symbol_db.GetSymbolFromAddr(block.effectiveAddress)) != nullptr) { Common::JitRegister::Register(block.normalEntry, block.codeSize, "JIT_PPC_{}_{:08x}", symbol->function_name.c_str(), block.physicalAddress); diff --git a/Source/Core/Core/PowerPC/JitInterface.cpp b/Source/Core/Core/PowerPC/JitInterface.cpp index ed60b4d489e6..80ac9f873fb5 100644 --- a/Source/Core/Core/PowerPC/JitInterface.cpp +++ b/Source/Core/Core/PowerPC/JitInterface.cpp @@ -138,7 +138,7 @@ void JitInterface::WriteProfileResults(const std::string& filename) const "ms)\tblkCodeSize\n"); for (auto& stat : prof_stats.block_stats) { - std::string name = g_symbolDB.GetDescription(stat.addr); + std::string name = m_system.GetPPCSymbolDB().GetDescription(stat.addr); double percent = 100.0 * (double)stat.cost / (double)prof_stats.cost_sum; double timePercent = 100.0 * (double)stat.tick_counter / (double)prof_stats.timecost_sum; f.WriteString(fmt::format("{0:08x}\t{1}\t{2}\t{3}\t{4}\t{5:.2f}\t{6:.2f}\t{7:.2f}\t{8}\n", diff --git a/Source/Core/Core/PowerPC/MMU.cpp b/Source/Core/Core/PowerPC/MMU.cpp index c43f58ab8656..59f574ad655c 100644 --- a/Source/Core/Core/PowerPC/MMU.cpp +++ b/Source/Core/Core/PowerPC/MMU.cpp @@ -558,8 +558,7 @@ void MMU::Memcheck(u32 address, u64 var, bool write, size_t size) mc->num_hits++; - const bool pause = mc->Action(m_system, &m_power_pc.GetDebugInterface(), var, address, write, - size, m_ppc_state.pc); + const bool pause = mc->Action(m_system, var, address, write, size, m_ppc_state.pc); if (!pause) return; diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index 978edfba808e..b5686569680f 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -187,12 +187,12 @@ bool ReanalyzeFunction(const Core::CPUThreadGuard& guard, u32 start_addr, Common // Second pass analysis, done after the first pass is done for all functions // so we have more information to work with -static void AnalyzeFunction2(Common::Symbol* func) +static void AnalyzeFunction2(PPCSymbolDB* func_db, Common::Symbol* func) { u32 flags = func->flags; - bool nonleafcall = std::any_of(func->calls.begin(), func->calls.end(), [](const auto& call) { - const Common::Symbol* called_func = g_symbolDB.GetSymbolFromAddr(call.function); + bool nonleafcall = std::any_of(func->calls.begin(), func->calls.end(), [&](const auto& call) { + const Common::Symbol* const called_func = func_db->GetSymbolFromAddr(call.function); return called_func && (called_func->flags & Common::FFLAG_LEAF) == 0; }); @@ -408,7 +408,7 @@ void FindFunctions(const Core::CPUThreadGuard& guard, u32 startAddr, u32 endAddr WARN_LOG_FMT(SYMBOLS, "Weird function"); continue; } - AnalyzeFunction2(&(func.second)); + AnalyzeFunction2(func_db, &(func.second)); Common::Symbol& f = func.second; if (f.name.substr(0, 3) == "zzz") { @@ -824,7 +824,8 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, const bool enable_follow = m_enable_branch_following; - auto& mmu = Core::System::GetInstance().GetMMU(); + auto& system = Core::System::GetInstance(); + auto& mmu = system.GetMMU(); for (std::size_t i = 0; i < block_size; ++i) { auto result = mmu.TryReadInstruction(address); @@ -979,6 +980,8 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, block->m_broken = true; } + auto& power_pc = system.GetPowerPC(); + auto& ppc_symbol_db = power_pc.GetSymbolDB(); // Scan for flag dependencies; assume the next block (or any branch that can leave the block) // wants flags, to be safe. bool wantsFPRF = true; @@ -998,8 +1001,8 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, crDiscardable = BitSet8{}; } - const auto ppc_mode = Core::System::GetInstance().GetPowerPC().GetMode(); - const bool hle = !!HLE::TryReplaceFunction(op.address, ppc_mode); + const auto ppc_mode = power_pc.GetMode(); + const bool hle = !!HLE::TryReplaceFunction(ppc_symbol_db, op.address, ppc_mode); const bool may_exit_block = hle || op.canEndBlock || op.canCauseException; const bool opWantsFPRF = op.wantsFPRF; diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp index bf0229f2924a..d1f2a5a719ba 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp @@ -26,8 +26,6 @@ #include "Core/PowerPC/SignatureDB/SignatureDB.h" #include "Core/System.h" -PPCSymbolDB g_symbolDB; - PPCSymbolDB::PPCSymbolDB() = default; PPCSymbolDB::~PPCSymbolDB() = default; diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.h b/Source/Core/Core/PowerPC/PPCSymbolDB.h index 74714d011cdb..7c5861ff433d 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.h +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.h @@ -39,5 +39,3 @@ class PPCSymbolDB : public Common::SymbolDB void PrintCallers(u32 funcAddr) const; void LogFunctionCall(u32 addr); }; - -extern PPCSymbolDB g_symbolDB; diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index 453413921628..b1d76aac4531 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -85,7 +85,8 @@ std::ostream& operator<<(std::ostream& os, CPUCore core) } PowerPCManager::PowerPCManager(Core::System& system) - : m_breakpoints(system), m_memchecks(system), m_debug_interface(system), m_system(system) + : m_breakpoints(system), m_memchecks(system), m_debug_interface(system, m_symbol_db), + m_system(system) { } @@ -668,7 +669,7 @@ void PowerPCManager::CheckBreakPoints() NOTICE_LOG_FMT(MEMMAP, "BP {:08x} {}({:08x} {:08x} {:08x} {:08x} {:08x} {:08x} {:08x} {:08x} {:08x} " "{:08x}) LR={:08x}", - m_ppc_state.pc, g_symbolDB.GetDescription(m_ppc_state.pc), m_ppc_state.gpr[3], + m_ppc_state.pc, m_symbol_db.GetDescription(m_ppc_state.pc), m_ppc_state.gpr[3], m_ppc_state.gpr[4], m_ppc_state.gpr[5], m_ppc_state.gpr[6], m_ppc_state.gpr[7], 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)); diff --git a/Source/Core/Core/PowerPC/PowerPC.h b/Source/Core/Core/PowerPC/PowerPC.h index 750f0c6f69dc..e4d00ec8843e 100644 --- a/Source/Core/Core/PowerPC/PowerPC.h +++ b/Source/Core/Core/PowerPC/PowerPC.h @@ -20,6 +20,7 @@ #include "Core/PowerPC/ConditionRegister.h" #include "Core/PowerPC/Gekko.h" #include "Core/PowerPC/PPCCache.h" +#include "Core/PowerPC/PPCSymbolDB.h" class CPUCoreBase; class PointerWrap; @@ -299,6 +300,8 @@ class PowerPCManager const MemChecks& GetMemChecks() const { return m_memchecks; } PPCDebugInterface& GetDebugInterface() { return m_debug_interface; } const PPCDebugInterface& GetDebugInterface() const { return m_debug_interface; } + PPCSymbolDB& GetSymbolDB() { return m_symbol_db; } + const PPCSymbolDB& GetSymbolDB() const { return m_symbol_db; } Core::BranchWatch& GetBranchWatch() { return m_branch_watch; } const Core::BranchWatch& GetBranchWatch() const { return m_branch_watch; } @@ -316,6 +319,7 @@ class PowerPCManager BreakPoints m_breakpoints; MemChecks m_memchecks; + PPCSymbolDB m_symbol_db; PPCDebugInterface m_debug_interface; Core::BranchWatch m_branch_watch; diff --git a/Source/Core/Core/System.cpp b/Source/Core/Core/System.cpp index 2da55975deaf..695d5861fc10 100644 --- a/Source/Core/Core/System.cpp +++ b/Source/Core/Core/System.cpp @@ -52,7 +52,8 @@ struct System::Impl m_memory(system), m_pixel_engine{system}, m_power_pc(system), m_mmu(system, m_memory, m_power_pc), m_processor_interface(system), m_serial_interface(system), m_system_timers(system), m_video_interface(system), - m_interpreter(system, m_power_pc.GetPPCState(), m_mmu, m_power_pc.GetBranchWatch()), + m_interpreter(system, m_power_pc.GetPPCState(), m_mmu, m_power_pc.GetBranchWatch(), + m_power_pc.GetSymbolDB()), m_jit_interface(system), m_fifo_player(system), m_fifo_recorder(system), m_movie(system) { } @@ -287,6 +288,11 @@ PowerPC::PowerPCState& System::GetPPCState() const return m_impl->m_power_pc.GetPPCState(); } +PPCSymbolDB& System::GetPPCSymbolDB() const +{ + return m_impl->m_power_pc.GetSymbolDB(); +} + ProcessorInterface::ProcessorInterfaceManager& System::GetProcessorInterface() const { return m_impl->m_processor_interface; diff --git a/Source/Core/Core/System.h b/Source/Core/Core/System.h index acaf2daad7bc..a1422ac84d41 100644 --- a/Source/Core/Core/System.h +++ b/Source/Core/Core/System.h @@ -92,6 +92,7 @@ class MMU; class PowerPCManager; struct PowerPCState; } // namespace PowerPC +class PPCSymbolDB; namespace ProcessorInterface { class ProcessorInterfaceManager; @@ -184,6 +185,7 @@ class System PixelShaderManager& GetPixelShaderManager() const; PowerPC::PowerPCManager& GetPowerPC() const; PowerPC::PowerPCState& GetPPCState() const; + PPCSymbolDB& GetPPCSymbolDB() const; ProcessorInterface::ProcessorInterfaceManager& GetProcessorInterface() const; SerialInterface::SerialInterfaceManager& GetSerialInterface() const; Sram& GetSRAM() const; diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index 39d755efc9d6..d9ff18db03d9 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -194,25 +194,26 @@ void BranchWatchProxyModel::SetInspected(const QModelIndex& index) } BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& branch_watch, - CodeWidget* code_widget, QWidget* parent) + PPCSymbolDB& ppc_symbol_db, CodeWidget* code_widget, + QWidget* parent) : QDialog(parent), m_system(system), m_branch_watch(branch_watch), m_code_widget(code_widget) { setWindowTitle(tr("Branch Watch Tool")); setWindowFlags((windowFlags() | Qt::WindowMinMaxButtonsHint) & ~Qt::WindowContextHelpButtonHint); SetQWidgetWindowDecorations(this); - setLayout([this]() { + setLayout([this, &ppc_symbol_db]() { auto* main_layout = new QVBoxLayout; // Controls Toolbar (widgets are added later) main_layout->addWidget(m_control_toolbar = new QToolBar); // Branch Watch Table - main_layout->addWidget(m_table_view = [this]() { + main_layout->addWidget(m_table_view = [this, &ppc_symbol_db]() { const auto& ui_settings = Settings::Instance(); m_table_proxy = new BranchWatchProxyModel(m_branch_watch); - m_table_proxy->setSourceModel(m_table_model = - new BranchWatchTableModel(m_system, m_branch_watch)); + 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_model->setFont(ui_settings.GetDebugFont()); diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h index d97972980c2c..22181c069970 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -17,6 +17,8 @@ class BranchWatch; class CPUThreadGuard; class System; } // namespace Core +class PPCSymbolDB; + class BranchWatchProxyModel; class BranchWatchTableModel; class CodeWidget; @@ -48,7 +50,8 @@ class BranchWatchDialog : public QDialog public: explicit BranchWatchDialog(Core::System& system, Core::BranchWatch& branch_watch, - CodeWidget* code_widget, QWidget* parent = nullptr); + PPCSymbolDB& ppc_symbol_db, CodeWidget* code_widget, + QWidget* parent = nullptr); ~BranchWatchDialog() override; protected: diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp index 800973a6dd2b..08d7ae021d55 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp @@ -285,8 +285,8 @@ void BranchWatchTableModel::PrefetchSymbols() for (const Core::BranchWatch::Selection::value_type& value : selection) { const Core::BranchWatch::Collection::value_type* const kv = value.collection_ptr; - m_symbol_list.emplace_back(g_symbolDB.GetSymbolFromAddr(kv->first.origin_addr), - g_symbolDB.GetSymbolFromAddr(kv->first.destin_addr)); + m_symbol_list.emplace_back(m_ppc_symbol_db.GetSymbolFromAddr(kv->first.origin_addr), + m_ppc_symbol_db.GetSymbolFromAddr(kv->first.destin_addr)); } } diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h index 7b3cf42bb1ab..b91dba37d24b 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h @@ -18,6 +18,7 @@ class BranchWatch; class CPUThreadGuard; class System; } // namespace Core +class PPCSymbolDB; namespace BranchWatchTableModelColumn { @@ -69,8 +70,9 @@ class BranchWatchTableModel final : public QAbstractTableModel using SymbolList = QList; explicit BranchWatchTableModel(Core::System& system, Core::BranchWatch& branch_watch, - QObject* parent = nullptr) - : QAbstractTableModel(parent), m_system(system), m_branch_watch(branch_watch) + PPCSymbolDB& ppc_symbol_db, QObject* parent = nullptr) + : QAbstractTableModel(parent), m_system(system), m_branch_watch(branch_watch), + m_ppc_symbol_db(ppc_symbol_db) { } QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; @@ -113,6 +115,7 @@ class BranchWatchTableModel final : public QAbstractTableModel Core::System& m_system; Core::BranchWatch& m_branch_watch; + PPCSymbolDB& m_ppc_symbol_db; SymbolList m_symbol_list; mutable QFont m_font; diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index bf29361973a0..bf35c52cd57a 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -178,6 +178,7 @@ void BreakpointWidget::Update() auto& power_pc = m_system.GetPowerPC(); auto& breakpoints = power_pc.GetBreakPoints(); auto& memchecks = power_pc.GetMemChecks(); + auto& ppc_symbol_db = power_pc.GetSymbolDB(); // Breakpoints for (const auto& bp : breakpoints.GetBreakPoints()) @@ -192,10 +193,10 @@ void BreakpointWidget::Update() m_table->setItem(i, 0, active); m_table->setItem(i, 1, create_item(QStringLiteral("BP"))); - if (g_symbolDB.GetSymbolFromAddr(bp.address)) + if (ppc_symbol_db.GetSymbolFromAddr(bp.address)) { - m_table->setItem(i, 2, - create_item(QString::fromStdString(g_symbolDB.GetDescription(bp.address)))); + m_table->setItem( + i, 2, create_item(QString::fromStdString(ppc_symbol_db.GetDescription(bp.address)))); } m_table->setItem(i, 3, @@ -233,10 +234,11 @@ void BreakpointWidget::Update() m_table->setItem(i, 0, active); m_table->setItem(i, 1, create_item(QStringLiteral("MBP"))); - if (g_symbolDB.GetSymbolFromAddr(mbp.start_address)) + if (ppc_symbol_db.GetSymbolFromAddr(mbp.start_address)) { m_table->setItem( - i, 2, create_item(QString::fromStdString(g_symbolDB.GetDescription(mbp.start_address)))); + i, 2, + create_item(QString::fromStdString(ppc_symbol_db.GetDescription(mbp.start_address)))); } if (mbp.is_ranged) diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index df6ccc6a5bdf..a7b097b93c0a 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -138,7 +138,8 @@ constexpr int CODE_VIEW_COLUMN_DESCRIPTION = 4; constexpr int CODE_VIEW_COLUMN_BRANCH_ARROWS = 5; constexpr int CODE_VIEW_COLUMNCOUNT = 6; -CodeViewWidget::CodeViewWidget() : m_system(Core::System::GetInstance()) +CodeViewWidget::CodeViewWidget() + : m_system(Core::System::GetInstance()), m_ppc_symbol_db(m_system.GetPPCSymbolDB()) { setColumnCount(CODE_VIEW_COLUMNCOUNT); setShowGrid(false); @@ -382,7 +383,7 @@ void CodeViewWidget::Update(const Core::CPUThreadGuard* guard) if (debug_interface.IsBreakpoint(addr)) { auto icon = Resources::GetThemeIcon("debugger_breakpoint").pixmap(QSize(rowh - 2, rowh - 2)); - if (!m_system.GetPowerPC().GetBreakPoints().IsBreakPointEnable(addr)) + if (!power_pc.GetBreakPoints().IsBreakPointEnable(addr)) { QPixmap disabled_icon(icon.size()); disabled_icon.fill(Qt::transparent); @@ -410,7 +411,7 @@ void CodeViewWidget::Update(const Core::CPUThreadGuard* guard) CalculateBranchIndentation(); - g_symbolDB.FillInCallers(); + m_ppc_symbol_db.FillInCallers(); repaint(); m_updating = false; @@ -561,7 +562,7 @@ void CodeViewWidget::OnContextMenu() const u32 addr = GetContextAddress(); - bool has_symbol = g_symbolDB.GetSymbolFromAddr(addr); + const bool has_symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); auto* follow_branch_action = menu->addAction(tr("Follow &branch"), this, &CodeViewWidget::OnFollowBranch); @@ -819,7 +820,7 @@ void CodeViewWidget::OnCopyFunction() { const u32 address = GetContextAddress(); - const Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(address); + const Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(address); if (!symbol) return; @@ -877,7 +878,7 @@ void CodeViewWidget::OnAddFunction() Core::CPUThreadGuard guard(m_system); - g_symbolDB.AddFunction(guard, addr); + m_ppc_symbol_db.AddFunction(guard, addr); emit SymbolsChanged(); Update(&guard); } @@ -915,7 +916,7 @@ void CodeViewWidget::OnRenameSymbol() { const u32 addr = GetContextAddress(); - Common::Symbol* const symbol = g_symbolDB.GetSymbolFromAddr(addr); + Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); if (!symbol) return; @@ -950,7 +951,7 @@ void CodeViewWidget::OnSetSymbolSize() { const u32 addr = GetContextAddress(); - Common::Symbol* const symbol = g_symbolDB.GetSymbolFromAddr(addr); + Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); if (!symbol) return; @@ -975,7 +976,7 @@ void CodeViewWidget::OnSetSymbolEndAddress() { const u32 addr = GetContextAddress(); - Common::Symbol* const symbol = g_symbolDB.GetSymbolFromAddr(addr); + Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); if (!symbol) return; diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.h b/Source/Core/DolphinQt/Debugger/CodeViewWidget.h index 5e63eb96a4e6..81e747c21aa5 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.h @@ -23,6 +23,7 @@ class System; struct CodeViewBranch; class BranchDisplayDelegate; +class PPCSymbolDB; class CodeViewWidget : public QTableWidget { @@ -102,6 +103,7 @@ class CodeViewWidget : public QTableWidget void CalculateBranchIndentation(); Core::System& m_system; + PPCSymbolDB& m_ppc_symbol_db; bool m_updating = false; diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 382ec0386113..dbee26c6ecb2 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -36,7 +36,9 @@ static const QString BOX_SPLITTER_STYLESHEET = QStringLiteral( "QSplitter::handle { border-top: 1px dashed black; width: 1px; margin-left: 10px; " "margin-right: 10px; }"); -CodeWidget::CodeWidget(QWidget* parent) : QDockWidget(parent), m_system(Core::System::GetInstance()) +CodeWidget::CodeWidget(QWidget* parent) + : QDockWidget(parent), m_system(Core::System::GetInstance()), + m_ppc_symbol_db(m_system.GetPPCSymbolDB()) { setWindowTitle(tr("Code")); setObjectName(QStringLiteral("code")); @@ -171,13 +173,11 @@ void CodeWidget::ConnectWidgets() connect(m_search_address, &QLineEdit::returnPressed, this, &CodeWidget::OnSearchAddress); connect(m_search_symbols, &QLineEdit::textChanged, this, &CodeWidget::OnSearchSymbols); connect(m_search_calls, &QLineEdit::textChanged, this, [this]() { - const Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(m_code_view->GetAddress()); - if (symbol) + if (const Common::Symbol* symbol = m_ppc_symbol_db.GetSymbolFromAddr(m_code_view->GetAddress())) UpdateFunctionCalls(symbol); }); connect(m_search_callers, &QLineEdit::textChanged, this, [this]() { - const Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(m_code_view->GetAddress()); - if (symbol) + if (const Common::Symbol* symbol = m_ppc_symbol_db.GetSymbolFromAddr(m_code_view->GetAddress())) UpdateFunctionCallers(symbol); }); connect(m_search_callstack, &QLineEdit::textChanged, this, &CodeWidget::UpdateCallstack); @@ -194,8 +194,7 @@ void CodeWidget::ConnectWidgets() connect(m_code_view, &CodeViewWidget::SymbolsChanged, this, [this]() { UpdateCallstack(); UpdateSymbols(); - const Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(m_code_view->GetAddress()); - if (symbol) + if (const Common::Symbol* symbol = m_ppc_symbol_db.GetSymbolFromAddr(m_code_view->GetAddress())) { UpdateFunctionCalls(symbol); UpdateFunctionCallers(symbol); @@ -214,8 +213,8 @@ void CodeWidget::OnBranchWatchDialog() { if (m_branch_watch_dialog == nullptr) { - m_branch_watch_dialog = - new BranchWatchDialog(m_system, m_system.GetPowerPC().GetBranchWatch(), this, this); + m_branch_watch_dialog = new BranchWatchDialog(m_system, m_system.GetPowerPC().GetBranchWatch(), + m_ppc_symbol_db, this, this); } m_branch_watch_dialog->show(); m_branch_watch_dialog->raise(); @@ -260,7 +259,7 @@ void CodeWidget::OnSelectSymbol() return; const u32 address = items[0]->data(Qt::UserRole).toUInt(); - const Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(address); + const Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(address); m_code_view->SetAddress(address, CodeViewWidget::SetAddressUpdate::WithUpdate); UpdateCallstack(); @@ -321,7 +320,7 @@ void CodeWidget::Update() if (!isVisible()) return; - const Common::Symbol* symbol = g_symbolDB.GetSymbolFromAddr(m_code_view->GetAddress()); + const Common::Symbol* const symbol = m_ppc_symbol_db.GetSymbolFromAddr(m_code_view->GetAddress()); UpdateCallstack(); @@ -343,13 +342,7 @@ void CodeWidget::UpdateCallstack() return; std::vector stack; - - const bool success = [this, &stack] { - Core::CPUThreadGuard guard(m_system); - return Dolphin_Debugger::GetCallstack(guard, stack); - }(); - - if (!success) + if (!Dolphin_Debugger::GetCallstack(Core::CPUThreadGuard{m_system}, stack)) { m_callstack_list->addItem(tr("Invalid callstack")); return; @@ -377,7 +370,7 @@ void CodeWidget::UpdateSymbols() m_symbols_list->selectedItems()[0]->text(); m_symbols_list->clear(); - for (const auto& symbol : g_symbolDB.Symbols()) + for (const auto& symbol : m_ppc_symbol_db.Symbols()) { QString name = QString::fromStdString(symbol.second.name); @@ -411,7 +404,7 @@ void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol) for (const auto& call : symbol->calls) { const u32 addr = call.function; - const Common::Symbol* call_symbol = g_symbolDB.GetSymbolFromAddr(addr); + const Common::Symbol* const call_symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); if (call_symbol) { @@ -436,7 +429,7 @@ void CodeWidget::UpdateFunctionCallers(const Common::Symbol* symbol) for (const auto& caller : symbol->callers) { const u32 addr = caller.call_address; - const Common::Symbol* caller_symbol = g_symbolDB.GetSymbolFromAddr(addr); + const Common::Symbol* const caller_symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); if (caller_symbol) { diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.h b/Source/Core/DolphinQt/Debugger/CodeWidget.h index 7ccd2af2f3f5..e5465130a211 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.h @@ -26,6 +26,7 @@ namespace Core { class System; } +class PPCSymbolDB; class CodeWidget : public QDockWidget { @@ -71,6 +72,7 @@ class CodeWidget : public QDockWidget void showEvent(QShowEvent* event) override; Core::System& m_system; + PPCSymbolDB& m_ppc_symbol_db; BranchWatchDialog* m_branch_watch_dialog = nullptr; QLineEdit* m_search_address; diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 07d4d21cbb7d..a7cab0aebbba 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -1261,35 +1261,37 @@ void MenuBar::ClearSymbols() if (result == QMessageBox::Cancel) return; - g_symbolDB.Clear(); + Core::System::GetInstance().GetPPCSymbolDB().Clear(); emit NotifySymbolsUpdated(); } void MenuBar::GenerateSymbolsFromAddress() { - Core::CPUThreadGuard guard(Core::System::GetInstance()); - auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); + auto& ppc_symbol_db = system.GetPPCSymbolDB(); + + const Core::CPUThreadGuard guard(system); PPCAnalyst::FindFunctions(guard, Memory::MEM1_BASE_ADDR, - Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &g_symbolDB); + Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &ppc_symbol_db); emit NotifySymbolsUpdated(); } void MenuBar::GenerateSymbolsFromSignatureDB() { - Core::CPUThreadGuard guard(Core::System::GetInstance()); - auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); + auto& ppc_symbol_db = system.GetPPCSymbolDB(); + + const Core::CPUThreadGuard guard(system); PPCAnalyst::FindFunctions(guard, Memory::MEM1_BASE_ADDR, - Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &g_symbolDB); + Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &ppc_symbol_db); SignatureDB db(SignatureDB::HandlerType::DSY); if (db.Load(File::GetSysDirectory() + TOTALDB)) { - db.Apply(guard, &g_symbolDB); + db.Apply(guard, &ppc_symbol_db); ModalMessageBox::information( this, tr("Information"), tr("Generated symbol names from '%1'").arg(QString::fromStdString(TOTALDB))); @@ -1325,12 +1327,13 @@ void MenuBar::GenerateSymbolsFromRSO() return; } - Core::CPUThreadGuard guard(Core::System::GetInstance()); + auto& system = Core::System::GetInstance(); + const Core::CPUThreadGuard guard(system); RSOChainView rso_chain; if (rso_chain.Load(guard, static_cast(address))) { - rso_chain.Apply(guard, &g_symbolDB); + rso_chain.Apply(guard, &system.GetPPCSymbolDB()); emit NotifySymbolsUpdated(); } else @@ -1382,11 +1385,12 @@ void MenuBar::GenerateSymbolsFromRSOAuto() RSOChainView rso_chain; const u32 address = item.mid(0, item.indexOf(QLatin1Char(' '))).toUInt(nullptr, 16); - Core::CPUThreadGuard guard(Core::System::GetInstance()); + auto& system = Core::System::GetInstance(); + const Core::CPUThreadGuard guard(system); if (rso_chain.Load(guard, address)) { - rso_chain.Apply(guard, &g_symbolDB); + rso_chain.Apply(guard, &system.GetPPCSymbolDB()); emit NotifySymbolsUpdated(); } else @@ -1502,22 +1506,23 @@ void MenuBar::LoadSymbolMap() { auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); + auto& ppc_symbol_db = system.GetPPCSymbolDB(); std::string existing_map_file, writable_map_file; bool map_exists = CBoot::FindMapFile(&existing_map_file, &writable_map_file); if (!map_exists) { - g_symbolDB.Clear(); + ppc_symbol_db.Clear(); { - Core::CPUThreadGuard guard(Core::System::GetInstance()); + const Core::CPUThreadGuard guard(system); PPCAnalyst::FindFunctions(guard, Memory::MEM1_BASE_ADDR + 0x1300000, - Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &g_symbolDB); + Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &ppc_symbol_db); SignatureDB db(SignatureDB::HandlerType::DSY); if (db.Load(File::GetSysDirectory() + TOTALDB)) - db.Apply(guard, &g_symbolDB); + db.Apply(guard, &ppc_symbol_db); } ModalMessageBox::warning(this, tr("Warning"), @@ -1603,13 +1608,8 @@ void MenuBar::SaveCode() const std::string path = writable_map_file.substr(0, writable_map_file.find_last_of('.')) + "_code.map"; - bool success; - { - Core::CPUThreadGuard guard(Core::System::GetInstance()); - success = g_symbolDB.SaveCodeMap(guard, path); - } - - if (!success) + auto& system = Core::System::GetInstance(); + if (!system.GetPPCSymbolDB().SaveCodeMap(Core::CPUThreadGuard{system}, path)) { ModalMessageBox::warning( this, tr("Error"), @@ -1619,9 +1619,10 @@ void MenuBar::SaveCode() bool MenuBar::TryLoadMapFile(const QString& path, const bool bad) { - Core::CPUThreadGuard guard(Core::System::GetInstance()); + auto& system = Core::System::GetInstance(); + auto& ppc_symbol_db = system.GetPPCSymbolDB(); - if (!g_symbolDB.LoadMap(guard, path.toStdString(), bad)) + if (!ppc_symbol_db.LoadMap(Core::CPUThreadGuard{system}, path.toStdString(), bad)) { ModalMessageBox::warning(this, tr("Error"), tr("Failed to load map file '%1'").arg(path)); return false; @@ -1632,7 +1633,7 @@ bool MenuBar::TryLoadMapFile(const QString& path, const bool bad) void MenuBar::TrySaveSymbolMap(const QString& path) { - if (g_symbolDB.SaveSymbolMap(path.toStdString())) + if (Core::System::GetInstance().GetPPCSymbolDB().SaveSymbolMap(path.toStdString())) return; ModalMessageBox::warning(this, tr("Error"), @@ -1653,7 +1654,7 @@ void MenuBar::CreateSignatureFile() const std::string prefix = text.toStdString(); const std::string save_path = file.toStdString(); SignatureDB db(save_path); - db.Populate(&g_symbolDB, prefix); + db.Populate(&Core::System::GetInstance().GetPPCSymbolDB(), prefix); if (!db.Save(save_path)) { @@ -1678,7 +1679,7 @@ void MenuBar::AppendSignatureFile() const std::string prefix = text.toStdString(); const std::string signature_path = file.toStdString(); SignatureDB db(signature_path); - db.Populate(&g_symbolDB, prefix); + db.Populate(&Core::System::GetInstance().GetPPCSymbolDB(), prefix); db.List(); db.Load(signature_path); if (!db.Save(signature_path)) @@ -1699,15 +1700,13 @@ void MenuBar::ApplySignatureFile() if (file.isEmpty()) return; + auto& system = Core::System::GetInstance(); + const std::string load_path = file.toStdString(); SignatureDB db(load_path); db.Load(load_path); - { - Core::CPUThreadGuard guard(Core::System::GetInstance()); - db.Apply(guard, &g_symbolDB); - } + db.Apply(Core::CPUThreadGuard{system}, &system.GetPPCSymbolDB()); db.List(); - auto& system = Core::System::GetInstance(); HLE::PatchFunctions(system); emit NotifySymbolsUpdated(); } From 08ecefe0f71471610d52026fcc73af7c1966daa1 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 11 Mar 2024 12:37:52 -0400 Subject: [PATCH 089/223] Added locks to achievement runtime calls Testing found that spamming toggles for Enable Leaderboards etc risked leaderboards being deleted while the runtime was in the process of recalculating them; this should clear up those conflicts. --- Source/Core/Core/AchievementManager.cpp | 57 +++++++++++++------------ 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 3c5b329a8757..41dfac879a49 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -350,6 +350,7 @@ void AchievementManager::LoadUnlockData(const ResponseCallback& callback) void AchievementManager::ActivateDeactivateAchievements() { + std::lock_guard lg{m_lock}; if (!Config::Get(Config::RA_ENABLED) || !IsLoggedIn()) return; bool enabled = Config::Get(Config::RA_ACHIEVEMENTS_ENABLED); @@ -369,6 +370,7 @@ void AchievementManager::ActivateDeactivateAchievements() void AchievementManager::ActivateDeactivateLeaderboards() { + std::lock_guard lg{m_lock}; if (!Config::Get(Config::RA_ENABLED) || !IsLoggedIn()) return; bool leaderboards_enabled = @@ -395,6 +397,7 @@ void AchievementManager::ActivateDeactivateLeaderboards() void AchievementManager::ActivateDeactivateRichPresence() { + std::lock_guard lg{m_lock}; if (!Config::Get(Config::RA_ENABLED) || !IsLoggedIn()) return; rc_runtime_activate_richpresence( @@ -659,7 +662,7 @@ void AchievementManager::FetchBadges() void AchievementManager::DoFrame() { - if (!m_is_game_loaded) + if (!m_is_game_loaded || !Core::IsCPUThread()) return; if (m_framecount == 0x200) { @@ -669,7 +672,8 @@ void AchievementManager::DoFrame() { m_framecount++; } - Core::RunAsCPUThread([&] { + { + std::lock_guard lg{m_lock}; rc_runtime_do_frame( &m_runtime, [](const rc_runtime_event_t* runtime_event) { @@ -679,7 +683,7 @@ void AchievementManager::DoFrame() return static_cast(ud)->MemoryPeeker(address, num_bytes, ud); }, this, nullptr); - }); + } if (!m_system) return; time_t current_time = std::time(nullptr); @@ -724,32 +728,29 @@ u32 AchievementManager::MemoryPeeker(u32 address, u32 num_bytes, void* ud) void AchievementManager::AchievementEventHandler(const rc_runtime_event_t* runtime_event) { + switch (runtime_event->type) { - std::lock_guard lg{m_lock}; - switch (runtime_event->type) - { - case RC_RUNTIME_EVENT_ACHIEVEMENT_TRIGGERED: - HandleAchievementTriggeredEvent(runtime_event); - break; - case RC_RUNTIME_EVENT_ACHIEVEMENT_PROGRESS_UPDATED: - HandleAchievementProgressUpdatedEvent(runtime_event); - break; - case RC_RUNTIME_EVENT_ACHIEVEMENT_PRIMED: - HandleAchievementPrimedEvent(runtime_event); - break; - case RC_RUNTIME_EVENT_ACHIEVEMENT_UNPRIMED: - HandleAchievementUnprimedEvent(runtime_event); - break; - case RC_RUNTIME_EVENT_LBOARD_STARTED: - HandleLeaderboardStartedEvent(runtime_event); - break; - case RC_RUNTIME_EVENT_LBOARD_CANCELED: - HandleLeaderboardCanceledEvent(runtime_event); - break; - case RC_RUNTIME_EVENT_LBOARD_TRIGGERED: - HandleLeaderboardTriggeredEvent(runtime_event); - break; - } + case RC_RUNTIME_EVENT_ACHIEVEMENT_TRIGGERED: + HandleAchievementTriggeredEvent(runtime_event); + break; + case RC_RUNTIME_EVENT_ACHIEVEMENT_PROGRESS_UPDATED: + HandleAchievementProgressUpdatedEvent(runtime_event); + break; + case RC_RUNTIME_EVENT_ACHIEVEMENT_PRIMED: + HandleAchievementPrimedEvent(runtime_event); + break; + case RC_RUNTIME_EVENT_ACHIEVEMENT_UNPRIMED: + HandleAchievementUnprimedEvent(runtime_event); + break; + case RC_RUNTIME_EVENT_LBOARD_STARTED: + HandleLeaderboardStartedEvent(runtime_event); + break; + case RC_RUNTIME_EVENT_LBOARD_CANCELED: + HandleLeaderboardCanceledEvent(runtime_event); + break; + case RC_RUNTIME_EVENT_LBOARD_TRIGGERED: + HandleLeaderboardTriggeredEvent(runtime_event); + break; } } From 0fff8374d03e0551e42ddbd21f5b18e671310274 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 14 Mar 2024 15:55:14 -0500 Subject: [PATCH 090/223] SDL: Move class definition out of header. --- .../ControllerInterface/SDL/SDL.cpp | 235 +++++++++++++++++- .../InputCommon/ControllerInterface/SDL/SDL.h | 233 ----------------- 2 files changed, 234 insertions(+), 234 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index 28ee21d6d709..dfd5fc639d93 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -3,10 +3,12 @@ #include "InputCommon/ControllerInterface/SDL/SDL.h" -#include #include #include +#include +#include + #include "Common/Event.h" #include "Common/Logging/Log.h" #include "Common/ScopeGuard.h" @@ -24,6 +26,237 @@ class Device; namespace ciface::SDL { + +class GameController : public Core::Device +{ +private: + // GameController inputs + class Button : public Core::Device::Input + { + public: + std::string GetName() const override; + Button(SDL_GameController* gc, SDL_GameControllerButton button) : m_gc(gc), m_button(button) {} + ControlState GetState() const override; + bool IsMatchingName(std::string_view name) const override; + + private: + SDL_GameController* const m_gc; + const SDL_GameControllerButton m_button; + }; + + class Axis : public Core::Device::Input + { + public: + std::string GetName() const override; + Axis(SDL_GameController* gc, Sint16 range, SDL_GameControllerAxis axis) + : m_gc(gc), m_range(range), m_axis(axis) + { + } + ControlState GetState() const override; + + private: + SDL_GameController* const m_gc; + const Sint16 m_range; + const SDL_GameControllerAxis m_axis; + }; + + // Legacy inputs + class LegacyButton : public Core::Device::Input + { + public: + std::string GetName() const override; + LegacyButton(SDL_Joystick* js, int index, bool is_detectable) + : m_js(js), m_index(index), m_is_detectable(is_detectable) + { + } + bool IsDetectable() const override { return m_is_detectable; } + ControlState GetState() const override; + + private: + SDL_Joystick* const m_js; + const int m_index; + const bool m_is_detectable; + }; + + class LegacyAxis : public Core::Device::Input + { + public: + std::string GetName() const override; + LegacyAxis(SDL_Joystick* js, int index, s16 range, bool is_detectable) + : m_js(js), m_index(index), m_range(range), m_is_detectable(is_detectable) + { + } + bool IsDetectable() const override { return m_is_detectable; } + ControlState GetState() const override; + + private: + SDL_Joystick* const m_js; + const int m_index; + const s16 m_range; + const bool m_is_detectable; + }; + + class LegacyHat : public Input + { + public: + std::string GetName() const override; + LegacyHat(SDL_Joystick* js, int index, u8 direction, bool is_detectable) + : m_js(js), m_index(index), m_direction(direction), m_is_detectable(is_detectable) + { + } + bool IsDetectable() const override { return m_is_detectable; } + ControlState GetState() const override; + + private: + SDL_Joystick* const m_js; + const int m_index; + const u8 m_direction; + const bool m_is_detectable; + }; + + // Rumble + class Motor : public Output + { + public: + explicit Motor(SDL_GameController* gc) : m_gc(gc) {} + std::string GetName() const override; + void SetState(ControlState state) override; + + private: + SDL_GameController* const m_gc; + }; + + class MotorL : public Output + { + public: + explicit MotorL(SDL_GameController* gc) : m_gc(gc) {} + std::string GetName() const override; + void SetState(ControlState state) override; + + private: + SDL_GameController* const m_gc; + }; + + class MotorR : public Output + { + public: + explicit MotorR(SDL_GameController* gc) : m_gc(gc) {} + std::string GetName() const override; + void SetState(ControlState state) override; + + private: + SDL_GameController* const m_gc; + }; + + class HapticEffect : public Output + { + public: + HapticEffect(SDL_Haptic* haptic); + ~HapticEffect(); + + protected: + virtual bool UpdateParameters(s16 value) = 0; + static void SetDirection(SDL_HapticDirection* dir); + + SDL_HapticEffect m_effect = {}; + + static constexpr u16 DISABLED_EFFECT_TYPE = 0; + + private: + virtual void SetState(ControlState state) override final; + void UpdateEffect(); + SDL_Haptic* const m_haptic; + int m_id = -1; + }; + + class ConstantEffect : public HapticEffect + { + public: + ConstantEffect(SDL_Haptic* haptic); + std::string GetName() const override; + + private: + bool UpdateParameters(s16 value) override; + }; + + class RampEffect : public HapticEffect + { + public: + RampEffect(SDL_Haptic* haptic); + std::string GetName() const override; + + private: + bool UpdateParameters(s16 value) override; + }; + + class PeriodicEffect : public HapticEffect + { + public: + PeriodicEffect(SDL_Haptic* haptic, u16 waveform); + std::string GetName() const override; + + private: + bool UpdateParameters(s16 value) override; + + const u16 m_waveform; + }; + + class LeftRightEffect : public HapticEffect + { + public: + enum class Motor : u8 + { + Weak, + Strong, + }; + + LeftRightEffect(SDL_Haptic* haptic, Motor motor); + std::string GetName() const override; + + private: + bool UpdateParameters(s16 value) override; + + const Motor m_motor; + }; + + class MotionInput : public Input + { + 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){}; + + std::string GetName() const override { return m_name; }; + bool IsDetectable() const override { return false; }; + ControlState GetState() const override; + + private: + std::string m_name; + + SDL_GameController* const m_gc; + SDL_SensorType const m_type; + int const m_index; + + ControlState const m_scale; + }; + +public: + GameController(SDL_GameController* const gamecontroller, SDL_Joystick* const joystick, + const int sdl_index); + ~GameController(); + + std::string GetName() const override; + std::string GetSource() const override; + int GetSDLIndex() const; + +private: + SDL_GameController* const m_gamecontroller; + std::string m_name; + int m_sdl_index; + SDL_Joystick* const m_joystick; + SDL_Haptic* m_haptic = nullptr; +}; + class InputBackend final : public ciface::InputBackend { public: diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.h b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.h index 118755326482..822599a96ca5 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.h +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.h @@ -3,242 +3,9 @@ #pragma once -#include - -#include "InputCommon/ControllerInterface/CoreDevice.h" #include "InputCommon/ControllerInterface/InputBackend.h" namespace ciface::SDL { std::unique_ptr CreateInputBackend(ControllerInterface* controller_interface); - -class GameController : public Core::Device -{ -private: - // GameController inputs - class Button : public Core::Device::Input - { - public: - std::string GetName() const override; - Button(SDL_GameController* gc, SDL_GameControllerButton button) : m_gc(gc), m_button(button) {} - ControlState GetState() const override; - bool IsMatchingName(std::string_view name) const override; - - private: - SDL_GameController* const m_gc; - const SDL_GameControllerButton m_button; - }; - - class Axis : public Core::Device::Input - { - public: - std::string GetName() const override; - Axis(SDL_GameController* gc, Sint16 range, SDL_GameControllerAxis axis) - : m_gc(gc), m_range(range), m_axis(axis) - { - } - ControlState GetState() const override; - - private: - SDL_GameController* const m_gc; - const Sint16 m_range; - const SDL_GameControllerAxis m_axis; - }; - - // Legacy inputs - class LegacyButton : public Core::Device::Input - { - public: - std::string GetName() const override; - LegacyButton(SDL_Joystick* js, int index, bool is_detectable) - : m_js(js), m_index(index), m_is_detectable(is_detectable) - { - } - bool IsDetectable() const override { return m_is_detectable; } - ControlState GetState() const override; - - private: - SDL_Joystick* const m_js; - const int m_index; - const bool m_is_detectable; - }; - - class LegacyAxis : public Core::Device::Input - { - public: - std::string GetName() const override; - LegacyAxis(SDL_Joystick* js, int index, s16 range, bool is_detectable) - : m_js(js), m_index(index), m_range(range), m_is_detectable(is_detectable) - { - } - bool IsDetectable() const override { return m_is_detectable; } - ControlState GetState() const override; - - private: - SDL_Joystick* const m_js; - const int m_index; - const s16 m_range; - const bool m_is_detectable; - }; - - class LegacyHat : public Input - { - public: - std::string GetName() const override; - LegacyHat(SDL_Joystick* js, int index, u8 direction, bool is_detectable) - : m_js(js), m_index(index), m_direction(direction), m_is_detectable(is_detectable) - { - } - bool IsDetectable() const override { return m_is_detectable; } - ControlState GetState() const override; - - private: - SDL_Joystick* const m_js; - const int m_index; - const u8 m_direction; - const bool m_is_detectable; - }; - - // Rumble - class Motor : public Output - { - public: - explicit Motor(SDL_GameController* gc) : m_gc(gc) {} - std::string GetName() const override; - void SetState(ControlState state) override; - - private: - SDL_GameController* const m_gc; - }; - - class MotorL : public Output - { - public: - explicit MotorL(SDL_GameController* gc) : m_gc(gc) {} - std::string GetName() const override; - void SetState(ControlState state) override; - - private: - SDL_GameController* const m_gc; - }; - - class MotorR : public Output - { - public: - explicit MotorR(SDL_GameController* gc) : m_gc(gc) {} - std::string GetName() const override; - void SetState(ControlState state) override; - - private: - SDL_GameController* const m_gc; - }; - - class HapticEffect : public Output - { - public: - HapticEffect(SDL_Haptic* haptic); - ~HapticEffect(); - - protected: - virtual bool UpdateParameters(s16 value) = 0; - static void SetDirection(SDL_HapticDirection* dir); - - SDL_HapticEffect m_effect = {}; - - static constexpr u16 DISABLED_EFFECT_TYPE = 0; - - private: - virtual void SetState(ControlState state) override final; - void UpdateEffect(); - SDL_Haptic* const m_haptic; - int m_id = -1; - }; - - class ConstantEffect : public HapticEffect - { - public: - ConstantEffect(SDL_Haptic* haptic); - std::string GetName() const override; - - private: - bool UpdateParameters(s16 value) override; - }; - - class RampEffect : public HapticEffect - { - public: - RampEffect(SDL_Haptic* haptic); - std::string GetName() const override; - - private: - bool UpdateParameters(s16 value) override; - }; - - class PeriodicEffect : public HapticEffect - { - public: - PeriodicEffect(SDL_Haptic* haptic, u16 waveform); - std::string GetName() const override; - - private: - bool UpdateParameters(s16 value) override; - - const u16 m_waveform; - }; - - class LeftRightEffect : public HapticEffect - { - public: - enum class Motor : u8 - { - Weak, - Strong, - }; - - LeftRightEffect(SDL_Haptic* haptic, Motor motor); - std::string GetName() const override; - - private: - bool UpdateParameters(s16 value) override; - - const Motor m_motor; - }; - - class MotionInput : public Input - { - 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){}; - - std::string GetName() const override { return m_name; }; - bool IsDetectable() const override { return false; }; - ControlState GetState() const override; - - private: - std::string m_name; - - SDL_GameController* const m_gc; - SDL_SensorType const m_type; - int const m_index; - - ControlState const m_scale; - }; - -public: - GameController(SDL_GameController* const gamecontroller, SDL_Joystick* const joystick, - const int sdl_index); - ~GameController(); - - std::string GetName() const override; - std::string GetSource() const override; - int GetSDLIndex() const; - -private: - SDL_GameController* const m_gamecontroller; - std::string m_name; - int m_sdl_index; - SDL_Joystick* const m_joystick; - SDL_Haptic* m_haptic = nullptr; -}; } // namespace ciface::SDL From 05383663263242c912329d882290a2cb5f0fde3d Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 14 Mar 2024 21:10:21 -0500 Subject: [PATCH 091/223] SDL: Deduplicate Motor logic with templates. --- .../ControllerInterface/SDL/SDL.cpp | 73 ++++--------------- 1 file changed, 16 insertions(+), 57 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index dfd5fc639d93..fa5a2602cb44 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -115,38 +115,30 @@ class GameController : public Core::Device }; // Rumble - class Motor : public Output + template + class GenericMotor : public Output { public: - explicit Motor(SDL_GameController* gc) : m_gc(gc) {} - std::string GetName() const override; - void SetState(ControlState state) override; - - private: - SDL_GameController* const m_gc; - }; - - class MotorL : public Output - { - public: - explicit MotorL(SDL_GameController* gc) : m_gc(gc) {} - std::string GetName() const override; - void SetState(ControlState state) override; + explicit GenericMotor(SDL_GameController* gc) : m_gc(gc) {} + std::string GetName() const override + { + return std::string("Motor") + motor_suffixes[SuffixIndex]; + } + void SetState(ControlState state) override + { + Uint16 rumble = state * std::numeric_limits::max(); + SDL_GameControllerRumble(m_gc, rumble * LowEnable, rumble * HighEnable, RUMBLE_LENGTH_MS); + } private: SDL_GameController* const m_gc; }; - class MotorR : public Output - { - public: - explicit MotorR(SDL_GameController* gc) : m_gc(gc) {} - std::string GetName() const override; - void SetState(ControlState state) override; + static constexpr const char* motor_suffixes[] = {"", " L", " R"}; - private: - SDL_GameController* const m_gc; - }; + using Motor = GenericMotor<1, 1, 0>; + using MotorL = GenericMotor<1, 0, 1>; + using MotorR = GenericMotor<0, 1, 2>; class HapticEffect : public Output { @@ -764,39 +756,6 @@ GameController::~GameController() SDL_JoystickClose(m_joystick); } -std::string GameController::Motor::GetName() const -{ - return "Motor"; -} - -void GameController::Motor::SetState(ControlState state) -{ - Uint16 rumble = state * std::numeric_limits::max(); - SDL_GameControllerRumble(m_gc, rumble, rumble, std::numeric_limits::max()); -} - -std::string GameController::MotorL::GetName() const -{ - return "Motor L"; -} - -void GameController::MotorL::SetState(ControlState state) -{ - Uint16 rumble = state * std::numeric_limits::max(); - SDL_GameControllerRumble(m_gc, rumble, 0, std::numeric_limits::max()); -} - -std::string GameController::MotorR::GetName() const -{ - return "Motor R"; -} - -void GameController::MotorR::SetState(ControlState state) -{ - Uint16 rumble = state * std::numeric_limits::max(); - SDL_GameControllerRumble(m_gc, 0, rumble, std::numeric_limits::max()); -} - void InputBackend::UpdateInput(std::vector>& devices_to_remove) { SDL_GameControllerUpdate(); From ee43c9508c07fe58a6aa28f05a6509cd61249dd5 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 14 Mar 2024 22:09:41 -0500 Subject: [PATCH 092/223] ControllerInterface: Add IsHidden function to Control interface. --- .../DolphinQt/Config/Mapping/IOWindow.cpp | 27 +++++++++---------- .../ControllerInterface/CoreDevice.cpp | 10 +++++++ .../ControllerInterface/CoreDevice.h | 5 ++++ 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp index b8281d376df0..9c9dc3e3b672 100644 --- a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp @@ -587,28 +587,25 @@ void IOWindow::UpdateOptionList() if (m_selected_device == nullptr) return; - if (m_reference->IsInput()) - { + const auto add_rows = [this](auto& container) { int row = 0; - for (const auto* input : m_selected_device->Inputs()) + for (ciface::Core::Device::Control* control : container) { m_option_list->insertRow(row); + + if (control->IsHidden()) + m_option_list->hideRow(row); + m_option_list->setItem(row, 0, - new QTableWidgetItem(QString::fromStdString(input->GetName()))); + new QTableWidgetItem(QString::fromStdString(control->GetName()))); ++row; } - } + }; + + if (m_reference->IsInput()) + add_rows(m_selected_device->Inputs()); else - { - int row = 0; - for (const auto* output : m_selected_device->Outputs()) - { - m_option_list->insertRow(row); - m_option_list->setItem(row, 0, - new QTableWidgetItem(QString::fromStdString(output->GetName()))); - ++row; - } - } + add_rows(m_selected_device->Outputs()); } void IOWindow::UpdateDeviceList() diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp b/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp index 541dbdb5dd89..720ea8273575 100644 --- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp +++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp @@ -125,6 +125,11 @@ bool Device::Control::IsMatchingName(std::string_view name) const return GetName() == name; } +bool Device::Control::IsHidden() const +{ + return false; +} + ControlState Device::FullAnalogSurface::GetState() const { return (1 + std::max(0.0, m_high.GetState()) - std::max(0.0, m_low.GetState())) / 2; @@ -141,6 +146,11 @@ bool Device::FullAnalogSurface::IsDetectable() const return m_low.IsDetectable() && m_high.IsDetectable(); } +bool Device::FullAnalogSurface::IsHidden() const +{ + return m_low.IsHidden() && m_high.IsHidden(); +} + bool Device::FullAnalogSurface::IsMatchingName(std::string_view name) const { if (Control::IsMatchingName(name)) diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h index 4ed5866eff36..5c7a8ed568c3 100644 --- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h +++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h @@ -64,6 +64,10 @@ class Device // May be overridden to allow multiple valid names. // Useful for backwards-compatible configurations when names change. virtual bool IsMatchingName(std::string_view name) const; + + // May be overridden to hide in UI. + // Useful for backwards-compatible configurations when names change. + virtual bool IsHidden() const; }; // @@ -164,6 +168,7 @@ class Device ControlState GetState() const override; std::string GetName() const override; bool IsDetectable() const override; + bool IsHidden() const override; bool IsMatchingName(std::string_view name) const override; private: From 3a85725ffa94ccef56e35249db3a9c58808ed882 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 14 Mar 2024 20:53:04 -0500 Subject: [PATCH 093/223] SDL: Remove duplicate button/hat Inputs. Hide duplicate Axis Inputs. --- .../ControllerInterface/SDL/SDL.cpp | 196 ++++++++++-------- 1 file changed, 114 insertions(+), 82 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index fa5a2602cb44..feb1f8f4ce02 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -4,6 +4,7 @@ #include "InputCommon/ControllerInterface/SDL/SDL.h" #include +#include #include #include @@ -11,8 +12,8 @@ #include "Common/Event.h" #include "Common/Logging/Log.h" +#include "Common/MathUtil.h" #include "Common/ScopeGuard.h" -#include "Common/StringUtil.h" #include "InputCommon/ControllerInterface/ControllerInterface.h" #ifdef _WIN32 @@ -24,6 +25,39 @@ namespace ciface::Core class Device; } +namespace +{ +std::string GetLegacyButtonName(int index) +{ + return "Button " + std::to_string(index); +} + +std::string GetLegacyAxisName(int index, int range) +{ + return "Axis " + std::to_string(index) + (range < 0 ? '-' : '+'); +} + +std::string GetLegacyHatName(int index, int direction) +{ + return "Hat " + std::to_string(index) + ' ' + "NESW"[direction]; +} + +constexpr int GetDirectionFromHatMask(u8 mask) +{ + return MathUtil::IntLog2(mask); +} + +static_assert(GetDirectionFromHatMask(SDL_HAT_UP) == 0); +static_assert(GetDirectionFromHatMask(SDL_HAT_LEFT) == 3); + +bool IsTriggerAxis(int index) +{ + // First 4 axes are for the analog sticks, the rest are for the triggers + return index >= 4; +} + +} // namespace + namespace ciface::SDL { @@ -64,54 +98,48 @@ class GameController : public Core::Device class LegacyButton : public Core::Device::Input { public: - std::string GetName() const override; - LegacyButton(SDL_Joystick* js, int index, bool is_detectable) - : m_js(js), m_index(index), m_is_detectable(is_detectable) - { - } - bool IsDetectable() const override { return m_is_detectable; } + std::string GetName() const override { return GetLegacyButtonName(m_index); } + LegacyButton(SDL_Joystick* js, int index) : m_js(js), m_index(index) {} ControlState GetState() const override; private: SDL_Joystick* const m_js; const int m_index; - const bool m_is_detectable; }; class LegacyAxis : public Core::Device::Input { public: - std::string GetName() const override; - LegacyAxis(SDL_Joystick* js, int index, s16 range, bool is_detectable) - : m_js(js), m_index(index), m_range(range), m_is_detectable(is_detectable) + std::string GetName() const override { return GetLegacyAxisName(m_index, m_range); } + LegacyAxis(SDL_Joystick* js, int index, s16 range, bool is_handled_elsewhere) + : m_js(js), m_index(index), m_range(range), m_is_handled_elsewhere(is_handled_elsewhere) { } - bool IsDetectable() const override { return m_is_detectable; } ControlState GetState() const override; + bool IsHidden() const override { return m_is_handled_elsewhere; } + bool IsDetectable() const override { return !IsHidden(); } private: SDL_Joystick* const m_js; const int m_index; const s16 m_range; - const bool m_is_detectable; + const bool m_is_handled_elsewhere; }; class LegacyHat : public Input { public: - std::string GetName() const override; - LegacyHat(SDL_Joystick* js, int index, u8 direction, bool is_detectable) - : m_js(js), m_index(index), m_direction(direction), m_is_detectable(is_detectable) + std::string GetName() const override { return GetLegacyHatName(m_index, m_direction); } + LegacyHat(SDL_Joystick* js, int index, u8 direction) + : m_js(js), m_index(index), m_direction(direction) { } - bool IsDetectable() const override { return m_is_detectable; } ControlState GetState() const override; private: SDL_Joystick* const m_js; const int m_index; const u8 m_direction; - const bool m_is_detectable; }; // Rumble @@ -565,48 +593,26 @@ GameController::GameController(SDL_GameController* const gamecontroller, name = SDL_JoystickName(joystick); m_name = name != nullptr ? name : "Unknown"; - // If a Joystick Button has a GameController equivalent, don't detect it - int n_legacy_buttons = SDL_JoystickNumButtons(joystick); - if (n_legacy_buttons < 0) - { - ERROR_LOG_FMT(CONTROLLERINTERFACE, "Error in SDL_JoystickNumButtons(): {}", SDL_GetError()); - n_legacy_buttons = 0; - } - - int n_legacy_axes = SDL_JoystickNumAxes(joystick); - if (n_legacy_axes < 0) - { - ERROR_LOG_FMT(CONTROLLERINTERFACE, "Error in SDL_JoystickNumAxes(): {}", SDL_GetError()); - n_legacy_axes = 0; - } - - int n_legacy_hats = SDL_JoystickNumHats(joystick); - if (n_legacy_hats < 0) - { - ERROR_LOG_FMT(CONTROLLERINTERFACE, "Error in SDL_JoystickNumHats(): {}", SDL_GetError()); - n_legacy_hats = 0; - } - - std::vector is_button_mapped(static_cast(n_legacy_buttons), false); - std::vector is_axis_mapped(static_cast(n_legacy_axes), false); - std::vector is_hat_mapped(static_cast(n_legacy_hats), false); - + // If a Joystick input has a GameController equivalent button/hat we don't add it. + // "Equivalent" axes are still added as hidden/undetectable inputs to handle + // loading of existing configs which may use "full surface" inputs. + // Otherwise handling those would require dealing with gamepad specific quirks. + std::unordered_set registered_buttons; + std::unordered_set registered_hats; + std::unordered_set registered_axes; const auto register_mapping = [&](const SDL_GameControllerButtonBind& bind) { switch (bind.bindType) { - case SDL_CONTROLLER_BINDTYPE_NONE: - return; case SDL_CONTROLLER_BINDTYPE_BUTTON: - if (bind.value.button >= 0 && bind.value.button < n_legacy_buttons) - is_button_mapped[bind.value.button] = true; + registered_buttons.insert(bind.value.button); + break; + case SDL_CONTROLLER_BINDTYPE_HAT: + registered_hats.insert(bind.value.hat.hat); break; case SDL_CONTROLLER_BINDTYPE_AXIS: - if (bind.value.axis >= 0 && bind.value.axis < n_legacy_axes) - is_axis_mapped[bind.value.axis] = true; + registered_axes.insert(bind.value.axis); break; - case SDL_CONTROLLER_BINDTYPE_HAT: - if (bind.value.hat.hat >= 0 && bind.value.hat.hat < n_legacy_hats) - is_hat_mapped[bind.value.hat.hat] = true; + default: break; } }; @@ -622,6 +628,7 @@ GameController::GameController(SDL_GameController* const gamecontroller, if (SDL_GameControllerHasButton(m_gamecontroller, button)) { AddInput(new Button(gamecontroller, button)); + register_mapping(SDL_GameControllerGetBindForButton(gamecontroller, button)); } } @@ -632,20 +639,21 @@ GameController::GameController(SDL_GameController* const gamecontroller, SDL_GameControllerAxis axis = static_cast(i); if (SDL_GameControllerHasAxis(m_gamecontroller, axis)) { - // First 4 axes are for the analog sticks, the rest are for the triggers - if (i < 4) + if (IsTriggerAxis(axis)) { - // Each axis gets a negative and a positive input instance associated with it - AddInput(new Axis(m_gamecontroller, -32768, axis)); AddInput(new Axis(m_gamecontroller, 32767, axis)); } else { + // Each axis gets a negative and a positive input instance associated with it + AddInput(new Axis(m_gamecontroller, -32768, axis)); AddInput(new Axis(m_gamecontroller, 32767, axis)); } + register_mapping(SDL_GameControllerGetBindForAxis(gamecontroller, axis)); } } + // Rumble if (SDL_GameControllerHasRumble(m_gamecontroller)) { @@ -655,14 +663,14 @@ GameController::GameController(SDL_GameController* const gamecontroller, } // Motion - const auto add_sensor = [this](SDL_SensorType type, std::string_view name, + const auto add_sensor = [this](SDL_SensorType type, std::string_view sensor_name, const SDLMotionAxisList& axes) { if (SDL_GameControllerSetSensorEnabled(m_gamecontroller, type, SDL_TRUE) == 0) { for (const SDLMotionAxis& axis : axes) { - AddInput(new MotionInput(fmt::format("{} {}", name, axis.name), m_gamecontroller, type, - axis.index, axis.scale)); + AddInput(new MotionInput(fmt::format("{} {}", sensor_name, axis.name), m_gamecontroller, + type, axis.index, axis.scale)); } } }; @@ -678,23 +686,51 @@ GameController::GameController(SDL_GameController* const gamecontroller, // Legacy inputs // Buttons + int n_legacy_buttons = SDL_JoystickNumButtons(joystick); + if (n_legacy_buttons < 0) + { + ERROR_LOG_FMT(CONTROLLERINTERFACE, "Error in SDL_JoystickNumButtons(): {}", SDL_GetError()); + n_legacy_buttons = 0; + } for (int i = 0; i != n_legacy_buttons; ++i) - AddInput(new LegacyButton(m_joystick, i, !is_button_mapped[i])); + { + if (registered_buttons.contains(i)) + continue; + + AddInput(new LegacyButton(m_joystick, i)); + } // Axes + int n_legacy_axes = SDL_JoystickNumAxes(joystick); + if (n_legacy_axes < 0) + { + ERROR_LOG_FMT(CONTROLLERINTERFACE, "Error in SDL_JoystickNumAxes(): {}", SDL_GetError()); + n_legacy_axes = 0; + } for (int i = 0; i != n_legacy_axes; ++i) { + const bool is_registered = registered_axes.contains(i); + // each axis gets a negative and a positive input instance associated with it - AddAnalogInputs(new LegacyAxis(m_joystick, i, -32768, !is_axis_mapped[i]), - new LegacyAxis(m_joystick, i, 32767, !is_axis_mapped[i])); + AddAnalogInputs(new LegacyAxis(m_joystick, i, -32768, is_registered), + new LegacyAxis(m_joystick, i, 32767, is_registered)); } // Hats + int n_legacy_hats = SDL_JoystickNumHats(joystick); + if (n_legacy_hats < 0) + { + ERROR_LOG_FMT(CONTROLLERINTERFACE, "Error in SDL_JoystickNumHats(): {}", SDL_GetError()); + n_legacy_hats = 0; + } for (int i = 0; i != n_legacy_hats; ++i) { + if (registered_hats.contains(i)) + continue; + // each hat gets 4 input instances associated with it, (up down left right) for (u8 d = 0; d != 4; ++d) - AddInput(new LegacyHat(m_joystick, i, d, !is_hat_mapped[i])); + AddInput(new LegacyHat(m_joystick, i, d)); } // Haptics @@ -783,8 +819,7 @@ std::string GameController::Button::GetName() const std::string GameController::Axis::GetName() const { - // The triggers are only positive, and must not have a sign - if (m_axis >= 4) + if (IsTriggerAxis(m_axis)) return std::string(s_sdl_axis_names[m_axis]); bool negative = m_range < 0; @@ -820,7 +855,19 @@ bool GameController::Button::IsMatchingName(std::string_view name) const return GetName() == "Button W"; if (name == "Button Y") return GetName() == "Button N"; - return false; + + // Match legacy names. + const auto bind = SDL_GameControllerGetBindForButton(m_gc, m_button); + switch (bind.bindType) + { + case SDL_CONTROLLER_BINDTYPE_BUTTON: + return name == GetLegacyButtonName(bind.value.button); + case SDL_CONTROLLER_BINDTYPE_HAT: + return name == GetLegacyHatName(bind.value.hat.hat, + GetDirectionFromHatMask(u8(bind.value.hat.hat_mask))); + default: + return false; + } } ControlState GameController::MotionInput::GetState() const @@ -831,21 +878,6 @@ ControlState GameController::MotionInput::GetState() const } // Legacy input -std::string GameController::LegacyButton::GetName() const -{ - return "Button " + std::to_string(m_index); -} - -std::string GameController::LegacyAxis::GetName() const -{ - return "Axis " + std::to_string(m_index) + (m_range < 0 ? '-' : '+'); -} - -std::string GameController::LegacyHat::GetName() const -{ - return "Hat " + std::to_string(m_index) + ' ' + "NESW"[m_direction]; -} - ControlState GameController::LegacyButton::GetState() const { return SDL_JoystickGetButton(m_js, m_index); From ac5c2d9bf2c40c738fc5d6f917a7055691721cde Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Fri, 15 Mar 2024 19:51:04 -0500 Subject: [PATCH 094/223] VideoCommon: Prefer D3D11/12 over OpenGL on Windows. --- Source/Core/VideoCommon/VideoBackendBase.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index c14eb868b5fc..ba6adbe6f7e3 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -232,18 +232,17 @@ const std::vector>& VideoBackendBase::GetAvail static auto s_available_backends = [] { std::vector> backends; - // OGL > D3D11 > D3D12 > Vulkan > SW > Null - // On macOS, we prefer Vulkan over OpenGL due to OpenGL support being deprecated by Apple. -#ifdef HAS_OPENGL - backends.push_back(std::make_unique()); -#endif #ifdef _WIN32 backends.push_back(std::make_unique()); backends.push_back(std::make_unique()); #endif +#ifdef HAS_OPENGL + backends.push_back(std::make_unique()); +#endif #ifdef HAS_VULKAN #ifdef __APPLE__ // Emplace the Vulkan backend at the beginning so it takes precedence over OpenGL. + // On macOS, we prefer Vulkan over OpenGL due to OpenGL support being deprecated by Apple. backends.emplace(backends.begin(), std::make_unique()); #else backends.push_back(std::make_unique()); From d933e58d9a1796abd59f66d80c23c2ff656c10ea Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 17 Mar 2024 01:28:23 +0000 Subject: [PATCH 095/223] Cubeb: check correct log level --- Source/Core/AudioCommon/CubebUtils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/AudioCommon/CubebUtils.cpp b/Source/Core/AudioCommon/CubebUtils.cpp index 710b68ca93ad..75b78f687f51 100644 --- a/Source/Core/AudioCommon/CubebUtils.cpp +++ b/Source/Core/AudioCommon/CubebUtils.cpp @@ -25,7 +25,8 @@ static void LogCallback(const char* format, ...) return; constexpr auto log_type = Common::Log::LogType::AUDIO; - if (!instance->IsEnabled(log_type)) + constexpr auto log_level = Common::Log::LogLevel::LINFO; + if (!instance->IsEnabled(log_type, log_level)) return; va_list args; @@ -36,8 +37,7 @@ static void LogCallback(const char* format, ...) const std::string message = StringFromFormatV(adapted_format.c_str(), args); va_end(args); - instance->LogWithFullPath(Common::Log::LogLevel::LINFO, log_type, filename, lineno, - message.c_str()); + instance->LogWithFullPath(log_level, log_type, filename, lineno, message.c_str()); } static void DestroyContext(cubeb* ctx) From c202b55bd43544de9b9301e10e81e473ee47bd16 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sun, 17 Mar 2024 01:21:22 -0500 Subject: [PATCH 096/223] DolphinQt: Allow Cheat Search to create multiple AR codes when selecting multiple lines. --- Source/Core/DolphinQt/CheatSearchWidget.cpp | 72 +++++++++++++++------ Source/Core/DolphinQt/CheatSearchWidget.h | 2 +- 2 files changed, 52 insertions(+), 22 deletions(-) diff --git a/Source/Core/DolphinQt/CheatSearchWidget.cpp b/Source/Core/DolphinQt/CheatSearchWidget.cpp index a76373238e3a..73bf6df95fe7 100644 --- a/Source/Core/DolphinQt/CheatSearchWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchWidget.cpp @@ -498,7 +498,7 @@ void CheatSearchWidget::OnAddressTableContextMenu() const QString name = QStringLiteral("mem_%1").arg(address, 8, 16, QLatin1Char('0')); emit RequestWatch(name, address); }); - menu->addAction(tr("Generate Action Replay Code"), this, &CheatSearchWidget::GenerateARCode); + menu->addAction(tr("Generate Action Replay Code(s)"), this, &CheatSearchWidget::GenerateARCodes); menu->exec(QCursor::pos()); } @@ -521,37 +521,67 @@ void CheatSearchWidget::OnDisplayHexCheckboxStateChanged() UpdateTableAllCurrentValues(UpdateSource::User); } -void CheatSearchWidget::GenerateARCode() +void CheatSearchWidget::GenerateARCodes() { if (m_address_table->selectedItems().isEmpty()) return; - auto* item = m_address_table->selectedItems()[0]; - if (!item) - return; + bool had_success = false; + bool had_error = false; + std::optional error_code; - const u32 index = item->data(ADDRESS_TABLE_RESULT_INDEX_ROLE).toUInt(); - auto result = Cheats::GenerateActionReplayCode(*m_session, index); - if (result) + for (auto* const item : m_address_table->selectedItems()) { - emit ActionReplayCodeGenerated(*result); - m_info_label_1->setText(tr("Generated AR code.")); + const u32 index = item->data(ADDRESS_TABLE_RESULT_INDEX_ROLE).toUInt(); + auto result = Cheats::GenerateActionReplayCode(*m_session, index); + if (result) + { + emit ActionReplayCodeGenerated(*result); + had_success = true; + } + else + { + const auto new_error_code = result.Error(); + if (!had_error) + { + error_code = new_error_code; + } + else if (error_code != new_error_code) + { + // If we have a different error code signify multiple errors with an empty optional<>. + error_code.reset(); + } + + had_error = true; + } } - else + + if (had_error) { - switch (result.Error()) + if (error_code.has_value()) { - case Cheats::GenerateActionReplayCodeErrorCode::NotVirtualMemory: - m_info_label_1->setText(tr("Can only generate AR code for values in virtual memory.")); - break; - case Cheats::GenerateActionReplayCodeErrorCode::InvalidAddress: - m_info_label_1->setText(tr("Cannot generate AR code for this address.")); - break; - default: - m_info_label_1->setText(tr("Internal error while generating AR code.")); - break; + switch (*error_code) + { + case Cheats::GenerateActionReplayCodeErrorCode::NotVirtualMemory: + m_info_label_1->setText(tr("Can only generate AR code for values in virtual memory.")); + break; + case Cheats::GenerateActionReplayCodeErrorCode::InvalidAddress: + m_info_label_1->setText(tr("Cannot generate AR code for this address.")); + break; + default: + m_info_label_1->setText(tr("Internal error while generating AR code.")); + break; + } + } + else + { + m_info_label_1->setText(tr("Multiple errors while generating AR codes.")); } } + else if (had_success) + { + m_info_label_1->setText(tr("Generated AR code(s).")); + } } void CheatSearchWidget::RefreshCurrentValueTableItem( diff --git a/Source/Core/DolphinQt/CheatSearchWidget.h b/Source/Core/DolphinQt/CheatSearchWidget.h index 5828c0423da0..f6c4576d87a3 100644 --- a/Source/Core/DolphinQt/CheatSearchWidget.h +++ b/Source/Core/DolphinQt/CheatSearchWidget.h @@ -76,7 +76,7 @@ class CheatSearchWidget : public QWidget bool UpdateTableRows(const Core::CPUThreadGuard& guard, size_t begin_index, size_t end_index, UpdateSource source); void RecreateGUITable(); - void GenerateARCode(); + void GenerateARCodes(); int GetVisibleRowsBeginIndex() const; int GetVisibleRowsEndIndex() const; From 0c364cbb4cc0bc6ef2937826d67c1483cf17551a Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 12 Feb 2023 17:58:17 -0800 Subject: [PATCH 097/223] implement tapserver BBA on all platforms This expands the tapserver BBA interface to be available on all platforms. tapserver itself is still macOS-only, but newserv (the PSO server) is not, and it can directly accept local and remote tapserver connections as well. This makes the tapserver interface potentially useful on all platforms. --- .../features/settings/model/StringSetting.kt | 6 ++ .../settings/ui/SettingsFragmentPresenter.kt | 11 +++ .../app/src/main/res/values/strings.xml | 2 + Source/Core/Core/CMakeLists.txt | 6 +- Source/Core/Core/Config/MainSettings.cpp | 2 + Source/Core/Core/Config/MainSettings.h | 1 + .../{TAPServer_Apple.cpp => TAPServer.cpp} | 94 ++++++++++++++----- Source/Core/Core/HW/EXI/EXI_Device.cpp | 2 - Source/Core/Core/HW/EXI/EXI_Device.h | 1 - .../Core/Core/HW/EXI/EXI_DeviceEthernet.cpp | 5 +- Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h | 11 ++- .../BroadbandAdapterSettingsDialog.cpp | 14 +++ .../Settings/BroadbandAdapterSettingsDialog.h | 1 + .../Core/DolphinQt/Settings/GameCubePane.cpp | 10 +- 14 files changed, 128 insertions(+), 38 deletions(-) rename Source/Core/Core/HW/EXI/BBA/{TAPServer_Apple.cpp => TAPServer.cpp} (54%) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt index ea685b817dfb..8dc9e619c582 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt @@ -23,6 +23,12 @@ enum class StringSetting( "BBA_BUILTIN_DNS", "3.18.217.27" ), + MAIN_BBA_TAPSERVER_DESTINATION( + Settings.FILE_DOLPHIN, + Settings.SECTION_INI_CORE, + "BBA_TAPSERVER_DESTINATION", + "/tmp/dolphin-tap" + ), MAIN_CUSTOM_RTC_VALUE( Settings.FILE_DOLPHIN, Settings.SECTION_INI_CORE, 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 44e2b2b915e9..ef395ed6a477 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 @@ -1101,6 +1101,17 @@ class SettingsFragmentPresenter( R.string.xlink_kai_bba_ip_description ) ) + } else if (serialPort1Type == 11) { + // Broadband Adapter (tapserver) + sl.add( + InputStringSetting( + context, + StringSetting.MAIN_BBA_TAPSERVER_DESTINATION, + R.string.bba_tapserver_destination, + R.string.bba_tapserver_destination_description + ) + ) + } } else if (serialPort1Type == 12) { // Broadband Adapter (Built In) sl.add( diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 251886b98aa4..2e8fc6856e7a 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -133,6 +133,8 @@ For setup instructions, refer to this page. XLink Kai IP Address/hostname IP address or hostname of device running the XLink Kai client + Tapserver destination + Enter the socket path or netloc (address:port) of the tapserver instance DNS Server Use 8.8.8.8 for normal DNS, else enter your custom one diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 290947e7221a..945c57760dbd 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -696,6 +696,7 @@ if(WIN32) target_sources(core PRIVATE HW/EXI/BBA/TAP_Win32.cpp HW/EXI/BBA/TAP_Win32.h + HW/EXI/BBA/TAPServer.cpp HW/EXI/BBA/XLINK_KAI_BBA.cpp HW/EXI/BBA/BuiltIn.cpp HW/EXI/BBA/BuiltIn.h @@ -712,7 +713,7 @@ if(WIN32) elseif(APPLE) target_sources(core PRIVATE HW/EXI/BBA/TAP_Apple.cpp - HW/EXI/BBA/TAPServer_Apple.cpp + HW/EXI/BBA/TAPServer.cpp HW/EXI/BBA/XLINK_KAI_BBA.cpp HW/EXI/BBA/BuiltIn.cpp HW/EXI/BBA/BuiltIn.h @@ -721,6 +722,7 @@ elseif(APPLE) elseif(UNIX) target_sources(core PRIVATE HW/EXI/BBA/TAP_Unix.cpp + HW/EXI/BBA/TAPServer.cpp HW/EXI/BBA/XLINK_KAI_BBA.cpp HW/EXI/BBA/BuiltIn.cpp HW/EXI/BBA/BuiltIn.h @@ -778,4 +780,4 @@ endif() if(USE_RETRO_ACHIEVEMENTS) target_link_libraries(core PRIVATE rcheevos) target_compile_definitions(core PRIVATE -DUSE_RETRO_ACHIEVEMENTS) -endif() \ No newline at end of file +endif() diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index 21c453b6c775..cdd852c2602f 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -137,6 +137,8 @@ const Info MAIN_BBA_XLINK_CHAT_OSD{{System::Main, "Core", "BBA_XLINK_CHAT_ // Schthack PSO Server - https://schtserv.com/ const Info MAIN_BBA_BUILTIN_DNS{{System::Main, "Core", "BBA_BUILTIN_DNS"}, "3.18.217.27"}; +const Info MAIN_BBA_TAPSERVER_DESTINATION{ + {System::Main, "Core", "BBA_TAPSERVER_DESTINATION"}, "/tmp/dolphin-tap"}; const Info MAIN_BBA_BUILTIN_IP{{System::Main, "Core", "BBA_BUILTIN_IP"}, ""}; const Info& GetInfoForSIDevice(int channel) diff --git a/Source/Core/Core/Config/MainSettings.h b/Source/Core/Core/Config/MainSettings.h index dddda8ae7a3b..b13615df5d3b 100644 --- a/Source/Core/Core/Config/MainSettings.h +++ b/Source/Core/Core/Config/MainSettings.h @@ -96,6 +96,7 @@ extern const Info MAIN_BBA_XLINK_IP; extern const Info MAIN_BBA_XLINK_CHAT_OSD; extern const Info MAIN_BBA_BUILTIN_DNS; extern const Info MAIN_BBA_BUILTIN_IP; +extern const Info MAIN_BBA_TAPSERVER_DESTINATION; const Info& GetInfoForSIDevice(int channel); const Info& GetInfoForAdapterRumble(int channel); const Info& GetInfoForSimulateKonga(int channel); diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServer_Apple.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp similarity index 54% rename from Source/Core/Core/HW/EXI/BBA/TAPServer_Apple.cpp rename to Source/Core/Core/HW/EXI/BBA/TAPServer.cpp index de71067c1b2e..3e0644a41be2 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServer_Apple.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp @@ -3,10 +3,16 @@ #include "Core/HW/EXI/EXI_DeviceEthernet.h" +#ifdef _WIN32 +#include +#include +#else #include #include +#include #include #include +#endif #include "Common/CommonFuncs.h" #include "Common/Logging/Log.h" @@ -15,43 +21,85 @@ namespace ExpansionInterface { -// This interface is only implemented on macOS, since macOS needs a replacement -// for TunTap when the kernel extension is no longer supported. This interface -// only appears in the menu on macOS, so on other platforms, it does nothing and -// refuses to activate. -constexpr char socket_path[] = "/tmp/dolphin-tap"; - -bool CEXIETHERNET::TAPServerNetworkInterface::Activate() +static int ConnectToDestination(const std::string& destination) { - if (IsActivated()) - return true; + if (destination.empty()) + { + INFO_LOG_FMT(SP1, "Cannot connect: destination is empty\n"); + return -1; + } + + size_t ss_size; + struct sockaddr_storage ss; + memset(&ss, 0, sizeof(ss)); + if (destination[0] != '/') + { // IP address or hostname + size_t colon_offset = destination.find(':'); + if (colon_offset == std::string::npos) + { + INFO_LOG_FMT(SP1, "Destination IP address does not include port\n"); + return -1; + } - sockaddr_un sun = {}; - if (sizeof(socket_path) > sizeof(sun.sun_path)) + struct sockaddr_in* sin = reinterpret_cast(&ss); + sin->sin_addr.s_addr = htonl(sf::IpAddress(destination.substr(0, colon_offset)).toInteger()); + sin->sin_family = AF_INET; + sin->sin_port = htons(stoul(destination.substr(colon_offset + 1))); + ss_size = sizeof(*sin); +#ifndef _WIN32 + } + else + { // UNIX socket + struct sockaddr_un* sun = reinterpret_cast(&ss); + if (destination.size() + 1 > sizeof(sun->sun_path)) + { + INFO_LOG_FMT(SP1, "Socket path is too long, unable to init BBA\n"); + return -1; + } + sun->sun_family = AF_UNIX; + strcpy(sun->sun_path, destination.c_str()); + ss_size = sizeof(*sun); +#else + } + else { - ERROR_LOG_FMT(SP1, "Socket path is too long, unable to init BBA"); - return false; + INFO_LOG_FMT(SP1, "UNIX sockets are not supported on Windows\n"); + return -1; +#endif } - sun.sun_family = AF_UNIX; - strcpy(sun.sun_path, socket_path); - fd = socket(AF_UNIX, SOCK_STREAM, 0); + int fd = socket(ss.ss_family, SOCK_STREAM, (ss.ss_family == AF_INET) ? IPPROTO_TCP : 0); if (fd == -1) { - ERROR_LOG_FMT(SP1, "Couldn't create socket, unable to init BBA"); - return false; + INFO_LOG_FMT(SP1, "Couldn't create socket; unable to init BBA\n"); + return -1; } - if (connect(fd, reinterpret_cast(&sun), sizeof(sun)) == -1) +#ifdef __APPLE__ + int opt_no_sigpipe = 1; + if (setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &opt_no_sigpipe, sizeof(opt_no_sigpipe)) < 0) + INFO_LOG_FMT(SP1, "Failed to set SO_NOSIGPIPE on socket\n"); +#endif + + if (connect(fd, reinterpret_cast(&ss), ss_size) == -1) { - ERROR_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to init BBA", - Common::LastStrerrorString()); + std::string s = Common::LastStrerrorString(); + INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to init BBA\n", s.c_str()); close(fd); - fd = -1; - return false; + return -1; } + return fd; +} + +bool CEXIETHERNET::TAPServerNetworkInterface::Activate() +{ + if (IsActivated()) + return true; + + fd = ConnectToDestination(m_destination); + INFO_LOG_FMT(SP1, "BBA initialized."); return RecvInit(); } diff --git a/Source/Core/Core/HW/EXI/EXI_Device.cpp b/Source/Core/Core/HW/EXI/EXI_Device.cpp index 425ce9dbb257..ad25a945228a 100644 --- a/Source/Core/Core/HW/EXI/EXI_Device.cpp +++ b/Source/Core/Core/HW/EXI/EXI_Device.cpp @@ -137,11 +137,9 @@ std::unique_ptr EXIDevice_Create(Core::System& system, const EXIDevi result = std::make_unique(system, BBADeviceType::TAP); break; -#if defined(__APPLE__) case EXIDeviceType::EthernetTapServer: result = std::make_unique(system, BBADeviceType::TAPSERVER); break; -#endif case EXIDeviceType::EthernetXLink: result = std::make_unique(system, BBADeviceType::XLINK); diff --git a/Source/Core/Core/HW/EXI/EXI_Device.h b/Source/Core/Core/HW/EXI/EXI_Device.h index 2c90d772f9cf..c927a255d360 100644 --- a/Source/Core/Core/HW/EXI/EXI_Device.h +++ b/Source/Core/Core/HW/EXI/EXI_Device.h @@ -39,7 +39,6 @@ enum class EXIDeviceType : int MemoryCardFolder, AGP, EthernetXLink, - // Only used on Apple devices. EthernetTapServer, EthernetBuiltIn, None = 0xFF diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp index 549ace3a6e63..fb2660ed0468 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp @@ -50,12 +50,11 @@ CEXIETHERNET::CEXIETHERNET(Core::System& system, BBADeviceType type) : IEXIDevic m_network_interface = std::make_unique(this); INFO_LOG_FMT(SP1, "Created TAP physical network interface."); break; -#if defined(__APPLE__) case BBADeviceType::TAPSERVER: - m_network_interface = std::make_unique(this); + m_network_interface = std::make_unique( + this, Config::Get(Config::MAIN_BBA_TAPSERVER_DESTINATION)); INFO_LOG_FMT(SP1, "Created tapserver physical network interface."); break; -#endif case BBADeviceType::BuiltIn: m_network_interface = std::make_unique( this, Config::Get(Config::MAIN_BBA_BUILTIN_DNS), Config::Get(Config::MAIN_BBA_BUILTIN_IP)); diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h index cdbf645aeec9..301420fbea21 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h +++ b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h @@ -205,9 +205,7 @@ enum class BBADeviceType { TAP, XLINK, -#if defined(__APPLE__) TAPSERVER, -#endif BuiltIn, }; @@ -364,11 +362,13 @@ class CEXIETHERNET : public IEXIDevice #endif }; -#if defined(__APPLE__) class TAPServerNetworkInterface : public TAPNetworkInterface { public: - explicit TAPServerNetworkInterface(CEXIETHERNET* eth_ref) : TAPNetworkInterface(eth_ref) {} + explicit TAPServerNetworkInterface(CEXIETHERNET* eth_ref, const std::string& destination) + : TAPNetworkInterface(eth_ref), m_destination(destination) + { + } public: bool Activate() override; @@ -376,9 +376,10 @@ class CEXIETHERNET : public IEXIDevice bool RecvInit() override; private: + std::string m_destination; + void ReadThreadHandler(); }; -#endif class XLinkNetworkInterface : public NetworkInterface { diff --git a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp index 91aeae8a22ba..f8abbc77ab10 100644 --- a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp +++ b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp @@ -48,6 +48,17 @@ void BroadbandAdapterSettingsDialog::InitControls() window_title = tr("Broadband Adapter MAC Address"); break; + case Type::TapServer: + address_label = new QLabel(tr("UNIX socket path or netloc (address:port):")); + address_placeholder = QStringLiteral("/tmp/dolphin-tap"); + current_address = QString::fromStdString(Config::Get(Config::MAIN_BBA_TAPSERVER_DESTINATION)); + description = + new QLabel(tr("On macOS and Linux, the default value \"/tmp/dolphin-tap\" will work with " + "tapserver and newserv. On Windows, you must enter an IP address and port.")); + + window_title = tr("BBA destination address"); + break; + case Type::BuiltIn: address_label = new QLabel(tr("Enter the DNS server to use:")); address_placeholder = QStringLiteral("8.8.8.8"); @@ -114,6 +125,9 @@ void BroadbandAdapterSettingsDialog::SaveAddress() Config::SetBaseOrCurrent(Config::MAIN_BBA_MAC, bba_new_address); break; } + case Type::TapServer: + Config::SetBaseOrCurrent(Config::MAIN_BBA_TAPSERVER_DESTINATION, bba_new_address); + break; case Type::BuiltIn: Config::SetBaseOrCurrent(Config::MAIN_BBA_BUILTIN_DNS, bba_new_address); break; diff --git a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h index ca8d813cbea7..53863f1d15ec 100644 --- a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h +++ b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h @@ -15,6 +15,7 @@ class BroadbandAdapterSettingsDialog final : public QDialog { Ethernet, XLinkKai, + TapServer, BuiltIn }; diff --git a/Source/Core/DolphinQt/Settings/GameCubePane.cpp b/Source/Core/DolphinQt/Settings/GameCubePane.cpp index 8c89badf0072..944efa7a9f55 100644 --- a/Source/Core/DolphinQt/Settings/GameCubePane.cpp +++ b/Source/Core/DolphinQt/Settings/GameCubePane.cpp @@ -149,9 +149,7 @@ void GameCubePane::CreateWidgets() EXIDeviceType::Dummy, EXIDeviceType::Ethernet, EXIDeviceType::EthernetXLink, -#ifdef __APPLE__ EXIDeviceType::EthernetTapServer, -#endif EXIDeviceType::EthernetBuiltIn, }) { @@ -355,6 +353,7 @@ void GameCubePane::UpdateButton(ExpansionInterface::Slot slot) case ExpansionInterface::Slot::SP1: has_config = (device == ExpansionInterface::EXIDeviceType::Ethernet || device == ExpansionInterface::EXIDeviceType::EthernetXLink || + device == ExpansionInterface::EXIDeviceType::EthernetTapServer || device == ExpansionInterface::EXIDeviceType::EthernetBuiltIn); break; } @@ -400,6 +399,13 @@ void GameCubePane::OnConfigPressed(ExpansionInterface::Slot slot) dialog.exec(); return; } + case ExpansionInterface::EXIDeviceType::EthernetTapServer: + { + BroadbandAdapterSettingsDialog dialog(this, BroadbandAdapterSettingsDialog::Type::TapServer); + SetQWidgetWindowDecorations(&dialog); + dialog.exec(); + return; + } case ExpansionInterface::EXIDeviceType::EthernetBuiltIn: { BroadbandAdapterSettingsDialog dialog(this, BroadbandAdapterSettingsDialog::Type::BuiltIn); From f90812d8e12125c613bb0dd548ed2fb05f49be0b Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 13 Oct 2023 10:16:07 -0700 Subject: [PATCH 098/223] fix android syntax error --- .../dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt | 1 - 1 file changed, 1 deletion(-) 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 ef395ed6a477..a0de70a72301 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 @@ -1111,7 +1111,6 @@ class SettingsFragmentPresenter( R.string.bba_tapserver_destination_description ) ) - } } else if (serialPort1Type == 12) { // Broadband Adapter (Built In) sl.add( From a36600ae503ee8a947d1058e8ed48614809b24fb Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 13 Oct 2023 10:16:28 -0700 Subject: [PATCH 099/223] add TAPServer.cpp to Windows build --- Source/Core/DolphinLib.props | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 50a6eb549403..2229ee9d0647 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -937,6 +937,7 @@ + From 083116a89ce922b540ca471a98a8a1e5501491b1 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 14 Oct 2023 17:52:26 -0700 Subject: [PATCH 100/223] rewrite tapserver interface for better error handling --- Source/Core/Common/SocketContext.cpp | 19 +- Source/Core/Common/SocketContext.h | 5 +- Source/Core/Core/CMakeLists.txt | 16 +- Source/Core/Core/HW/EXI/BBA/TAPServer.cpp | 196 +++++++++++++++--- Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h | 26 ++- .../BroadbandAdapterSettingsDialog.cpp | 18 +- 6 files changed, 223 insertions(+), 57 deletions(-) diff --git a/Source/Core/Common/SocketContext.cpp b/Source/Core/Common/SocketContext.cpp index defc333c1137..15f9fd90109e 100644 --- a/Source/Core/Common/SocketContext.cpp +++ b/Source/Core/Common/SocketContext.cpp @@ -8,12 +8,27 @@ namespace Common #ifdef _WIN32 SocketContext::SocketContext() { - static_cast(WSAStartup(MAKEWORD(2, 2), &m_data)); + std::lock_guard g(s_lock); + if (s_num_objects == 0) + { + static_cast(WSAStartup(MAKEWORD(2, 2), &s_data)); + } + s_num_objects++; } SocketContext::~SocketContext() { - WSACleanup(); + std::lock_guard g(s_lock); + s_num_objects--; + if (s_num_objects == 0) + { + WSACleanup(); + } } + +std::mutex SocketContext::s_lock; +size_t SocketContext::s_num_objects = 0; +WSADATA SocketContext::s_data; + #else SocketContext::SocketContext() = default; SocketContext::~SocketContext() = default; diff --git a/Source/Core/Common/SocketContext.h b/Source/Core/Common/SocketContext.h index 7e072fd8c0a0..0aa4929e89cb 100644 --- a/Source/Core/Common/SocketContext.h +++ b/Source/Core/Common/SocketContext.h @@ -5,6 +5,7 @@ #ifdef _WIN32 #include +#include #endif namespace Common @@ -23,7 +24,9 @@ class SocketContext private: #ifdef _WIN32 - WSADATA m_data; + static std::mutex s_lock; + static size_t s_num_objects; + static WSADATA s_data; #endif }; } // namespace Common diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 945c57760dbd..10b60a1a1ce8 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -189,6 +189,10 @@ add_library(core HW/DVD/DVDThread.h HW/DVD/FileMonitor.cpp HW/DVD/FileMonitor.h + HW/EXI/BBA/TAPServer.cpp + HW/EXI/BBA/XLINK_KAI_BBA.cpp + HW/EXI/BBA/BuiltIn.cpp + HW/EXI/BBA/BuiltIn.h HW/EXI/EXI_Channel.cpp HW/EXI/EXI_Channel.h HW/EXI/EXI_Device.cpp @@ -696,10 +700,6 @@ if(WIN32) target_sources(core PRIVATE HW/EXI/BBA/TAP_Win32.cpp HW/EXI/BBA/TAP_Win32.h - HW/EXI/BBA/TAPServer.cpp - HW/EXI/BBA/XLINK_KAI_BBA.cpp - HW/EXI/BBA/BuiltIn.cpp - HW/EXI/BBA/BuiltIn.h HW/WiimoteReal/IOWin.cpp HW/WiimoteReal/IOWin.h ) @@ -713,19 +713,11 @@ if(WIN32) elseif(APPLE) target_sources(core PRIVATE HW/EXI/BBA/TAP_Apple.cpp - HW/EXI/BBA/TAPServer.cpp - HW/EXI/BBA/XLINK_KAI_BBA.cpp - HW/EXI/BBA/BuiltIn.cpp - HW/EXI/BBA/BuiltIn.h ) target_link_libraries(core PUBLIC ${IOB_LIBRARY}) elseif(UNIX) target_sources(core PRIVATE HW/EXI/BBA/TAP_Unix.cpp - HW/EXI/BBA/TAPServer.cpp - HW/EXI/BBA/XLINK_KAI_BBA.cpp - HW/EXI/BBA/BuiltIn.cpp - HW/EXI/BBA/BuiltIn.h ) if(ANDROID) target_sources(core PRIVATE diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp index 3e0644a41be2..f81c1f479f33 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp @@ -22,23 +22,38 @@ namespace ExpansionInterface { +#ifdef _WIN32 +static constexpr auto pi_close = &closesocket; +using ws_ssize_t = int; +#else +static constexpr auto pi_close = &close; +using ws_ssize_t = ssize_t; +#endif + +#ifdef __LINUX__ +#define SEND_FLAGS MSG_NOSIGNAL +#else +#define SEND_FLAGS 0 +#endif + static int ConnectToDestination(const std::string& destination) { if (destination.empty()) { - INFO_LOG_FMT(SP1, "Cannot connect: destination is empty\n"); + ERROR_LOG_FMT(SP1, "Cannot connect: destination is empty\n"); return -1; } - size_t ss_size; + int ss_size; struct sockaddr_storage ss; memset(&ss, 0, sizeof(ss)); if (destination[0] != '/') - { // IP address or hostname + { + // IP address or hostname size_t colon_offset = destination.find(':'); if (colon_offset == std::string::npos) { - INFO_LOG_FMT(SP1, "Destination IP address does not include port\n"); + ERROR_LOG_FMT(SP1, "Destination IP address does not include port\n"); return -1; } @@ -50,11 +65,12 @@ static int ConnectToDestination(const std::string& destination) #ifndef _WIN32 } else - { // UNIX socket + { + // UNIX socket struct sockaddr_un* sun = reinterpret_cast(&ss); if (destination.size() + 1 > sizeof(sun->sun_path)) { - INFO_LOG_FMT(SP1, "Socket path is too long, unable to init BBA\n"); + ERROR_LOG_FMT(SP1, "Socket path is too long, unable to init BBA\n"); return -1; } sun->sun_family = AF_UNIX; @@ -64,7 +80,7 @@ static int ConnectToDestination(const std::string& destination) } else { - INFO_LOG_FMT(SP1, "UNIX sockets are not supported on Windows\n"); + ERROR_LOG_FMT(SP1, "UNIX sockets are not supported on Windows\n"); return -1; #endif } @@ -72,7 +88,7 @@ static int ConnectToDestination(const std::string& destination) int fd = socket(ss.ss_family, SOCK_STREAM, (ss.ss_family == AF_INET) ? IPPROTO_TCP : 0); if (fd == -1) { - INFO_LOG_FMT(SP1, "Couldn't create socket; unable to init BBA\n"); + ERROR_LOG_FMT(SP1, "Couldn't create socket; unable to init BBA\n"); return -1; } @@ -86,7 +102,7 @@ static int ConnectToDestination(const std::string& destination) { std::string s = Common::LastStrerrorString(); INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to init BBA\n", s.c_str()); - close(fd); + pi_close(fd); return -1; } @@ -98,12 +114,44 @@ bool CEXIETHERNET::TAPServerNetworkInterface::Activate() if (IsActivated()) return true; - fd = ConnectToDestination(m_destination); + m_fd = ConnectToDestination(m_destination); INFO_LOG_FMT(SP1, "BBA initialized."); return RecvInit(); } +void CEXIETHERNET::TAPServerNetworkInterface::Deactivate() +{ + pi_close(m_fd); + m_fd = -1; + + m_read_enabled.Clear(); + m_read_shutdown.Set(); + if (m_read_thread.joinable()) + m_read_thread.join(); +} + +bool CEXIETHERNET::TAPServerNetworkInterface::IsActivated() +{ + return (m_fd >= 0); +} + +bool CEXIETHERNET::TAPServerNetworkInterface::RecvInit() +{ + m_read_thread = std::thread(&CEXIETHERNET::TAPServerNetworkInterface::ReadThreadHandler, this); + return true; +} + +void CEXIETHERNET::TAPServerNetworkInterface::RecvStart() +{ + m_read_enabled.Set(); +} + +void CEXIETHERNET::TAPServerNetworkInterface::RecvStop() +{ + m_read_enabled.Clear(); +} + bool CEXIETHERNET::TAPServerNetworkInterface::SendFrame(const u8* frame, u32 size) { { @@ -111,13 +159,16 @@ bool CEXIETHERNET::TAPServerNetworkInterface::SendFrame(const u8* frame, u32 siz INFO_LOG_FMT(SP1, "SendFrame {}\n{}", size, s); } - auto size16 = u16(size); - if (write(fd, &size16, 2) != 2) + // On Windows, the data pointer is of type const char*; on other systems it is + // of type const void*. This is the reason for the reinterpret_cast here and + // in the other send/recv calls in this file. + u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; + if (send(m_fd, reinterpret_cast(size_bytes), 2, SEND_FLAGS) != 2) { ERROR_LOG_FMT(SP1, "SendFrame(): could not write size field"); return false; } - int written_bytes = write(fd, frame, size); + int written_bytes = send(m_fd, reinterpret_cast(frame), size, SEND_FLAGS); if (u32(written_bytes) != size) { ERROR_LOG_FMT(SP1, "SendFrame(): expected to write {} bytes, instead wrote {}", size, @@ -133,45 +184,122 @@ bool CEXIETHERNET::TAPServerNetworkInterface::SendFrame(const u8* frame, u32 siz void CEXIETHERNET::TAPServerNetworkInterface::ReadThreadHandler() { - while (!readThreadShutdown.IsSet()) + while (!m_read_shutdown.IsSet()) { fd_set rfds; FD_ZERO(&rfds); - FD_SET(fd, &rfds); + FD_SET(m_fd, &rfds); timeval timeout; timeout.tv_sec = 0; timeout.tv_usec = 50000; - if (select(fd + 1, &rfds, nullptr, nullptr, &timeout) <= 0) + if (select(m_fd + 1, &rfds, nullptr, nullptr, &timeout) <= 0) continue; - u16 size; - if (read(fd, &size, 2) != 2) + // The tapserver protocol is very simple: there is a 16-bit little-endian + // size field, followed by that many bytes of packet data + switch (m_read_state) + { + case ReadState::Size: + { + u8 size_bytes[2]; + ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(size_bytes), 2, 0); + if (bytes_read == 1) + { + m_read_state = ReadState::SizeHigh; + m_read_packet_bytes_remaining = size_bytes[0]; + } + else if (bytes_read == 2) + { + m_read_packet_bytes_remaining = size_bytes[0] | (size_bytes[1] << 8); + if (m_read_packet_bytes_remaining > BBA_RECV_SIZE) + { + ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", + m_read_packet_bytes_remaining); + m_read_state = ReadState::Skip; + } + else + { + m_read_state = ReadState::Data; + } + } + else + { + ERROR_LOG_FMT(SP1, "Failed to read size field from BBA: {}", Common::LastStrerrorString()); + } + break; + } + case ReadState::SizeHigh: + { + // This handles the annoying case where only one byte of the size field + // was available earlier. + u8 size_high = 0; + ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(&size_high), 1, 0); + if (bytes_read == 1) + { + m_read_packet_bytes_remaining |= (size_high << 8); + if (m_read_packet_bytes_remaining > BBA_RECV_SIZE) + { + ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", + m_read_packet_bytes_remaining); + m_read_state = ReadState::Skip; + } + else + { + m_read_state = ReadState::Data; + } + } + else + { + ERROR_LOG_FMT(SP1, "Failed to read split size field from BBA: {}", + Common::LastStrerrorString()); + } + break; + } + case ReadState::Data: { - ERROR_LOG_FMT(SP1, "Failed to read size field from BBA: {}", Common::LastStrerrorString()); + ws_ssize_t bytes_read = + recv(m_fd, reinterpret_cast(m_eth_ref->mRecvBuffer.get() + m_read_packet_offset), + m_read_packet_bytes_remaining, 0); + if (bytes_read <= 0) + { + ERROR_LOG_FMT(SP1, "Failed to read data from BBA: {}", Common::LastStrerrorString()); + } + else + { + m_read_packet_offset += bytes_read; + m_read_packet_bytes_remaining -= bytes_read; + if (m_read_packet_bytes_remaining == 0) + { + m_eth_ref->mRecvBufferLength = m_read_packet_offset; + m_eth_ref->RecvHandlePacket(); + m_read_state = ReadState::Size; + m_read_packet_offset = 0; + } + } + break; } - else + case ReadState::Skip: { - int read_bytes = read(fd, m_eth_ref->mRecvBuffer.get(), size); - if (read_bytes < 0) + ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(m_eth_ref->mRecvBuffer.get()), + std::min(m_read_packet_bytes_remaining, BBA_RECV_SIZE), 0); + if (bytes_read <= 0) { - ERROR_LOG_FMT(SP1, "Failed to read packet data from BBA: {}", Common::LastStrerrorString()); + ERROR_LOG_FMT(SP1, "Failed to read data from BBA: {}", Common::LastStrerrorString()); } - else if (readEnabled.IsSet()) + else { - std::string data_string = ArrayToString(m_eth_ref->mRecvBuffer.get(), read_bytes, 0x10); - INFO_LOG_FMT(SP1, "Read data: {}", data_string); - m_eth_ref->mRecvBufferLength = read_bytes; - m_eth_ref->RecvHandlePacket(); + m_read_packet_bytes_remaining -= bytes_read; + if (m_read_packet_bytes_remaining == 0) + { + m_read_state = ReadState::Size; + m_read_packet_offset = 0; + } } + break; + } } } } -bool CEXIETHERNET::TAPServerNetworkInterface::RecvInit() -{ - readThread = std::thread(&CEXIETHERNET::TAPServerNetworkInterface::ReadThreadHandler, this); - return true; -} - } // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h index 301420fbea21..067f5d59c03c 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h +++ b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h @@ -17,6 +17,7 @@ #include "Common/Flag.h" #include "Common/Network.h" +#include "Common/SocketContext.h" #include "Core/HW/EXI/BBA/BuiltIn.h" #include "Core/HW/EXI/EXI_Device.h" @@ -362,21 +363,42 @@ class CEXIETHERNET : public IEXIDevice #endif }; - class TAPServerNetworkInterface : public TAPNetworkInterface + class TAPServerNetworkInterface : public NetworkInterface { public: explicit TAPServerNetworkInterface(CEXIETHERNET* eth_ref, const std::string& destination) - : TAPNetworkInterface(eth_ref), m_destination(destination) + : NetworkInterface(eth_ref), m_destination(destination) { } public: bool Activate() override; + void Deactivate() override; + bool IsActivated() override; bool SendFrame(const u8* frame, u32 size) override; bool RecvInit() override; + void RecvStart() override; + void RecvStop() override; private: + enum class ReadState + { + Size, + SizeHigh, + Data, + Skip, + }; + std::string m_destination; + Common::SocketContext m_socket_context; + + int m_fd = -1; + ReadState m_read_state = ReadState::Size; + u16 m_read_packet_offset; + u16 m_read_packet_bytes_remaining; + std::thread m_read_thread; + Common::Flag m_read_enabled; + Common::Flag m_read_shutdown; void ReadThreadHandler(); }; diff --git a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp index f8abbc77ab10..9716d8f21159 100644 --- a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp +++ b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp @@ -49,13 +49,19 @@ void BroadbandAdapterSettingsDialog::InitControls() break; case Type::TapServer: - address_label = new QLabel(tr("UNIX socket path or netloc (address:port):")); - address_placeholder = QStringLiteral("/tmp/dolphin-tap"); current_address = QString::fromStdString(Config::Get(Config::MAIN_BBA_TAPSERVER_DESTINATION)); - description = - new QLabel(tr("On macOS and Linux, the default value \"/tmp/dolphin-tap\" will work with " - "tapserver and newserv. On Windows, you must enter an IP address and port.")); - +#ifdef _WIN32 + address_label = new QLabel(tr("Destination (address:port):")); + address_placeholder = QStringLiteral(""); + description = new QLabel( + tr("Enter the IP address and port of the tapserver instance you want to connect to.")); +#else + address_label = new QLabel(tr("Destination (UNIX socket path or address:port):")); + address_placeholder = QStringLiteral("/tmp/dolphin-tap"); + description = new QLabel(tr( + "The default value \"/tmp/dolphin-tap\" will work with a local tapserver and newserv. You " + "can also enter a network location (address:port) to connect to a remote tapserver.")); +#endif window_title = tr("BBA destination address"); break; From 02deaa6748c44ffb2a370e4fadc8633a2ed25ac1 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 2 Dec 2023 23:37:28 -0800 Subject: [PATCH 101/223] Implement GC modem adapter This implements the GameCube modem adapter. This implementation is stable but not perfect; it drops frames if the receive FIFO length is exceeded. This is probably due to the unimplemented interrupt mentioned in the comments. If the tapserver end of the connection is aware of this limitation, it's easily circumvented by lowering the MTU of the link, but ideally this wouldn't be necessary. This has been tested with a couple of different versions of Phantasy Star Online, including Episodes 1 & 2 Trial Edition. The Trial Edition is the only version of the game that supports the Modem Adapter and not the Broadband Adapter, which is what made this commit necessary in the first place. --- .../features/settings/model/StringSetting.kt | 6 + .../settings/ui/SettingsFragmentPresenter.kt | 10 + .../app/src/main/res/values/strings.xml | 2 + Source/Core/Core/CMakeLists.txt | 3 + Source/Core/Core/Config/MainSettings.cpp | 2 + Source/Core/Core/Config/MainSettings.h | 1 + Source/Core/Core/HW/EXI/EXI_Device.cpp | 5 + Source/Core/Core/HW/EXI/EXI_Device.h | 4 +- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 382 ++++++++++++++++++ Source/Core/Core/HW/EXI/EXI_DeviceModem.h | 179 ++++++++ Source/Core/Core/HW/EXI/Modem/TAPServer.cpp | 324 +++++++++++++++ .../BroadbandAdapterSettingsDialog.cpp | 28 +- .../Settings/BroadbandAdapterSettingsDialog.h | 3 +- .../Core/DolphinQt/Settings/GameCubePane.cpp | 12 +- 14 files changed, 954 insertions(+), 7 deletions(-) create mode 100644 Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp create mode 100644 Source/Core/Core/HW/EXI/EXI_DeviceModem.h create mode 100644 Source/Core/Core/HW/EXI/Modem/TAPServer.cpp diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt index 8dc9e619c582..f95976456480 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/StringSetting.kt @@ -29,6 +29,12 @@ enum class StringSetting( "BBA_TAPSERVER_DESTINATION", "/tmp/dolphin-tap" ), + MAIN_MODEM_TAPSERVER_DESTINATION( + Settings.FILE_DOLPHIN, + Settings.SECTION_INI_CORE, + "MODEM_TAPSERVER_DESTINATION", + "/tmp/dolphin-modem-tap" + ), MAIN_CUSTOM_RTC_VALUE( Settings.FILE_DOLPHIN, Settings.SECTION_INI_CORE, 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 a0de70a72301..a3ec018b469f 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 @@ -1121,6 +1121,16 @@ class SettingsFragmentPresenter( R.string.bba_builtin_dns_description ) ) + } else if (serialPort1Type == 13) { + // Modem Adapter (tapserver) + sl.add( + InputStringSetting( + context, + StringSetting.MAIN_MODEM_TAPSERVER_DESTINATION, + R.string.modem_tapserver_destination, + R.string.modem_tapserver_destination_description + ) + ) } } diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 2e8fc6856e7a..89ddc6b70504 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -135,6 +135,8 @@ IP address or hostname of device running the XLink Kai client Tapserver destination Enter the socket path or netloc (address:port) of the tapserver instance + Tapserver destination + Enter the socket path or netloc (address:port) of the tapserver instance DNS Server Use 8.8.8.8 for normal DNS, else enter your custom one diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 10b60a1a1ce8..f36235d7d4fb 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -193,6 +193,7 @@ add_library(core HW/EXI/BBA/XLINK_KAI_BBA.cpp HW/EXI/BBA/BuiltIn.cpp HW/EXI/BBA/BuiltIn.h + HW/EXI/Modem/TAPServer.cpp HW/EXI/EXI_Channel.cpp HW/EXI/EXI_Channel.h HW/EXI/EXI_Device.cpp @@ -213,6 +214,8 @@ add_library(core HW/EXI/EXI_DeviceMemoryCard.h HW/EXI/EXI_DeviceMic.cpp HW/EXI/EXI_DeviceMic.h + HW/EXI/EXI_DeviceModem.cpp + HW/EXI/EXI_DeviceModem.h HW/EXI/EXI.cpp HW/EXI/EXI.h HW/GBAPad.cpp diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index cdd852c2602f..432abbeb2446 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -139,6 +139,8 @@ const Info MAIN_BBA_BUILTIN_DNS{{System::Main, "Core", "BBA_BUILTIN "3.18.217.27"}; const Info MAIN_BBA_TAPSERVER_DESTINATION{ {System::Main, "Core", "BBA_TAPSERVER_DESTINATION"}, "/tmp/dolphin-tap"}; +const Info MAIN_MODEM_TAPSERVER_DESTINATION{ + {System::Main, "Core", "MODEM_TAPSERVER_DESTINATION"}, "/tmp/dolphin-modem-tap"}; const Info MAIN_BBA_BUILTIN_IP{{System::Main, "Core", "BBA_BUILTIN_IP"}, ""}; const Info& GetInfoForSIDevice(int channel) diff --git a/Source/Core/Core/Config/MainSettings.h b/Source/Core/Core/Config/MainSettings.h index b13615df5d3b..5c028d9b3607 100644 --- a/Source/Core/Core/Config/MainSettings.h +++ b/Source/Core/Core/Config/MainSettings.h @@ -97,6 +97,7 @@ extern const Info MAIN_BBA_XLINK_CHAT_OSD; extern const Info MAIN_BBA_BUILTIN_DNS; extern const Info MAIN_BBA_BUILTIN_IP; extern const Info MAIN_BBA_TAPSERVER_DESTINATION; +extern const Info MAIN_MODEM_TAPSERVER_DESTINATION; const Info& GetInfoForSIDevice(int channel); const Info& GetInfoForAdapterRumble(int channel); const Info& GetInfoForSimulateKonga(int channel); diff --git a/Source/Core/Core/HW/EXI/EXI_Device.cpp b/Source/Core/Core/HW/EXI/EXI_Device.cpp index ad25a945228a..0d3ba0f8f9a6 100644 --- a/Source/Core/Core/HW/EXI/EXI_Device.cpp +++ b/Source/Core/Core/HW/EXI/EXI_Device.cpp @@ -14,6 +14,7 @@ #include "Core/HW/EXI/EXI_DeviceIPL.h" #include "Core/HW/EXI/EXI_DeviceMemoryCard.h" #include "Core/HW/EXI/EXI_DeviceMic.h" +#include "Core/HW/EXI/EXI_DeviceModem.h" #include "Core/HW/Memmap.h" #include "Core/System.h" @@ -149,6 +150,10 @@ std::unique_ptr EXIDevice_Create(Core::System& system, const EXIDevi result = std::make_unique(system, BBADeviceType::BuiltIn); break; + case EXIDeviceType::ModemTapServer: + result = std::make_unique(system, ModemDeviceType::TAPSERVER); + break; + case EXIDeviceType::Gecko: result = std::make_unique(system); break; diff --git a/Source/Core/Core/HW/EXI/EXI_Device.h b/Source/Core/Core/HW/EXI/EXI_Device.h index c927a255d360..f405de167e47 100644 --- a/Source/Core/Core/HW/EXI/EXI_Device.h +++ b/Source/Core/Core/HW/EXI/EXI_Device.h @@ -41,6 +41,7 @@ enum class EXIDeviceType : int EthernetXLink, EthernetTapServer, EthernetBuiltIn, + ModemTapServer, None = 0xFF }; @@ -87,7 +88,7 @@ std::unique_ptr EXIDevice_Create(Core::System& system, EXIDeviceType template <> struct fmt::formatter - : EnumFormatter + : EnumFormatter { static constexpr array_type names = { _trans("Dummy"), @@ -104,6 +105,7 @@ struct fmt::formatter _trans("Broadband Adapter (XLink Kai)"), _trans("Broadband Adapter (tapserver)"), _trans("Broadband Adapter (HLE)"), + _trans("Modem Adapter (tapserver)"), }; constexpr formatter() : EnumFormatter(names) {} diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp new file mode 100644 index 000000000000..867044ec893a --- /dev/null +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -0,0 +1,382 @@ +// Copyright 2008 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/HW/EXI/EXI_DeviceModem.h" + +#include + +#include +#include +#include +#include + +#include "Common/BitUtils.h" +#include "Common/ChunkFile.h" +#include "Common/CommonTypes.h" +#include "Common/Logging/Log.h" +#include "Common/Network.h" +#include "Common/StringUtil.h" +#include "Core/Config/MainSettings.h" +#include "Core/CoreTiming.h" +#include "Core/HW/EXI/EXI.h" +#include "Core/HW/Memmap.h" +#include "Core/PowerPC/PowerPC.h" +#include "Core/System.h" + +namespace ExpansionInterface +{ + +CEXIModem::CEXIModem(Core::System& system, ModemDeviceType type) : IEXIDevice(system) +{ + switch (type) + { + case ModemDeviceType::TAPSERVER: + m_network_interface = std::make_unique( + this, Config::Get(Config::MAIN_MODEM_TAPSERVER_DESTINATION)); + INFO_LOG_FMT(SP1, "Created tapserver physical network interface."); + break; + } + + for (size_t z = 0; z < m_regs.size(); z++) + { + m_regs[z] = 0; + } + m_regs[Register::DEVICE_TYPE] = 0x02; + m_regs[Register::INTERRUPT_MASK] = 0x02; +} + +CEXIModem::~CEXIModem() +{ + m_network_interface->Deactivate(); +} + +bool CEXIModem::IsPresent() const +{ + return true; +} + +void CEXIModem::SetCS(int cs) +{ + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; +} + +bool CEXIModem::IsInterruptSet() +{ + return !!(m_regs[Register::INTERRUPT_MASK] & m_regs[Register::PENDING_INTERRUPT_MASK]); +} + +void CEXIModem::ImmWrite(u32 data, u32 size) +{ + if (m_transfer_descriptor == INVALID_TRANSFER_DESCRIPTOR) + { + m_transfer_descriptor = data; + if (m_transfer_descriptor == 0x00008000) + { // Reset + m_network_interface->Deactivate(); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } + } + else if (!IsWriteTransfer(m_transfer_descriptor)) + { + ERROR_LOG_FMT(SP1, "Received EXI IMM write {:x} ({} bytes) after read command {:x}", data, size, + m_transfer_descriptor); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } + else if (IsModemTransfer(m_transfer_descriptor)) + { // Write AT command buffer or packet send buffer + u32 be_data = htonl(data); + HandleWriteModemTransfer(&be_data, size); + } + else + { // Write device register + uint8_t reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); + bool should_update_interrupts = false; + for (; size; size--) + { + should_update_interrupts |= + ((reg_num == Register::INTERRUPT_MASK) || (reg_num == Register::PENDING_INTERRUPT_MASK)); + m_regs[reg_num++] = (data >> 24); + data <<= 8; + } + if (should_update_interrupts) + { + m_system.GetExpansionInterface().ScheduleUpdateInterrupts(CoreTiming::FromThread::CPU, 0); + } + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } +} + +void CEXIModem::DMAWrite(u32 addr, u32 size) +{ + if (m_transfer_descriptor == INVALID_TRANSFER_DESCRIPTOR) + { + ERROR_LOG_FMT(SP1, "Received EXI DMA write {:x} ({} bytes) after read command {:x}", addr, size, + m_transfer_descriptor); + } + else if (!IsWriteTransfer(m_transfer_descriptor)) + { + ERROR_LOG_FMT(SP1, "Received EXI DMA write {:x} ({} bytes) after read command {:x}", addr, size, + m_transfer_descriptor); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } + else if (!IsModemTransfer(m_transfer_descriptor)) + { + ERROR_LOG_FMT(SP1, "Received EXI DMA write {:x} ({} bytes) to registers {:x}", addr, size, + m_transfer_descriptor); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } + else + { + auto& memory = m_system.GetMemory(); + HandleWriteModemTransfer(memory.GetPointer(addr), size); + } +} + +u32 CEXIModem::ImmRead(u32 size) +{ + if (m_transfer_descriptor == INVALID_TRANSFER_DESCRIPTOR) + { + ERROR_LOG_FMT(SP1, "Received EXI IMM read ({} bytes) with no pending transfer", size); + return 0; + } + else if (IsWriteTransfer(m_transfer_descriptor)) + { + ERROR_LOG_FMT(SP1, "Received EXI IMM read ({} bytes) after write command {:x}", size, + m_transfer_descriptor); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + return 0; + } + else if (IsModemTransfer(m_transfer_descriptor)) + { + u32 be_data = 0; + HandleReadModemTransfer(&be_data, size); + return ntohl(be_data); + } + else + { // Read device register + uint8_t reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); + if (reg_num == 0) + { + return 0x02020000; // Device ID (modem) + } + u32 ret = 0; + for (size_t z = 0; z < size; z++) + { + ret |= (m_regs[reg_num + z] << ((3 - z) * 8)); + } + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + return ret; + } +} + +void CEXIModem::DMARead(u32 addr, u32 size) +{ + if (m_transfer_descriptor == INVALID_TRANSFER_DESCRIPTOR) + { + ERROR_LOG_FMT(SP1, "Received EXI DMA read {:x} ({} bytes) with no pending transfer", addr, + size); + } + else if (IsWriteTransfer(m_transfer_descriptor)) + { + ERROR_LOG_FMT(SP1, "Received EXI DMA read {:x} ({} bytes) after write command {:x}", addr, size, + m_transfer_descriptor); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } + else if (!IsModemTransfer(m_transfer_descriptor)) + { + ERROR_LOG_FMT(SP1, "Received EXI DMA read {:x} ({} bytes) to registers {:x}", addr, size, + m_transfer_descriptor); + m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + } + else + { + auto& memory = m_system.GetMemory(); + HandleReadModemTransfer(memory.GetPointer(addr), size); + } +} + +void CEXIModem::HandleReadModemTransfer(void* data, u32 size) +{ + u16 bytes_requested = GetModemTransferSize(m_transfer_descriptor); + if (size > bytes_requested) + { + ERROR_LOG_FMT(SP1, "More bytes requested ({}) than originally requested for transfer {:x}", + size, m_transfer_descriptor); + size = bytes_requested; + } + u16 bytes_requested_after_read = bytes_requested - size; + + if ((m_transfer_descriptor & 0x0F000000) == 0x03000000) + { // AT command buffer + memcpy(data, m_at_reply_data.data(), std::min(size, m_at_reply_data.size())); + m_at_reply_data = m_at_reply_data.substr(size); + m_regs[Register::AT_REPLY_SIZE] = m_at_reply_data.size(); + SetInterruptFlag(Interrupt::AT_REPLY_DATA_AVAILABLE, !m_at_reply_data.empty(), true); + } + else if ((m_transfer_descriptor & 0x0F000000) == 0x08000000) + { // Packet receive buffer + std::lock_guard g(m_receive_buffer_lock); + size_t bytes_to_copy = std::min(size, m_receive_buffer.size()); + memcpy(data, m_receive_buffer.data(), bytes_to_copy); + m_receive_buffer = m_receive_buffer.substr(size); + OnReceiveBufferSizeChangedLocked(true); + } + else + { + ERROR_LOG_FMT(SP1, "Invalid modem read transfer type {:x}", m_transfer_descriptor); + } + + m_transfer_descriptor = + (bytes_requested_after_read == 0) ? + INVALID_TRANSFER_DESCRIPTOR : + SetModemTransferSize(m_transfer_descriptor, bytes_requested_after_read); +} + +void CEXIModem::HandleWriteModemTransfer(const void* data, u32 size) +{ + u16 bytes_expected = GetModemTransferSize(m_transfer_descriptor); + if (size > bytes_expected) + { + ERROR_LOG_FMT(SP1, "More bytes received ({}) than expected for transfer {:x}", size, + m_transfer_descriptor); + return; + } + u16 bytes_expected_after_write = bytes_expected - size; + + if ((m_transfer_descriptor & 0x0F000000) == 0x03000000) + { // AT command buffer + m_at_command_data.append(reinterpret_cast(data), size); + RunAllPendingATCommands(); + m_regs[Register::AT_COMMAND_SIZE] = m_at_command_data.size(); + } + else if ((m_transfer_descriptor & 0x0F000000) == 0x08000000) + { // Packet send buffer + m_send_buffer.append(reinterpret_cast(data), size); + // A more accurate implementation would only set this interrupt if the send + // FIFO has enough space; however, we can clear the send FIFO "instantly" + // from the emulated program's perspective, so we always tell it the send + // FIFO is empty. + SetInterruptFlag(Interrupt::SEND_BUFFER_BELOW_THRESHOLD, true, true); + m_network_interface->SendFrames(); + } + else + { + ERROR_LOG_FMT(SP1, "Invalid modem write transfer type {:x}", m_transfer_descriptor); + } + + m_transfer_descriptor = + (bytes_expected_after_write == 0) ? + INVALID_TRANSFER_DESCRIPTOR : + SetModemTransferSize(m_transfer_descriptor, bytes_expected_after_write); +} + +void CEXIModem::DoState(PointerWrap& p) +{ + // There isn't really any state to save. The registers depend on the state of + // the external connection, which Dolphin doesn't have control over. What + // should happen when the user saves a state during an online session and + // loads it later? The remote server presumably doesn't support point-in-time + // snapshots and reloading thereof. +} + +u16 CEXIModem::GetTxThreshold() const +{ + return (m_regs[Register::TX_THRESHOLD_HIGH] << 8) | m_regs[Register::TX_THRESHOLD_LOW]; +} + +u16 CEXIModem::GetRxThreshold() const +{ + return (m_regs[Register::RX_THRESHOLD_HIGH] << 8) | m_regs[Register::RX_THRESHOLD_LOW]; +} + +void CEXIModem::SetInterruptFlag(uint8_t what, bool enabled, bool from_cpu) +{ + if (enabled) + { + m_regs[Register::PENDING_INTERRUPT_MASK] |= what; + } + else + { + m_regs[Register::PENDING_INTERRUPT_MASK] &= (~what); + } + m_system.GetExpansionInterface().ScheduleUpdateInterrupts( + from_cpu ? CoreTiming::FromThread::CPU : CoreTiming::FromThread::NON_CPU, 0); +} + +void CEXIModem::OnReceiveBufferSizeChangedLocked(bool from_cpu) +{ + // The caller is expected to hold m_receive_buffer_lock when calling this. + uint16_t bytes_available = std::min(m_receive_buffer.size(), 0x200); + m_regs[Register::BYTES_AVAILABLE_HIGH] = (bytes_available >> 8) & 0xFF; + m_regs[Register::BYTES_AVAILABLE_LOW] = bytes_available & 0xFF; + SetInterruptFlag(Interrupt::RECEIVE_BUFFER_ABOVE_THRESHOLD, + m_receive_buffer.size() >= GetRxThreshold(), from_cpu); + // TODO: There is a second interrupt here, which the GameCube modem library + // expects to be used when large frames are received. However, the correct + // semantics for this interrupt aren't obvious. Reverse-engineering some games + // that use the modem adapter makes it look like this interrupt should trigger + // when there's any data at all in the receive buffer, but implementing the + // interrupt this way causes them to crash. Further research is needed. + // SetInterruptFlag(Interrupt::RECEIVE_BUFFER_NOT_EMPTY, !m_receive_buffer.empty(), from_cpu); +} + +void CEXIModem::SendComplete() +{ + // See comment in HandleWriteModemTransfer about why this is always true. + SetInterruptFlag(Interrupt::SEND_BUFFER_BELOW_THRESHOLD, true, true); +} + +void CEXIModem::AddToReceiveBuffer(std::string&& data) +{ + std::lock_guard g(m_receive_buffer_lock); + if (m_receive_buffer.empty()) + { + m_receive_buffer = std::move(data); + } + else + { + m_receive_buffer += data; + } + OnReceiveBufferSizeChangedLocked(false); +} + +void CEXIModem::AddATReply(const std::string& data) +{ + m_at_reply_data += data; + m_regs[Register::AT_REPLY_SIZE] = m_at_reply_data.size(); + SetInterruptFlag(Interrupt::AT_REPLY_DATA_AVAILABLE, !m_at_reply_data.empty(), false); +} + +void CEXIModem::RunAllPendingATCommands() +{ + for (size_t newline_pos = m_at_command_data.find_first_of("\r\n"); + newline_pos != std::string::npos; newline_pos = m_at_command_data.find_first_of("\r\n")) + { + std::string command = m_at_command_data.substr(0, newline_pos); + m_at_command_data = m_at_command_data.substr(newline_pos + 1); + + if (command == "ATZ") + { // Reset + m_network_interface->Deactivate(); + AddATReply("OK\r"); + } + else if (command.substr(0, 3) == "ATD") + { // Dial + if (m_network_interface->Activate()) + { + AddATReply("OK\rCONNECT 115200\r"); // Maximum baud rate + } + else + { + AddATReply("OK\rNO ANSWER\r"); + } + } + else + { + INFO_LOG_FMT(SP1, "Unhandled AT command: {}", command); + AddATReply("OK\r"); + } + } +} + +} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.h b/Source/Core/Core/HW/EXI/EXI_DeviceModem.h new file mode 100644 index 000000000000..d6ba896667e7 --- /dev/null +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.h @@ -0,0 +1,179 @@ +// Copyright 2008 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#include +#endif + +#include + +#include "Common/Flag.h" +#include "Common/Network.h" +#include "Common/SocketContext.h" +#include "Core/HW/EXI/BBA/BuiltIn.h" +#include "Core/HW/EXI/EXI_Device.h" + +class PointerWrap; + +namespace ExpansionInterface +{ + +#define MODEM_RECV_SIZE 0x800 + +enum +{ + EXI_DEVTYPE_MODEM = 0x02020000, +}; + +enum class ModemDeviceType +{ + TAPSERVER, +}; + +class CEXIModem : public IEXIDevice +{ +public: + CEXIModem(Core::System& system, ModemDeviceType type); + virtual ~CEXIModem(); + void SetCS(int cs) override; + bool IsPresent() const override; + bool IsInterruptSet() override; + void ImmWrite(u32 data, u32 size) override; + u32 ImmRead(u32 size) override; + void DMAWrite(u32 addr, u32 size) override; + void DMARead(u32 addr, u32 size) override; + void DoState(PointerWrap& p) override; + +private: + enum Interrupt + { // Used for Register::INTERRUPT_MASK and Register::PENDING_INTERRUPT_MASK + AT_REPLY_DATA_AVAILABLE = 0x02, + SEND_BUFFER_BELOW_THRESHOLD = 0x10, + RECEIVE_BUFFER_ABOVE_THRESHOLD = 0x20, + RECEIVE_BUFFER_NOT_EMPTY = 0x40, + }; + enum Register + { + DEVICE_TYPE = 0x00, + INTERRUPT_MASK = 0x01, + PENDING_INTERRUPT_MASK = 0x02, + UNKNOWN_03 = 0x03, + AT_COMMAND_SIZE = 0x04, + AT_REPLY_SIZE = 0x05, + UNKNOWN_06 = 0x06, + UNKNOWN_07 = 0x07, + UNKNOWN_08 = 0x08, + BYTES_SENT_HIGH = 0x09, + BYTES_SENT_LOW = 0x0A, + BYTES_AVAILABLE_HIGH = 0x0B, + BYTES_AVAILABLE_LOW = 0x0C, + ESR = 0x0D, + TX_THRESHOLD_HIGH = 0x0E, + TX_THRESHOLD_LOW = 0x0F, + RX_THRESHOLD_HIGH = 0x10, + RX_THRESHOLD_LOW = 0x11, + STATUS = 0x12, + FWT = 0x13, + }; + + u16 GetTxThreshold() const; + u16 GetRxThreshold() const; + void SetInterruptFlag(uint8_t what, bool enabled, bool from_cpu); + void HandleReadModemTransfer(void* data, u32 size); + void HandleWriteModemTransfer(const void* data, u32 size); + void OnReceiveBufferSizeChangedLocked(bool from_cpu); + void SendComplete(); + void AddToReceiveBuffer(std::string&& data); + void RunAllPendingATCommands(); + void AddATReply(const std::string& data); + + static inline bool TransferIsResetCommand(u32 transfer_descriptor) + { + return (transfer_descriptor == 0x80000000); + } + static inline bool IsWriteTransfer(u32 transfer_descriptor) + { + return (transfer_descriptor & 0x40000000); + } + static inline bool IsModemTransfer(u32 transfer_descriptor) + { + return (transfer_descriptor & 0x20000000); + } + static inline u16 GetModemTransferSize(u32 transfer_descriptor) + { + return ((transfer_descriptor >> 8) & 0xFFFF); + } + static inline u32 SetModemTransferSize(u32 transfer_descriptor, u16 new_size) + { + return (transfer_descriptor & 0xFF000000) | (new_size << 8); + } + + class NetworkInterface + { + protected: + CEXIModem* m_modem_ref = nullptr; + explicit NetworkInterface(CEXIModem* modem_ref) : m_modem_ref{modem_ref} {} + + public: + virtual bool Activate() { return false; } + virtual void Deactivate() {} + virtual bool IsActivated() { return false; } + virtual bool SendFrames() { return false; } + virtual bool RecvInit() { return false; } + virtual void RecvStart() {} + virtual void RecvStop() {} + + virtual ~NetworkInterface() = default; + }; + + class TAPServerNetworkInterface : public NetworkInterface + { + public: + explicit TAPServerNetworkInterface(CEXIModem* modem_ref, const std::string& destination) + : NetworkInterface(modem_ref), m_destination(destination) + { + } + + public: + bool Activate() override; + void Deactivate() override; + bool IsActivated() override; + bool SendFrames() override; + bool RecvInit() override; + void RecvStart() override; + void RecvStop() override; + + private: + std::string m_destination; + Common::SocketContext m_socket_context; + + int m_fd = -1; + std::thread m_read_thread; + Common::Flag m_read_enabled; + Common::Flag m_read_shutdown; + + void ReadThreadHandler(); + }; + + std::unique_ptr m_network_interface; + + static constexpr u32 INVALID_TRANSFER_DESCRIPTOR = 0xFFFFFFFF; + + u32 m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; + + std::string m_at_command_data; + std::string m_at_reply_data; + std::string m_send_buffer; + std::mutex m_receive_buffer_lock; + std::string m_receive_buffer; + std::array m_regs; +}; +} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/Modem/TAPServer.cpp b/Source/Core/Core/HW/EXI/Modem/TAPServer.cpp new file mode 100644 index 000000000000..9db6e5e76e54 --- /dev/null +++ b/Source/Core/Core/HW/EXI/Modem/TAPServer.cpp @@ -0,0 +1,324 @@ +// Copyright 2020 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/HW/EXI/EXI_DeviceModem.h" + +#ifdef _WIN32 +#include +#include +#else +#include +#include +#include +#include +#include +#endif + +#include "Common/CommonFuncs.h" +#include "Common/Logging/Log.h" +#include "Common/StringUtil.h" +#include "Core/HW/EXI/EXI_Device.h" + +namespace ExpansionInterface +{ + +#ifdef _WIN32 +static constexpr auto pi_close = &closesocket; +using ws_ssize_t = int; +#else +static constexpr auto pi_close = &close; +using ws_ssize_t = ssize_t; +#endif + +#ifdef __LINUX__ +#define SEND_FLAGS MSG_NOSIGNAL +#else +#define SEND_FLAGS 0 +#endif + +static int ConnectToDestination(const std::string& destination) +{ + if (destination.empty()) + { + ERROR_LOG_FMT(SP1, "Cannot connect: destination is empty\n"); + return -1; + } + + int ss_size; + struct sockaddr_storage ss; + memset(&ss, 0, sizeof(ss)); + if (destination[0] != '/') + { + // IP address or hostname + size_t colon_offset = destination.find(':'); + if (colon_offset == std::string::npos) + { + ERROR_LOG_FMT(SP1, "Destination IP address does not include port\n"); + return -1; + } + + struct sockaddr_in* sin = reinterpret_cast(&ss); + sin->sin_addr.s_addr = htonl(sf::IpAddress(destination.substr(0, colon_offset)).toInteger()); + sin->sin_family = AF_INET; + sin->sin_port = htons(stoul(destination.substr(colon_offset + 1))); + ss_size = sizeof(*sin); +#ifndef _WIN32 + } + else + { + // UNIX socket + struct sockaddr_un* sun = reinterpret_cast(&ss); + if (destination.size() + 1 > sizeof(sun->sun_path)) + { + ERROR_LOG_FMT(SP1, "Socket path is too long, unable to init BBA\n"); + return -1; + } + sun->sun_family = AF_UNIX; + strcpy(sun->sun_path, destination.c_str()); + ss_size = sizeof(*sun); +#else + } + else + { + ERROR_LOG_FMT(SP1, "UNIX sockets are not supported on Windows\n"); + return -1; +#endif + } + + int fd = socket(ss.ss_family, SOCK_STREAM, (ss.ss_family == AF_INET) ? IPPROTO_TCP : 0); + if (fd == -1) + { + ERROR_LOG_FMT(SP1, "Couldn't create socket; unable to init BBA\n"); + return -1; + } + +#ifdef __APPLE__ + int opt_no_sigpipe = 1; + if (setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &opt_no_sigpipe, sizeof(opt_no_sigpipe)) < 0) + INFO_LOG_FMT(SP1, "Failed to set SO_NOSIGPIPE on socket\n"); +#endif + + if (connect(fd, reinterpret_cast(&ss), ss_size) == -1) + { + std::string s = Common::LastStrerrorString(); + INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to init BBA\n", s.c_str()); + pi_close(fd); + return -1; + } + + return fd; +} + +bool CEXIModem::TAPServerNetworkInterface::Activate() +{ + if (IsActivated()) + return true; + + m_fd = ConnectToDestination(m_destination); + if (m_fd < 0) + { + return false; + } + + INFO_LOG_FMT(SP1, "Modem initialized."); + return RecvInit(); +} + +void CEXIModem::TAPServerNetworkInterface::Deactivate() +{ + if (m_fd >= 0) + { + pi_close(m_fd); + } + m_fd = -1; + + m_read_enabled.Clear(); + m_read_shutdown.Set(); + if (m_read_thread.joinable()) + { + m_read_thread.join(); + } + m_read_shutdown.Clear(); +} + +bool CEXIModem::TAPServerNetworkInterface::IsActivated() +{ + return (m_fd >= 0); +} + +bool CEXIModem::TAPServerNetworkInterface::RecvInit() +{ + m_read_thread = std::thread(&CEXIModem::TAPServerNetworkInterface::ReadThreadHandler, this); + return true; +} + +void CEXIModem::TAPServerNetworkInterface::RecvStart() +{ + m_read_enabled.Set(); +} + +void CEXIModem::TAPServerNetworkInterface::RecvStop() +{ + m_read_enabled.Clear(); +} + +bool CEXIModem::TAPServerNetworkInterface::SendFrames() +{ + while (!m_modem_ref->m_send_buffer.empty()) + { + size_t start_offset = m_modem_ref->m_send_buffer.find(0x7E); + if (start_offset == std::string::npos) + { + break; + } + size_t end_sentinel_offset = m_modem_ref->m_send_buffer.find(0x7E, start_offset + 1); + if (end_sentinel_offset == std::string::npos) + { + break; + } + size_t end_offset = end_sentinel_offset + 1; + size_t size = end_offset - start_offset; + + uint8_t size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; + if (send(m_fd, size_bytes, 2, SEND_FLAGS) != 2) + { + ERROR_LOG_FMT(SP1, "SendFrames(): could not write size field"); + return false; + } + int written_bytes = + send(m_fd, m_modem_ref->m_send_buffer.data() + start_offset, size, SEND_FLAGS); + if (u32(written_bytes) != size) + { + ERROR_LOG_FMT(SP1, "SendFrames(): expected to write {} bytes, instead wrote {}", size, + written_bytes); + return false; + } + else + { + m_modem_ref->m_send_buffer = m_modem_ref->m_send_buffer.substr(end_offset); + m_modem_ref->SendComplete(); + } + } + return true; +} + +void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() +{ + enum class ReadState + { + SIZE, + SIZE_HIGH, + DATA, + SKIP, + }; + ReadState read_state = ReadState::SIZE; + + size_t frame_bytes_received = 0; + size_t frame_bytes_expected = 0; + std::string frame_data; + + while (!m_read_shutdown.IsSet()) + { + fd_set rfds; + FD_ZERO(&rfds); + FD_SET(m_fd, &rfds); + + timeval timeout; + timeout.tv_sec = 0; + timeout.tv_usec = 50000; + if (select(m_fd + 1, &rfds, nullptr, nullptr, &timeout) <= 0) + continue; + + // The tapserver protocol is very simple: there is a 16-bit little-endian + // size field, followed by that many bytes of packet data + switch (read_state) + { + case ReadState::SIZE: + { + u8 size_bytes[2]; + ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(size_bytes), 2, 0); + if (bytes_read == 1) + { + read_state = ReadState::SIZE_HIGH; + frame_bytes_expected = size_bytes[0]; + } + else if (bytes_read == 2) + { + frame_bytes_expected = size_bytes[0] | (size_bytes[1] << 8); + frame_data.resize(frame_bytes_expected, '\0'); + if (frame_bytes_expected > MODEM_RECV_SIZE) + { + ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", frame_bytes_expected); + read_state = ReadState::SKIP; + } + else + { + read_state = ReadState::DATA; + } + } + else + { + ERROR_LOG_FMT(SP1, "Failed to read size field from destination: {}", + Common::LastStrerrorString()); + } + break; + } + case ReadState::SIZE_HIGH: + { + // This handles the annoying case where only one byte of the size field + // was available earlier. + u8 size_high = 0; + ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(&size_high), 1, 0); + if (bytes_read == 1) + { + frame_bytes_expected |= (size_high << 8); + frame_data.resize(frame_bytes_expected, '\0'); + if (frame_bytes_expected > MODEM_RECV_SIZE) + { + ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", frame_bytes_expected); + read_state = ReadState::SKIP; + } + else + { + read_state = ReadState::DATA; + } + } + else + { + ERROR_LOG_FMT(SP1, "Failed to read split size field from destination: {}", + Common::LastStrerrorString()); + } + break; + } + case ReadState::DATA: + case ReadState::SKIP: + { + ws_ssize_t bytes_read = recv(m_fd, frame_data.data() + frame_bytes_received, + frame_data.size() - frame_bytes_received, 0); + if (bytes_read <= 0) + { + ERROR_LOG_FMT(SP1, "Failed to read data from destination: {}", + Common::LastStrerrorString()); + } + else + { + frame_bytes_received += bytes_read; + if (frame_bytes_received == frame_bytes_expected) + { + if (read_state == ReadState::DATA) + { + m_modem_ref->AddToReceiveBuffer(std::move(frame_data)); + } + frame_data.clear(); + frame_bytes_received = 0; + frame_bytes_expected = 0; + read_state = ReadState::SIZE; + } + } + break; + } + } + } +} + +} // namespace ExpansionInterface diff --git a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp index 9716d8f21159..27579b5ac80e 100644 --- a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp +++ b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp @@ -49,7 +49,12 @@ void BroadbandAdapterSettingsDialog::InitControls() break; case Type::TapServer: - current_address = QString::fromStdString(Config::Get(Config::MAIN_BBA_TAPSERVER_DESTINATION)); + case Type::ModemTapServer: + { + bool is_modem = (m_bba_type == Type::ModemTapServer); + current_address = + QString::fromStdString(Config::Get(is_modem ? Config::MAIN_MODEM_TAPSERVER_DESTINATION : + Config::MAIN_BBA_TAPSERVER_DESTINATION)); #ifdef _WIN32 address_label = new QLabel(tr("Destination (address:port):")); address_placeholder = QStringLiteral(""); @@ -58,12 +63,24 @@ void BroadbandAdapterSettingsDialog::InitControls() #else address_label = new QLabel(tr("Destination (UNIX socket path or address:port):")); address_placeholder = QStringLiteral("/tmp/dolphin-tap"); - description = new QLabel(tr( - "The default value \"/tmp/dolphin-tap\" will work with a local tapserver and newserv. You " - "can also enter a network location (address:port) to connect to a remote tapserver.")); + if (is_modem) + { + description = new QLabel( + tr("The default value \"/tmp/dolphin-modem-tap\" will work with a local tapserver and " + "newserv. You " + "can also enter a network location (address:port) to connect to a remote tapserver.")); + } + else + { + description = new QLabel( + tr("The default value \"/tmp/dolphin-tap\" will work with a local tapserver and newserv. " + "You " + "can also enter a network location (address:port) to connect to a remote tapserver.")); + } #endif window_title = tr("BBA destination address"); break; + } case Type::BuiltIn: address_label = new QLabel(tr("Enter the DNS server to use:")); @@ -134,6 +151,9 @@ void BroadbandAdapterSettingsDialog::SaveAddress() case Type::TapServer: Config::SetBaseOrCurrent(Config::MAIN_BBA_TAPSERVER_DESTINATION, bba_new_address); break; + case Type::ModemTapServer: + Config::SetBaseOrCurrent(Config::MAIN_MODEM_TAPSERVER_DESTINATION, bba_new_address); + break; case Type::BuiltIn: Config::SetBaseOrCurrent(Config::MAIN_BBA_BUILTIN_DNS, bba_new_address); break; diff --git a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h index 53863f1d15ec..08a8793a089a 100644 --- a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h +++ b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.h @@ -16,7 +16,8 @@ class BroadbandAdapterSettingsDialog final : public QDialog Ethernet, XLinkKai, TapServer, - BuiltIn + BuiltIn, + ModemTapServer }; explicit BroadbandAdapterSettingsDialog(QWidget* target, Type bba_type); diff --git a/Source/Core/DolphinQt/Settings/GameCubePane.cpp b/Source/Core/DolphinQt/Settings/GameCubePane.cpp index 944efa7a9f55..c2686259594f 100644 --- a/Source/Core/DolphinQt/Settings/GameCubePane.cpp +++ b/Source/Core/DolphinQt/Settings/GameCubePane.cpp @@ -151,6 +151,7 @@ void GameCubePane::CreateWidgets() EXIDeviceType::EthernetXLink, EXIDeviceType::EthernetTapServer, EXIDeviceType::EthernetBuiltIn, + EXIDeviceType::ModemTapServer, }) { m_slot_combos[ExpansionInterface::Slot::SP1]->addItem(tr(fmt::format("{:n}", device).c_str()), @@ -354,7 +355,8 @@ void GameCubePane::UpdateButton(ExpansionInterface::Slot slot) has_config = (device == ExpansionInterface::EXIDeviceType::Ethernet || device == ExpansionInterface::EXIDeviceType::EthernetXLink || device == ExpansionInterface::EXIDeviceType::EthernetTapServer || - device == ExpansionInterface::EXIDeviceType::EthernetBuiltIn); + device == ExpansionInterface::EXIDeviceType::EthernetBuiltIn || + device == ExpansionInterface::EXIDeviceType::ModemTapServer); break; } @@ -406,6 +408,14 @@ void GameCubePane::OnConfigPressed(ExpansionInterface::Slot slot) dialog.exec(); return; } + case ExpansionInterface::EXIDeviceType::ModemTapServer: + { + BroadbandAdapterSettingsDialog dialog(this, + BroadbandAdapterSettingsDialog::Type::ModemTapServer); + SetQWidgetWindowDecorations(&dialog); + dialog.exec(); + return; + } case ExpansionInterface::EXIDeviceType::EthernetBuiltIn: { BroadbandAdapterSettingsDialog dialog(this, BroadbandAdapterSettingsDialog::Type::BuiltIn); From dcb7a72c14b58a6c2e395183b10a6b91116e48cd Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Wed, 6 Dec 2023 16:12:48 -0800 Subject: [PATCH 102/223] add modem files to windows build --- Source/Core/DolphinLib.props | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 2229ee9d0647..72c2f0ba1d41 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -284,6 +284,7 @@ + @@ -939,6 +940,7 @@ + @@ -949,6 +951,7 @@ + From 9cf8131b239e1704a0898cd3805400357ecf8ef2 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 28 Jan 2024 17:26:57 -0800 Subject: [PATCH 103/223] respond to review feedback on tapserver implementation --- Source/Core/Core/CMakeLists.txt | 5 +- Source/Core/Core/HW/EXI/BBA/TAPServer.cpp | 305 ------------------ Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp | 88 +++++ .../TAPServerConnection.cpp} | 139 ++++---- .../Core/HW/EXI/BBA/TAPServerConnection.h | 66 ++++ Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h | 27 +- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 75 +++-- Source/Core/Core/HW/EXI/EXI_DeviceModem.h | 56 ++-- .../Core/Core/HW/EXI/Modem/TAPServerModem.cpp | 79 +++++ Source/Core/DolphinLib.props | 5 +- 10 files changed, 389 insertions(+), 456 deletions(-) delete mode 100644 Source/Core/Core/HW/EXI/BBA/TAPServer.cpp create mode 100644 Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp rename Source/Core/Core/HW/EXI/{Modem/TAPServer.cpp => BBA/TAPServerConnection.cpp} (57%) create mode 100644 Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h create mode 100644 Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index f36235d7d4fb..e87983e15b56 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -189,11 +189,12 @@ add_library(core HW/DVD/DVDThread.h HW/DVD/FileMonitor.cpp HW/DVD/FileMonitor.h - HW/EXI/BBA/TAPServer.cpp + HW/EXI/BBA/TAPServerConnection.cpp + HW/EXI/BBA/TAPServerBBA.cpp HW/EXI/BBA/XLINK_KAI_BBA.cpp HW/EXI/BBA/BuiltIn.cpp HW/EXI/BBA/BuiltIn.h - HW/EXI/Modem/TAPServer.cpp + HW/EXI/Modem/TAPServerModem.cpp HW/EXI/EXI_Channel.cpp HW/EXI/EXI_Channel.h HW/EXI/EXI_Device.cpp diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp deleted file mode 100644 index f81c1f479f33..000000000000 --- a/Source/Core/Core/HW/EXI/BBA/TAPServer.cpp +++ /dev/null @@ -1,305 +0,0 @@ -// Copyright 2020 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "Core/HW/EXI/EXI_DeviceEthernet.h" - -#ifdef _WIN32 -#include -#include -#else -#include -#include -#include -#include -#include -#endif - -#include "Common/CommonFuncs.h" -#include "Common/Logging/Log.h" -#include "Common/StringUtil.h" -#include "Core/HW/EXI/EXI_Device.h" - -namespace ExpansionInterface -{ - -#ifdef _WIN32 -static constexpr auto pi_close = &closesocket; -using ws_ssize_t = int; -#else -static constexpr auto pi_close = &close; -using ws_ssize_t = ssize_t; -#endif - -#ifdef __LINUX__ -#define SEND_FLAGS MSG_NOSIGNAL -#else -#define SEND_FLAGS 0 -#endif - -static int ConnectToDestination(const std::string& destination) -{ - if (destination.empty()) - { - ERROR_LOG_FMT(SP1, "Cannot connect: destination is empty\n"); - return -1; - } - - int ss_size; - struct sockaddr_storage ss; - memset(&ss, 0, sizeof(ss)); - if (destination[0] != '/') - { - // IP address or hostname - size_t colon_offset = destination.find(':'); - if (colon_offset == std::string::npos) - { - ERROR_LOG_FMT(SP1, "Destination IP address does not include port\n"); - return -1; - } - - struct sockaddr_in* sin = reinterpret_cast(&ss); - sin->sin_addr.s_addr = htonl(sf::IpAddress(destination.substr(0, colon_offset)).toInteger()); - sin->sin_family = AF_INET; - sin->sin_port = htons(stoul(destination.substr(colon_offset + 1))); - ss_size = sizeof(*sin); -#ifndef _WIN32 - } - else - { - // UNIX socket - struct sockaddr_un* sun = reinterpret_cast(&ss); - if (destination.size() + 1 > sizeof(sun->sun_path)) - { - ERROR_LOG_FMT(SP1, "Socket path is too long, unable to init BBA\n"); - return -1; - } - sun->sun_family = AF_UNIX; - strcpy(sun->sun_path, destination.c_str()); - ss_size = sizeof(*sun); -#else - } - else - { - ERROR_LOG_FMT(SP1, "UNIX sockets are not supported on Windows\n"); - return -1; -#endif - } - - int fd = socket(ss.ss_family, SOCK_STREAM, (ss.ss_family == AF_INET) ? IPPROTO_TCP : 0); - if (fd == -1) - { - ERROR_LOG_FMT(SP1, "Couldn't create socket; unable to init BBA\n"); - return -1; - } - -#ifdef __APPLE__ - int opt_no_sigpipe = 1; - if (setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &opt_no_sigpipe, sizeof(opt_no_sigpipe)) < 0) - INFO_LOG_FMT(SP1, "Failed to set SO_NOSIGPIPE on socket\n"); -#endif - - if (connect(fd, reinterpret_cast(&ss), ss_size) == -1) - { - std::string s = Common::LastStrerrorString(); - INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to init BBA\n", s.c_str()); - pi_close(fd); - return -1; - } - - return fd; -} - -bool CEXIETHERNET::TAPServerNetworkInterface::Activate() -{ - if (IsActivated()) - return true; - - m_fd = ConnectToDestination(m_destination); - - INFO_LOG_FMT(SP1, "BBA initialized."); - return RecvInit(); -} - -void CEXIETHERNET::TAPServerNetworkInterface::Deactivate() -{ - pi_close(m_fd); - m_fd = -1; - - m_read_enabled.Clear(); - m_read_shutdown.Set(); - if (m_read_thread.joinable()) - m_read_thread.join(); -} - -bool CEXIETHERNET::TAPServerNetworkInterface::IsActivated() -{ - return (m_fd >= 0); -} - -bool CEXIETHERNET::TAPServerNetworkInterface::RecvInit() -{ - m_read_thread = std::thread(&CEXIETHERNET::TAPServerNetworkInterface::ReadThreadHandler, this); - return true; -} - -void CEXIETHERNET::TAPServerNetworkInterface::RecvStart() -{ - m_read_enabled.Set(); -} - -void CEXIETHERNET::TAPServerNetworkInterface::RecvStop() -{ - m_read_enabled.Clear(); -} - -bool CEXIETHERNET::TAPServerNetworkInterface::SendFrame(const u8* frame, u32 size) -{ - { - const std::string s = ArrayToString(frame, size, 0x10); - INFO_LOG_FMT(SP1, "SendFrame {}\n{}", size, s); - } - - // On Windows, the data pointer is of type const char*; on other systems it is - // of type const void*. This is the reason for the reinterpret_cast here and - // in the other send/recv calls in this file. - u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; - if (send(m_fd, reinterpret_cast(size_bytes), 2, SEND_FLAGS) != 2) - { - ERROR_LOG_FMT(SP1, "SendFrame(): could not write size field"); - return false; - } - int written_bytes = send(m_fd, reinterpret_cast(frame), size, SEND_FLAGS); - if (u32(written_bytes) != size) - { - ERROR_LOG_FMT(SP1, "SendFrame(): expected to write {} bytes, instead wrote {}", size, - written_bytes); - return false; - } - else - { - m_eth_ref->SendComplete(); - return true; - } -} - -void CEXIETHERNET::TAPServerNetworkInterface::ReadThreadHandler() -{ - while (!m_read_shutdown.IsSet()) - { - fd_set rfds; - FD_ZERO(&rfds); - FD_SET(m_fd, &rfds); - - timeval timeout; - timeout.tv_sec = 0; - timeout.tv_usec = 50000; - if (select(m_fd + 1, &rfds, nullptr, nullptr, &timeout) <= 0) - continue; - - // The tapserver protocol is very simple: there is a 16-bit little-endian - // size field, followed by that many bytes of packet data - switch (m_read_state) - { - case ReadState::Size: - { - u8 size_bytes[2]; - ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(size_bytes), 2, 0); - if (bytes_read == 1) - { - m_read_state = ReadState::SizeHigh; - m_read_packet_bytes_remaining = size_bytes[0]; - } - else if (bytes_read == 2) - { - m_read_packet_bytes_remaining = size_bytes[0] | (size_bytes[1] << 8); - if (m_read_packet_bytes_remaining > BBA_RECV_SIZE) - { - ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", - m_read_packet_bytes_remaining); - m_read_state = ReadState::Skip; - } - else - { - m_read_state = ReadState::Data; - } - } - else - { - ERROR_LOG_FMT(SP1, "Failed to read size field from BBA: {}", Common::LastStrerrorString()); - } - break; - } - case ReadState::SizeHigh: - { - // This handles the annoying case where only one byte of the size field - // was available earlier. - u8 size_high = 0; - ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(&size_high), 1, 0); - if (bytes_read == 1) - { - m_read_packet_bytes_remaining |= (size_high << 8); - if (m_read_packet_bytes_remaining > BBA_RECV_SIZE) - { - ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", - m_read_packet_bytes_remaining); - m_read_state = ReadState::Skip; - } - else - { - m_read_state = ReadState::Data; - } - } - else - { - ERROR_LOG_FMT(SP1, "Failed to read split size field from BBA: {}", - Common::LastStrerrorString()); - } - break; - } - case ReadState::Data: - { - ws_ssize_t bytes_read = - recv(m_fd, reinterpret_cast(m_eth_ref->mRecvBuffer.get() + m_read_packet_offset), - m_read_packet_bytes_remaining, 0); - if (bytes_read <= 0) - { - ERROR_LOG_FMT(SP1, "Failed to read data from BBA: {}", Common::LastStrerrorString()); - } - else - { - m_read_packet_offset += bytes_read; - m_read_packet_bytes_remaining -= bytes_read; - if (m_read_packet_bytes_remaining == 0) - { - m_eth_ref->mRecvBufferLength = m_read_packet_offset; - m_eth_ref->RecvHandlePacket(); - m_read_state = ReadState::Size; - m_read_packet_offset = 0; - } - } - break; - } - case ReadState::Skip: - { - ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(m_eth_ref->mRecvBuffer.get()), - std::min(m_read_packet_bytes_remaining, BBA_RECV_SIZE), 0); - if (bytes_read <= 0) - { - ERROR_LOG_FMT(SP1, "Failed to read data from BBA: {}", Common::LastStrerrorString()); - } - else - { - m_read_packet_bytes_remaining -= bytes_read; - if (m_read_packet_bytes_remaining == 0) - { - m_read_state = ReadState::Size; - m_read_packet_offset = 0; - } - } - break; - } - } - } -} - -} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp new file mode 100644 index 000000000000..f0c0a4ce0bb5 --- /dev/null +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp @@ -0,0 +1,88 @@ +// Copyright 2020 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/HW/EXI/EXI_DeviceEthernet.h" + +#ifdef _WIN32 +#include +#include +#else +#include +#include +#include +#include +#include +#endif + +#include "Common/CommonFuncs.h" +#include "Common/Logging/Log.h" +#include "Common/StringUtil.h" +#include "Core/HW/EXI/EXI_Device.h" + +namespace ExpansionInterface +{ + +CEXIETHERNET::TAPServerNetworkInterface::TAPServerNetworkInterface(CEXIETHERNET* eth_ref, + const std::string& destination) + : NetworkInterface(eth_ref), + m_tapserver_if( + destination, + std::bind(&TAPServerNetworkInterface::HandleReceivedFrame, this, std::placeholders::_1), + BBA_RECV_SIZE) +{ +} + +bool CEXIETHERNET::TAPServerNetworkInterface::Activate() +{ + return m_tapserver_if.Activate(); +} + +void CEXIETHERNET::TAPServerNetworkInterface::Deactivate() +{ + m_tapserver_if.Deactivate(); +} + +bool CEXIETHERNET::TAPServerNetworkInterface::IsActivated() +{ + return m_tapserver_if.IsActivated(); +} + +bool CEXIETHERNET::TAPServerNetworkInterface::RecvInit() +{ + return m_tapserver_if.RecvInit(); +} + +void CEXIETHERNET::TAPServerNetworkInterface::RecvStart() +{ + m_tapserver_if.RecvStart(); +} + +void CEXIETHERNET::TAPServerNetworkInterface::RecvStop() +{ + m_tapserver_if.RecvStop(); +} + +bool CEXIETHERNET::TAPServerNetworkInterface::SendFrame(const u8* frame, u32 size) +{ + bool ret = m_tapserver_if.SendFrame(frame, size); + if (ret) + m_eth_ref->SendComplete(); + return ret; +} + +void CEXIETHERNET::TAPServerNetworkInterface::HandleReceivedFrame(std::string&& data) +{ + if (data.size() > BBA_RECV_SIZE) + { + ERROR_LOG_FMT(SP1, "Received BBA frame of size {}, which is larger than maximum size {}", + data.size(), BBA_RECV_SIZE); + } + else + { + memcpy(m_eth_ref->mRecvBuffer.get(), data.data(), data.size()); + m_eth_ref->mRecvBufferLength = data.size(); + m_eth_ref->RecvHandlePacket(); + } +} + +} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/Modem/TAPServer.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp similarity index 57% rename from Source/Core/Core/HW/EXI/Modem/TAPServer.cpp rename to Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index 9db6e5e76e54..13b03a9349a4 100644 --- a/Source/Core/Core/HW/EXI/Modem/TAPServer.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -1,7 +1,7 @@ // Copyright 2020 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -#include "Core/HW/EXI/EXI_DeviceModem.h" +#include "Core/HW/EXI/EXI_DeviceEthernet.h" #ifdef _WIN32 #include @@ -23,10 +23,9 @@ namespace ExpansionInterface { #ifdef _WIN32 -static constexpr auto pi_close = &closesocket; using ws_ssize_t = int; #else -static constexpr auto pi_close = &close; +#define closesocket close using ws_ssize_t = ssize_t; #endif @@ -36,6 +35,13 @@ using ws_ssize_t = ssize_t; #define SEND_FLAGS 0 #endif +TAPServerConnection::TAPServerConnection(const std::string& destination, + std::function recv_cb, + std::size_t max_frame_size) + : m_destination(destination), m_recv_cb(recv_cb), m_max_frame_size(max_frame_size) +{ +} + static int ConnectToDestination(const std::string& destination) { if (destination.empty()) @@ -45,32 +51,33 @@ static int ConnectToDestination(const std::string& destination) } int ss_size; - struct sockaddr_storage ss; + sockaddr_storage ss; memset(&ss, 0, sizeof(ss)); if (destination[0] != '/') { // IP address or hostname - size_t colon_offset = destination.find(':'); + const std::size_t colon_offset = destination.find(':'); if (colon_offset == std::string::npos) { ERROR_LOG_FMT(SP1, "Destination IP address does not include port\n"); return -1; } - struct sockaddr_in* sin = reinterpret_cast(&ss); + sockaddr_in* sin = reinterpret_cast(&ss); sin->sin_addr.s_addr = htonl(sf::IpAddress(destination.substr(0, colon_offset)).toInteger()); sin->sin_family = AF_INET; - sin->sin_port = htons(stoul(destination.substr(colon_offset + 1))); + std::string port_str = destination.substr(colon_offset + 1); + sin->sin_port = htons(atoi(port_str.c_str())); ss_size = sizeof(*sin); #ifndef _WIN32 } else { // UNIX socket - struct sockaddr_un* sun = reinterpret_cast(&ss); + sockaddr_un* sun = reinterpret_cast(&ss); if (destination.size() + 1 > sizeof(sun->sun_path)) { - ERROR_LOG_FMT(SP1, "Socket path is too long, unable to init BBA\n"); + ERROR_LOG_FMT(SP1, "Socket path is too long; unable to create tapserver connection\n"); return -1; } sun->sun_family = AF_UNIX; @@ -85,10 +92,10 @@ static int ConnectToDestination(const std::string& destination) #endif } - int fd = socket(ss.ss_family, SOCK_STREAM, (ss.ss_family == AF_INET) ? IPPROTO_TCP : 0); + const int fd = socket(ss.ss_family, SOCK_STREAM, (ss.ss_family == AF_INET) ? IPPROTO_TCP : 0); if (fd == -1) { - ERROR_LOG_FMT(SP1, "Couldn't create socket; unable to init BBA\n"); + ERROR_LOG_FMT(SP1, "Couldn't create socket; unable to create tapserver connection\n"); return -1; } @@ -100,109 +107,129 @@ static int ConnectToDestination(const std::string& destination) if (connect(fd, reinterpret_cast(&ss), ss_size) == -1) { - std::string s = Common::LastStrerrorString(); - INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to init BBA\n", s.c_str()); - pi_close(fd); + std::string s = Common::StrNetworkError(); + INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to create tapserver connection\n", s); + closesocket(fd); return -1; } return fd; } -bool CEXIModem::TAPServerNetworkInterface::Activate() +bool TAPServerConnection::Activate() { if (IsActivated()) return true; m_fd = ConnectToDestination(m_destination); if (m_fd < 0) - { return false; - } - INFO_LOG_FMT(SP1, "Modem initialized."); return RecvInit(); } -void CEXIModem::TAPServerNetworkInterface::Deactivate() +void TAPServerConnection::Deactivate() { if (m_fd >= 0) - { - pi_close(m_fd); - } + closesocket(m_fd); m_fd = -1; m_read_enabled.Clear(); m_read_shutdown.Set(); if (m_read_thread.joinable()) - { m_read_thread.join(); - } m_read_shutdown.Clear(); } -bool CEXIModem::TAPServerNetworkInterface::IsActivated() +bool TAPServerConnection::IsActivated() { return (m_fd >= 0); } -bool CEXIModem::TAPServerNetworkInterface::RecvInit() +bool TAPServerConnection::RecvInit() { - m_read_thread = std::thread(&CEXIModem::TAPServerNetworkInterface::ReadThreadHandler, this); + m_read_thread = std::thread(&TAPServerConnection::ReadThreadHandler, this); return true; } -void CEXIModem::TAPServerNetworkInterface::RecvStart() +void TAPServerConnection::RecvStart() { m_read_enabled.Set(); } -void CEXIModem::TAPServerNetworkInterface::RecvStop() +void TAPServerConnection::RecvStop() { m_read_enabled.Clear(); } -bool CEXIModem::TAPServerNetworkInterface::SendFrames() +bool TAPServerConnection::SendAndRemoveAllHDLCFrames(std::string& send_buf) { - while (!m_modem_ref->m_send_buffer.empty()) + while (!send_buf.empty()) { - size_t start_offset = m_modem_ref->m_send_buffer.find(0x7E); + std::size_t start_offset = send_buf.find(0x7E); if (start_offset == std::string::npos) { break; } - size_t end_sentinel_offset = m_modem_ref->m_send_buffer.find(0x7E, start_offset + 1); + std::size_t end_sentinel_offset = send_buf.find(0x7E, start_offset + 1); if (end_sentinel_offset == std::string::npos) { break; } - size_t end_offset = end_sentinel_offset + 1; - size_t size = end_offset - start_offset; + std::size_t end_offset = end_sentinel_offset + 1; + std::size_t size = end_offset - start_offset; - uint8_t size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; - if (send(m_fd, size_bytes, 2, SEND_FLAGS) != 2) + u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; + if (send(m_fd, reinterpret_cast(size_bytes), 2, SEND_FLAGS) != 2) { - ERROR_LOG_FMT(SP1, "SendFrames(): could not write size field"); + ERROR_LOG_FMT(SP1, "SendAndRemoveAllHDLCFrames(): could not write size field"); return false; } - int written_bytes = - send(m_fd, m_modem_ref->m_send_buffer.data() + start_offset, size, SEND_FLAGS); + const int written_bytes = + send(m_fd, send_buf.data() + start_offset, static_cast(size), SEND_FLAGS); if (u32(written_bytes) != size) { - ERROR_LOG_FMT(SP1, "SendFrames(): expected to write {} bytes, instead wrote {}", size, - written_bytes); + ERROR_LOG_FMT(SP1, + "SendAndRemoveAllHDLCFrames(): expected to write {} bytes, instead wrote {}", + size, written_bytes); return false; } else { - m_modem_ref->m_send_buffer = m_modem_ref->m_send_buffer.substr(end_offset); - m_modem_ref->SendComplete(); + send_buf = send_buf.substr(end_offset); } } return true; } -void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() +bool TAPServerConnection::SendFrame(const u8* frame, u32 size) +{ + { + const std::string s = ArrayToString(frame, size, 0x10); + INFO_LOG_FMT(SP1, "SendFrame {}\n{}", size, s); + } + + // On Windows, the data pointer is of type const char*; on other systems it is + // of type const void*. This is the reason for the reinterpret_cast here and + // in the other send/recv calls in this file. + u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; + if (send(m_fd, reinterpret_cast(size_bytes), 2, SEND_FLAGS) != 2) + { + ERROR_LOG_FMT(SP1, "SendFrame(): could not write size field"); + return false; + } + int written_bytes = + send(m_fd, reinterpret_cast(frame), static_cast(size), SEND_FLAGS); + if (u32(written_bytes) != size) + { + ERROR_LOG_FMT(SP1, "SendFrame(): expected to write {} bytes, instead wrote {}", size, + written_bytes); + return false; + } + return true; +} + +void TAPServerConnection::ReadThreadHandler() { enum class ReadState { @@ -213,8 +240,8 @@ void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() }; ReadState read_state = ReadState::SIZE; - size_t frame_bytes_received = 0; - size_t frame_bytes_expected = 0; + std::size_t frame_bytes_received = 0; + std::size_t frame_bytes_expected = 0; std::string frame_data; while (!m_read_shutdown.IsSet()) @@ -246,7 +273,7 @@ void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() { frame_bytes_expected = size_bytes[0] | (size_bytes[1] << 8); frame_data.resize(frame_bytes_expected, '\0'); - if (frame_bytes_expected > MODEM_RECV_SIZE) + if (frame_bytes_expected > m_max_frame_size) { ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", frame_bytes_expected); read_state = ReadState::SKIP; @@ -259,7 +286,7 @@ void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() else { ERROR_LOG_FMT(SP1, "Failed to read size field from destination: {}", - Common::LastStrerrorString()); + Common::StrNetworkError()); } break; } @@ -273,7 +300,7 @@ void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() { frame_bytes_expected |= (size_high << 8); frame_data.resize(frame_bytes_expected, '\0'); - if (frame_bytes_expected > MODEM_RECV_SIZE) + if (frame_bytes_expected > m_max_frame_size) { ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", frame_bytes_expected); read_state = ReadState::SKIP; @@ -286,19 +313,19 @@ void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() else { ERROR_LOG_FMT(SP1, "Failed to read split size field from destination: {}", - Common::LastStrerrorString()); + Common::StrNetworkError()); } break; } case ReadState::DATA: case ReadState::SKIP: { - ws_ssize_t bytes_read = recv(m_fd, frame_data.data() + frame_bytes_received, - frame_data.size() - frame_bytes_received, 0); + ws_ssize_t bytes_to_read = frame_data.size() - frame_bytes_received; + ws_ssize_t bytes_read = + recv(m_fd, frame_data.data() + frame_bytes_received, bytes_to_read, 0); if (bytes_read <= 0) { - ERROR_LOG_FMT(SP1, "Failed to read data from destination: {}", - Common::LastStrerrorString()); + ERROR_LOG_FMT(SP1, "Failed to read data from destination: {}", Common::StrNetworkError()); } else { @@ -307,7 +334,7 @@ void CEXIModem::TAPServerNetworkInterface::ReadThreadHandler() { if (read_state == ReadState::DATA) { - m_modem_ref->AddToReceiveBuffer(std::move(frame_data)); + m_recv_cb(std::move(frame_data)); } frame_data.clear(); frame_bytes_received = 0; diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h new file mode 100644 index 000000000000..ae10fc93a838 --- /dev/null +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h @@ -0,0 +1,66 @@ +// Copyright 2020 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#ifdef _WIN32 +#include +#include +#else +#include +#include +#include +#include +#include +#endif + +#include +#include + +#include "Common/CommonFuncs.h" +#include "Common/Logging/Log.h" +#include "Common/SocketContext.h" +#include "Common/StringUtil.h" + +namespace ExpansionInterface +{ + +class TAPServerConnection +{ +public: + TAPServerConnection(const std::string& destination, std::function recv_cb, + std::size_t max_frame_size); + + bool Activate(); + void Deactivate(); + bool IsActivated(); + bool RecvInit(); + void RecvStart(); + void RecvStop(); + bool SendAndRemoveAllHDLCFrames(std::string& send_buf); + bool SendFrame(const u8* frame, u32 size); + +private: + enum class ReadState + { + Size, + SizeHigh, + Data, + Skip, + }; + + std::string m_destination; + std::function m_recv_cb; + std::size_t m_max_frame_size; + Common::SocketContext m_socket_context; + + int m_fd = -1; + std::thread m_read_thread; + Common::Flag m_read_enabled; + Common::Flag m_read_shutdown; + + bool StartReadThread(); + void ReadThreadHandler(); +}; + +} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h index 067f5d59c03c..465f050521e1 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h +++ b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.h @@ -19,6 +19,7 @@ #include "Common/Network.h" #include "Common/SocketContext.h" #include "Core/HW/EXI/BBA/BuiltIn.h" +#include "Core/HW/EXI/BBA/TAPServerConnection.h" #include "Core/HW/EXI/EXI_Device.h" class PointerWrap; @@ -366,10 +367,7 @@ class CEXIETHERNET : public IEXIDevice class TAPServerNetworkInterface : public NetworkInterface { public: - explicit TAPServerNetworkInterface(CEXIETHERNET* eth_ref, const std::string& destination) - : NetworkInterface(eth_ref), m_destination(destination) - { - } + TAPServerNetworkInterface(CEXIETHERNET* eth_ref, const std::string& destination); public: bool Activate() override; @@ -381,26 +379,9 @@ class CEXIETHERNET : public IEXIDevice void RecvStop() override; private: - enum class ReadState - { - Size, - SizeHigh, - Data, - Skip, - }; - - std::string m_destination; - Common::SocketContext m_socket_context; - - int m_fd = -1; - ReadState m_read_state = ReadState::Size; - u16 m_read_packet_offset; - u16 m_read_packet_bytes_remaining; - std::thread m_read_thread; - Common::Flag m_read_enabled; - Common::Flag m_read_shutdown; + TAPServerConnection m_tapserver_if; - void ReadThreadHandler(); + void HandleReceivedFrame(std::string&& data); }; class XLinkNetworkInterface : public NetworkInterface diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp index 867044ec893a..e488570a426f 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -1,4 +1,4 @@ -// Copyright 2008 Dolphin Emulator Project +// Copyright 2024 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "Core/HW/EXI/EXI_DeviceModem.h" @@ -37,10 +37,6 @@ CEXIModem::CEXIModem(Core::System& system, ModemDeviceType type) : IEXIDevice(sy break; } - for (size_t z = 0; z < m_regs.size(); z++) - { - m_regs[z] = 0; - } m_regs[Register::DEVICE_TYPE] = 0x02; m_regs[Register::INTERRUPT_MASK] = 0x02; } @@ -84,15 +80,19 @@ void CEXIModem::ImmWrite(u32 data, u32 size) } else if (IsModemTransfer(m_transfer_descriptor)) { // Write AT command buffer or packet send buffer - u32 be_data = htonl(data); + const u32 be_data = htonl(data); HandleWriteModemTransfer(&be_data, size); } else { // Write device register - uint8_t reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); + u8 reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); bool should_update_interrupts = false; for (; size; size--) { + if (reg_num >= m_regs.size()) + { + break; + } should_update_interrupts |= ((reg_num == Register::INTERRUPT_MASK) || (reg_num == Register::PENDING_INTERRUPT_MASK)); m_regs[reg_num++] = (data >> 24); @@ -154,14 +154,18 @@ u32 CEXIModem::ImmRead(u32 size) } else { // Read device register - uint8_t reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); + u8 reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); if (reg_num == 0) { return 0x02020000; // Device ID (modem) } u32 ret = 0; - for (size_t z = 0; z < size; z++) + for (u8 z = 0; z < size; z++) { + if (reg_num + z >= m_regs.size()) + { + break; + } ret |= (m_regs[reg_num + z] << ((3 - z) * 8)); } m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; @@ -197,28 +201,31 @@ void CEXIModem::DMARead(u32 addr, u32 size) void CEXIModem::HandleReadModemTransfer(void* data, u32 size) { - u16 bytes_requested = GetModemTransferSize(m_transfer_descriptor); + const u16 bytes_requested = GetModemTransferSize(m_transfer_descriptor); if (size > bytes_requested) { ERROR_LOG_FMT(SP1, "More bytes requested ({}) than originally requested for transfer {:x}", size, m_transfer_descriptor); size = bytes_requested; } - u16 bytes_requested_after_read = bytes_requested - size; + const u16 bytes_requested_after_read = bytes_requested - size; if ((m_transfer_descriptor & 0x0F000000) == 0x03000000) - { // AT command buffer - memcpy(data, m_at_reply_data.data(), std::min(size, m_at_reply_data.size())); - m_at_reply_data = m_at_reply_data.substr(size); - m_regs[Register::AT_REPLY_SIZE] = m_at_reply_data.size(); + { + // AT command buffer + const std::size_t bytes_to_copy = std::min(size, m_at_reply_data.size()); + memcpy(data, m_at_reply_data.data(), bytes_to_copy); + m_at_reply_data = m_at_reply_data.substr(bytes_to_copy); + m_regs[Register::AT_REPLY_SIZE] = static_cast(m_at_reply_data.size()); SetInterruptFlag(Interrupt::AT_REPLY_DATA_AVAILABLE, !m_at_reply_data.empty(), true); } else if ((m_transfer_descriptor & 0x0F000000) == 0x08000000) - { // Packet receive buffer + { + // Packet receive buffer std::lock_guard g(m_receive_buffer_lock); - size_t bytes_to_copy = std::min(size, m_receive_buffer.size()); + const std::size_t bytes_to_copy = std::min(size, m_receive_buffer.size()); memcpy(data, m_receive_buffer.data(), bytes_to_copy); - m_receive_buffer = m_receive_buffer.substr(size); + m_receive_buffer = m_receive_buffer.substr(bytes_to_copy); OnReceiveBufferSizeChangedLocked(true); } else @@ -234,20 +241,20 @@ void CEXIModem::HandleReadModemTransfer(void* data, u32 size) void CEXIModem::HandleWriteModemTransfer(const void* data, u32 size) { - u16 bytes_expected = GetModemTransferSize(m_transfer_descriptor); + const u16 bytes_expected = GetModemTransferSize(m_transfer_descriptor); if (size > bytes_expected) { ERROR_LOG_FMT(SP1, "More bytes received ({}) than expected for transfer {:x}", size, m_transfer_descriptor); return; } - u16 bytes_expected_after_write = bytes_expected - size; + const u16 bytes_expected_after_write = bytes_expected - size; if ((m_transfer_descriptor & 0x0F000000) == 0x03000000) { // AT command buffer m_at_command_data.append(reinterpret_cast(data), size); RunAllPendingATCommands(); - m_regs[Register::AT_COMMAND_SIZE] = m_at_command_data.size(); + m_regs[Register::AT_COMMAND_SIZE] = static_cast(m_at_command_data.size()); } else if ((m_transfer_descriptor & 0x0F000000) == 0x08000000) { // Packet send buffer @@ -257,7 +264,7 @@ void CEXIModem::HandleWriteModemTransfer(const void* data, u32 size) // from the emulated program's perspective, so we always tell it the send // FIFO is empty. SetInterruptFlag(Interrupt::SEND_BUFFER_BELOW_THRESHOLD, true, true); - m_network_interface->SendFrames(); + m_network_interface->SendAndRemoveAllHDLCFrames(m_send_buffer); } else { @@ -289,7 +296,7 @@ u16 CEXIModem::GetRxThreshold() const return (m_regs[Register::RX_THRESHOLD_HIGH] << 8) | m_regs[Register::RX_THRESHOLD_LOW]; } -void CEXIModem::SetInterruptFlag(uint8_t what, bool enabled, bool from_cpu) +void CEXIModem::SetInterruptFlag(u8 what, bool enabled, bool from_cpu) { if (enabled) { @@ -306,7 +313,7 @@ void CEXIModem::SetInterruptFlag(uint8_t what, bool enabled, bool from_cpu) void CEXIModem::OnReceiveBufferSizeChangedLocked(bool from_cpu) { // The caller is expected to hold m_receive_buffer_lock when calling this. - uint16_t bytes_available = std::min(m_receive_buffer.size(), 0x200); + const u16 bytes_available = std::min(m_receive_buffer.size(), 0x200); m_regs[Register::BYTES_AVAILABLE_HIGH] = (bytes_available >> 8) & 0xFF; m_regs[Register::BYTES_AVAILABLE_LOW] = bytes_available & 0xFF; SetInterruptFlag(Interrupt::RECEIVE_BUFFER_ABOVE_THRESHOLD, @@ -343,25 +350,29 @@ void CEXIModem::AddToReceiveBuffer(std::string&& data) void CEXIModem::AddATReply(const std::string& data) { m_at_reply_data += data; - m_regs[Register::AT_REPLY_SIZE] = m_at_reply_data.size(); - SetInterruptFlag(Interrupt::AT_REPLY_DATA_AVAILABLE, !m_at_reply_data.empty(), false); + m_regs[Register::AT_REPLY_SIZE] = static_cast(m_at_reply_data.size()); + SetInterruptFlag(Interrupt::AT_REPLY_DATA_AVAILABLE, !m_at_reply_data.empty(), true); } void CEXIModem::RunAllPendingATCommands() { - for (size_t newline_pos = m_at_command_data.find_first_of("\r\n"); + for (std::size_t newline_pos = m_at_command_data.find_first_of("\r\n"); newline_pos != std::string::npos; newline_pos = m_at_command_data.find_first_of("\r\n")) { std::string command = m_at_command_data.substr(0, newline_pos); m_at_command_data = m_at_command_data.substr(newline_pos + 1); - if (command == "ATZ") - { // Reset + INFO_LOG_FMT(SP1, "Received AT command: {}", command); + + if (command.substr(0, 3) == "ATZ") + { + // Reset m_network_interface->Deactivate(); AddATReply("OK\r"); } else if (command.substr(0, 3) == "ATD") - { // Dial + { + // Dial if (m_network_interface->Activate()) { AddATReply("OK\rCONNECT 115200\r"); // Maximum baud rate @@ -373,7 +384,9 @@ void CEXIModem::RunAllPendingATCommands() } else { - INFO_LOG_FMT(SP1, "Unhandled AT command: {}", command); + // PSO sends several other AT commands during modem setup, but in our + // implementation we don't actually have to do anything in response to + // them, so we just pretend we did. AddATReply("OK\r"); } } diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.h b/Source/Core/Core/HW/EXI/EXI_DeviceModem.h index d6ba896667e7..7d008f869dd1 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.h +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.h @@ -1,24 +1,15 @@ -// Copyright 2008 Dolphin Emulator Project +// Copyright 2024 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once -#include -#include #include #include #include -#ifdef _WIN32 -#include -#endif - -#include - #include "Common/Flag.h" #include "Common/Network.h" -#include "Common/SocketContext.h" -#include "Core/HW/EXI/BBA/BuiltIn.h" +#include "Core/HW/EXI/BBA/TAPServerConnection.h" #include "Core/HW/EXI/EXI_Device.h" class PointerWrap; @@ -86,7 +77,7 @@ class CEXIModem : public IEXIDevice u16 GetTxThreshold() const; u16 GetRxThreshold() const; - void SetInterruptFlag(uint8_t what, bool enabled, bool from_cpu); + void SetInterruptFlag(u8 what, bool enabled, bool from_cpu); void HandleReadModemTransfer(void* data, u32 size); void HandleWriteModemTransfer(const void* data, u32 size); void OnReceiveBufferSizeChangedLocked(bool from_cpu); @@ -97,19 +88,19 @@ class CEXIModem : public IEXIDevice static inline bool TransferIsResetCommand(u32 transfer_descriptor) { - return (transfer_descriptor == 0x80000000); + return transfer_descriptor == 0x80000000; } static inline bool IsWriteTransfer(u32 transfer_descriptor) { - return (transfer_descriptor & 0x40000000); + return transfer_descriptor & 0x40000000; } static inline bool IsModemTransfer(u32 transfer_descriptor) { - return (transfer_descriptor & 0x20000000); + return transfer_descriptor & 0x20000000; } static inline u16 GetModemTransferSize(u32 transfer_descriptor) { - return ((transfer_descriptor >> 8) & 0xFFFF); + return (transfer_descriptor >> 8) & 0xFFFF; } static inline u32 SetModemTransferSize(u32 transfer_descriptor, u16 new_size) { @@ -126,7 +117,7 @@ class CEXIModem : public IEXIDevice virtual bool Activate() { return false; } virtual void Deactivate() {} virtual bool IsActivated() { return false; } - virtual bool SendFrames() { return false; } + virtual bool SendAndRemoveAllHDLCFrames(std::string&) { return false; } virtual bool RecvInit() { return false; } virtual void RecvStart() {} virtual void RecvStop() {} @@ -137,30 +128,21 @@ class CEXIModem : public IEXIDevice class TAPServerNetworkInterface : public NetworkInterface { public: - explicit TAPServerNetworkInterface(CEXIModem* modem_ref, const std::string& destination) - : NetworkInterface(modem_ref), m_destination(destination) - { - } + TAPServerNetworkInterface(CEXIModem* modem_ref, const std::string& destination); public: - bool Activate() override; - void Deactivate() override; - bool IsActivated() override; - bool SendFrames() override; - bool RecvInit() override; - void RecvStart() override; - void RecvStop() override; + virtual bool Activate() override; + virtual void Deactivate() override; + virtual bool IsActivated() override; + virtual bool SendAndRemoveAllHDLCFrames(std::string& send_buffer) override; + virtual bool RecvInit() override; + virtual void RecvStart() override; + virtual void RecvStop() override; private: - std::string m_destination; - Common::SocketContext m_socket_context; - - int m_fd = -1; - std::thread m_read_thread; - Common::Flag m_read_enabled; - Common::Flag m_read_shutdown; + TAPServerConnection m_tapserver_if; - void ReadThreadHandler(); + void HandleReceivedFrame(std::string&& data); }; std::unique_ptr m_network_interface; @@ -174,6 +156,6 @@ class CEXIModem : public IEXIDevice std::string m_send_buffer; std::mutex m_receive_buffer_lock; std::string m_receive_buffer; - std::array m_regs; + std::array m_regs{}; }; } // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp b/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp new file mode 100644 index 000000000000..4718c3485212 --- /dev/null +++ b/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp @@ -0,0 +1,79 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/HW/EXI/EXI_DeviceModem.h" + +#ifdef _WIN32 +#include +#include +#else +#include +#include +#include +#include +#include +#endif + +#include "Common/CommonFuncs.h" +#include "Common/Logging/Log.h" +#include "Common/StringUtil.h" +#include "Core/HW/EXI/EXI_Device.h" + +namespace ExpansionInterface +{ + +CEXIModem::TAPServerNetworkInterface::TAPServerNetworkInterface(CEXIModem* modem_ref, + const std::string& destination) + : NetworkInterface(modem_ref), + m_tapserver_if( + destination, + std::bind(&TAPServerNetworkInterface::HandleReceivedFrame, this, std::placeholders::_1), + MODEM_RECV_SIZE) +{ +} + +bool CEXIModem::TAPServerNetworkInterface::Activate() +{ + return m_tapserver_if.Activate(); +} + +void CEXIModem::TAPServerNetworkInterface::Deactivate() +{ + m_tapserver_if.Deactivate(); +} + +bool CEXIModem::TAPServerNetworkInterface::IsActivated() +{ + return m_tapserver_if.IsActivated(); +} + +bool CEXIModem::TAPServerNetworkInterface::SendAndRemoveAllHDLCFrames(std::string& send_buffer) +{ + std::size_t orig_size = send_buffer.size(); + bool send_succeeded = m_tapserver_if.SendAndRemoveAllHDLCFrames(send_buffer); + if (send_succeeded && (send_buffer.size() < orig_size)) + m_modem_ref->SendComplete(); + return send_succeeded; +} + +bool CEXIModem::TAPServerNetworkInterface::RecvInit() +{ + return m_tapserver_if.RecvInit(); +} + +void CEXIModem::TAPServerNetworkInterface::RecvStart() +{ + m_tapserver_if.RecvStart(); +} + +void CEXIModem::TAPServerNetworkInterface::RecvStop() +{ + m_tapserver_if.RecvStop(); +} + +void CEXIModem::TAPServerNetworkInterface::HandleReceivedFrame(std::string&& data) +{ + m_modem_ref->AddToReceiveBuffer(std::move(data)); +} + +} // namespace ExpansionInterface diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 72c2f0ba1d41..5622bef02869 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -938,9 +938,10 @@ - + + - + From 12a7e17a41cdd9c943e39c669251c763648826bc Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 28 Jan 2024 20:59:39 -0800 Subject: [PATCH 104/223] fix warnings in windows build --- Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp | 2 +- Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp | 6 +++--- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp index f0c0a4ce0bb5..89d8816910f5 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp @@ -80,7 +80,7 @@ void CEXIETHERNET::TAPServerNetworkInterface::HandleReceivedFrame(std::string&& else { memcpy(m_eth_ref->mRecvBuffer.get(), data.data(), data.size()); - m_eth_ref->mRecvBufferLength = data.size(); + m_eth_ref->mRecvBufferLength = static_cast(data.size()); m_eth_ref->RecvHandlePacket(); } } diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index 13b03a9349a4..864ef55dae82 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -320,9 +320,9 @@ void TAPServerConnection::ReadThreadHandler() case ReadState::DATA: case ReadState::SKIP: { - ws_ssize_t bytes_to_read = frame_data.size() - frame_bytes_received; - ws_ssize_t bytes_read = - recv(m_fd, frame_data.data() + frame_bytes_received, bytes_to_read, 0); + const std::size_t bytes_to_read = frame_data.size() - frame_bytes_received; + ws_ssize_t bytes_read = recv(m_fd, frame_data.data() + frame_bytes_received, + static_cast(bytes_to_read), 0); if (bytes_read <= 0) { ERROR_LOG_FMT(SP1, "Failed to read data from destination: {}", Common::StrNetworkError()); diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp index e488570a426f..3efabc3d7a79 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -313,7 +313,8 @@ void CEXIModem::SetInterruptFlag(u8 what, bool enabled, bool from_cpu) void CEXIModem::OnReceiveBufferSizeChangedLocked(bool from_cpu) { // The caller is expected to hold m_receive_buffer_lock when calling this. - const u16 bytes_available = std::min(m_receive_buffer.size(), 0x200); + const u16 bytes_available = + static_cast(std::min(m_receive_buffer.size(), 0x200)); m_regs[Register::BYTES_AVAILABLE_HIGH] = (bytes_available >> 8) & 0xFF; m_regs[Register::BYTES_AVAILABLE_LOW] = bytes_available & 0xFF; SetInterruptFlag(Interrupt::RECEIVE_BUFFER_ABOVE_THRESHOLD, From 9d0d2f0a40c9507289e94fa8cbebb0a7d0c68251 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Wed, 7 Feb 2024 20:42:09 -0800 Subject: [PATCH 105/223] handle ATH0 command --- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp index 3efabc3d7a79..925354c82897 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -365,9 +365,9 @@ void CEXIModem::RunAllPendingATCommands() INFO_LOG_FMT(SP1, "Received AT command: {}", command); - if (command.substr(0, 3) == "ATZ") + if (command.substr(0, 3) == "ATZ" || command == "ATH0") { - // Reset + // Reset (ATZ) or hang up (ATH0) m_network_interface->Deactivate(); AddATReply("OK\r"); } From 7775ea325f1abaf4eae0c3a129c18001783428a1 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Wed, 7 Feb 2024 20:50:59 -0800 Subject: [PATCH 106/223] close modem socket after joining read thread --- Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index 864ef55dae82..4cae9255dadb 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -130,15 +130,15 @@ bool TAPServerConnection::Activate() void TAPServerConnection::Deactivate() { - if (m_fd >= 0) - closesocket(m_fd); - m_fd = -1; - m_read_enabled.Clear(); m_read_shutdown.Set(); if (m_read_thread.joinable()) m_read_thread.join(); m_read_shutdown.Clear(); + + if (m_fd >= 0) + closesocket(m_fd); + m_fd = -1; } bool TAPServerConnection::IsActivated() From 5d8a01cba7731cd979b18c4773814730af16fca3 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 19 Feb 2024 22:08:42 -0800 Subject: [PATCH 107/223] respond to further review feedback --- Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp | 27 ++--- .../Core/HW/EXI/BBA/TAPServerConnection.cpp | 113 +++++++++--------- .../Core/HW/EXI/BBA/TAPServerConnection.h | 28 ++--- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 18 ++- Source/Core/Core/HW/EXI/EXI_DeviceModem.h | 19 ++- .../Core/Core/HW/EXI/Modem/TAPServerModem.cpp | 22 +--- .../BroadbandAdapterSettingsDialog.cpp | 24 ++-- 7 files changed, 110 insertions(+), 141 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp index 89d8816910f5..badbbf1ca0f5 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerBBA.cpp @@ -3,21 +3,9 @@ #include "Core/HW/EXI/EXI_DeviceEthernet.h" -#ifdef _WIN32 -#include -#include -#else -#include -#include -#include -#include -#include -#endif +#include -#include "Common/CommonFuncs.h" #include "Common/Logging/Log.h" -#include "Common/StringUtil.h" -#include "Core/HW/EXI/EXI_Device.h" namespace ExpansionInterface { @@ -64,7 +52,7 @@ void CEXIETHERNET::TAPServerNetworkInterface::RecvStop() bool CEXIETHERNET::TAPServerNetworkInterface::SendFrame(const u8* frame, u32 size) { - bool ret = m_tapserver_if.SendFrame(frame, size); + const bool ret = m_tapserver_if.SendFrame(frame, size); if (ret) m_eth_ref->SendComplete(); return ret; @@ -76,13 +64,12 @@ void CEXIETHERNET::TAPServerNetworkInterface::HandleReceivedFrame(std::string&& { ERROR_LOG_FMT(SP1, "Received BBA frame of size {}, which is larger than maximum size {}", data.size(), BBA_RECV_SIZE); + return; } - else - { - memcpy(m_eth_ref->mRecvBuffer.get(), data.data(), data.size()); - m_eth_ref->mRecvBufferLength = static_cast(data.size()); - m_eth_ref->RecvHandlePacket(); - } + + std::memcpy(m_eth_ref->mRecvBuffer.get(), data.data(), data.size()); + m_eth_ref->mRecvBufferLength = static_cast(data.size()); + m_eth_ref->RecvHandlePacket(); } } // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index 4cae9255dadb..077b306db4fc 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -14,6 +14,9 @@ #include #endif +#include +#include + #include "Common/CommonFuncs.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" @@ -52,7 +55,7 @@ static int ConnectToDestination(const std::string& destination) int ss_size; sockaddr_storage ss; - memset(&ss, 0, sizeof(ss)); + std::memset(&ss, 0, sizeof(ss)); if (destination[0] != '/') { // IP address or hostname @@ -64,10 +67,22 @@ static int ConnectToDestination(const std::string& destination) } sockaddr_in* sin = reinterpret_cast(&ss); - sin->sin_addr.s_addr = htonl(sf::IpAddress(destination.substr(0, colon_offset)).toInteger()); + const sf::IpAddress dest_ip(destination.substr(0, colon_offset)); + if (dest_ip == sf::IpAddress::None || dest_ip == sf::IpAddress::Any) + { + ERROR_LOG_FMT(SP1, "Destination IP address is not valid\n"); + return -1; + } + sin->sin_addr.s_addr = htonl(dest_ip.toInteger()); sin->sin_family = AF_INET; - std::string port_str = destination.substr(colon_offset + 1); - sin->sin_port = htons(atoi(port_str.c_str())); + const std::string port_str = destination.substr(colon_offset + 1); + const int dest_port = std::atoi(port_str.c_str()); + if (dest_port < 1 || dest_port > 65535) + { + ERROR_LOG_FMT(SP1, "Destination port is not valid\n"); + return -1; + } + sin->sin_port = htons(dest_port); ss_size = sizeof(*sin); #ifndef _WIN32 } @@ -81,7 +96,7 @@ static int ConnectToDestination(const std::string& destination) return -1; } sun->sun_family = AF_UNIX; - strcpy(sun->sun_path, destination.c_str()); + std::strcpy(sun->sun_path, destination.c_str()); ss_size = sizeof(*sun); #else } @@ -107,8 +122,8 @@ static int ConnectToDestination(const std::string& destination) if (connect(fd, reinterpret_cast(&ss), ss_size) == -1) { - std::string s = Common::StrNetworkError(); - INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to create tapserver connection\n", s); + INFO_LOG_FMT(SP1, "Couldn't connect socket ({}), unable to create tapserver connection\n", + Common::StrNetworkError()); closesocket(fd); return -1; } @@ -162,31 +177,31 @@ void TAPServerConnection::RecvStop() m_read_enabled.Clear(); } -bool TAPServerConnection::SendAndRemoveAllHDLCFrames(std::string& send_buf) +bool TAPServerConnection::SendAndRemoveAllHDLCFrames(std::string* send_buf) { - while (!send_buf.empty()) + while (!send_buf->empty()) { - std::size_t start_offset = send_buf.find(0x7E); + const std::size_t start_offset = send_buf->find(0x7E); if (start_offset == std::string::npos) { break; } - std::size_t end_sentinel_offset = send_buf.find(0x7E, start_offset + 1); + const std::size_t end_sentinel_offset = send_buf->find(0x7E, start_offset + 1); if (end_sentinel_offset == std::string::npos) { break; } - std::size_t end_offset = end_sentinel_offset + 1; - std::size_t size = end_offset - start_offset; + const std::size_t end_offset = end_sentinel_offset + 1; + const std::size_t size = end_offset - start_offset; - u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; + const u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; if (send(m_fd, reinterpret_cast(size_bytes), 2, SEND_FLAGS) != 2) { ERROR_LOG_FMT(SP1, "SendAndRemoveAllHDLCFrames(): could not write size field"); return false; } const int written_bytes = - send(m_fd, send_buf.data() + start_offset, static_cast(size), SEND_FLAGS); + send(m_fd, send_buf->data() + start_offset, static_cast(size), SEND_FLAGS); if (u32(written_bytes) != size) { ERROR_LOG_FMT(SP1, @@ -194,31 +209,25 @@ bool TAPServerConnection::SendAndRemoveAllHDLCFrames(std::string& send_buf) size, written_bytes); return false; } - else - { - send_buf = send_buf.substr(end_offset); - } + *send_buf = send_buf->substr(end_offset); } return true; } bool TAPServerConnection::SendFrame(const u8* frame, u32 size) { - { - const std::string s = ArrayToString(frame, size, 0x10); - INFO_LOG_FMT(SP1, "SendFrame {}\n{}", size, s); - } + INFO_LOG_FMT(SP1, "SendFrame {}\n{}", size, ArrayToString(frame, size, 0x10)); // On Windows, the data pointer is of type const char*; on other systems it is // of type const void*. This is the reason for the reinterpret_cast here and // in the other send/recv calls in this file. - u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; + const u8 size_bytes[2] = {static_cast(size), static_cast(size >> 8)}; if (send(m_fd, reinterpret_cast(size_bytes), 2, SEND_FLAGS) != 2) { ERROR_LOG_FMT(SP1, "SendFrame(): could not write size field"); return false; } - int written_bytes = + const int written_bytes = send(m_fd, reinterpret_cast(frame), static_cast(size), SEND_FLAGS); if (u32(written_bytes) != size) { @@ -263,7 +272,7 @@ void TAPServerConnection::ReadThreadHandler() case ReadState::SIZE: { u8 size_bytes[2]; - ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(size_bytes), 2, 0); + const ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(size_bytes), 2, 0); if (bytes_read == 1) { read_state = ReadState::SIZE_HIGH; @@ -295,25 +304,23 @@ void TAPServerConnection::ReadThreadHandler() // This handles the annoying case where only one byte of the size field // was available earlier. u8 size_high = 0; - ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(&size_high), 1, 0); - if (bytes_read == 1) + const ws_ssize_t bytes_read = recv(m_fd, reinterpret_cast(&size_high), 1, 0); + if (bytes_read != 1) { - frame_bytes_expected |= (size_high << 8); - frame_data.resize(frame_bytes_expected, '\0'); - if (frame_bytes_expected > m_max_frame_size) - { - ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", frame_bytes_expected); - read_state = ReadState::SKIP; - } - else - { - read_state = ReadState::DATA; - } + ERROR_LOG_FMT(SP1, "Failed to read split size field from destination: {}", + Common::StrNetworkError()); + break; + } + frame_bytes_expected |= (size_high << 8); + frame_data.resize(frame_bytes_expected, '\0'); + if (frame_bytes_expected > m_max_frame_size) + { + ERROR_LOG_FMT(SP1, "Packet is too large ({} bytes); dropping it", frame_bytes_expected); + read_state = ReadState::SKIP; } else { - ERROR_LOG_FMT(SP1, "Failed to read split size field from destination: {}", - Common::StrNetworkError()); + read_state = ReadState::DATA; } break; } @@ -321,26 +328,24 @@ void TAPServerConnection::ReadThreadHandler() case ReadState::SKIP: { const std::size_t bytes_to_read = frame_data.size() - frame_bytes_received; - ws_ssize_t bytes_read = recv(m_fd, frame_data.data() + frame_bytes_received, - static_cast(bytes_to_read), 0); + const ws_ssize_t bytes_read = recv(m_fd, frame_data.data() + frame_bytes_received, + static_cast(bytes_to_read), 0); if (bytes_read <= 0) { ERROR_LOG_FMT(SP1, "Failed to read data from destination: {}", Common::StrNetworkError()); + break; } - else + frame_bytes_received += bytes_read; + if (frame_bytes_received == frame_bytes_expected) { - frame_bytes_received += bytes_read; - if (frame_bytes_received == frame_bytes_expected) + if (read_state == ReadState::DATA) { - if (read_state == ReadState::DATA) - { - m_recv_cb(std::move(frame_data)); - } - frame_data.clear(); - frame_bytes_received = 0; - frame_bytes_expected = 0; - read_state = ReadState::SIZE; + m_recv_cb(std::move(frame_data)); } + frame_data.clear(); + frame_bytes_received = 0; + frame_bytes_expected = 0; + read_state = ReadState::SIZE; } break; } diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h index ae10fc93a838..f622c312c935 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h @@ -3,24 +3,12 @@ #pragma once -#ifdef _WIN32 -#include -#include -#else -#include -#include -#include -#include -#include -#endif - #include +#include #include -#include "Common/CommonFuncs.h" -#include "Common/Logging/Log.h" +#include "Common/Flag.h" #include "Common/SocketContext.h" -#include "Common/StringUtil.h" namespace ExpansionInterface { @@ -28,7 +16,9 @@ namespace ExpansionInterface class TAPServerConnection { public: - TAPServerConnection(const std::string& destination, std::function recv_cb, + using RecvCallback = std::function; + + TAPServerConnection(const std::string& destination, RecvCallback recv_cb, std::size_t max_frame_size); bool Activate(); @@ -37,7 +27,7 @@ class TAPServerConnection bool RecvInit(); void RecvStart(); void RecvStop(); - bool SendAndRemoveAllHDLCFrames(std::string& send_buf); + bool SendAndRemoveAllHDLCFrames(std::string* send_buf); bool SendFrame(const u8* frame, u32 size); private: @@ -49,9 +39,9 @@ class TAPServerConnection Skip, }; - std::string m_destination; - std::function m_recv_cb; - std::size_t m_max_frame_size; + const std::string m_destination; + const std::function m_recv_cb; + const std::size_t m_max_frame_size; Common::SocketContext m_socket_context; int m_fd = -1; diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp index 925354c82897..02f2e33613cb 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -6,6 +6,7 @@ #include #include +#include #include #include #include @@ -87,12 +88,8 @@ void CEXIModem::ImmWrite(u32 data, u32 size) { // Write device register u8 reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); bool should_update_interrupts = false; - for (; size; size--) + for (; size && reg_num < m_regs.size(); size--) { - if (reg_num >= m_regs.size()) - { - break; - } should_update_interrupts |= ((reg_num == Register::INTERRUPT_MASK) || (reg_num == Register::PENDING_INTERRUPT_MASK)); m_regs[reg_num++] = (data >> 24); @@ -153,8 +150,9 @@ u32 CEXIModem::ImmRead(u32 size) return ntohl(be_data); } else - { // Read device register - u8 reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); + { + // Read device register + const u8 reg_num = static_cast((m_transfer_descriptor >> 24) & 0x1F); if (reg_num == 0) { return 0x02020000; // Device ID (modem) @@ -214,7 +212,7 @@ void CEXIModem::HandleReadModemTransfer(void* data, u32 size) { // AT command buffer const std::size_t bytes_to_copy = std::min(size, m_at_reply_data.size()); - memcpy(data, m_at_reply_data.data(), bytes_to_copy); + std::memcpy(data, m_at_reply_data.data(), bytes_to_copy); m_at_reply_data = m_at_reply_data.substr(bytes_to_copy); m_regs[Register::AT_REPLY_SIZE] = static_cast(m_at_reply_data.size()); SetInterruptFlag(Interrupt::AT_REPLY_DATA_AVAILABLE, !m_at_reply_data.empty(), true); @@ -224,7 +222,7 @@ void CEXIModem::HandleReadModemTransfer(void* data, u32 size) // Packet receive buffer std::lock_guard g(m_receive_buffer_lock); const std::size_t bytes_to_copy = std::min(size, m_receive_buffer.size()); - memcpy(data, m_receive_buffer.data(), bytes_to_copy); + std::memcpy(data, m_receive_buffer.data(), bytes_to_copy); m_receive_buffer = m_receive_buffer.substr(bytes_to_copy); OnReceiveBufferSizeChangedLocked(true); } @@ -264,7 +262,7 @@ void CEXIModem::HandleWriteModemTransfer(const void* data, u32 size) // from the emulated program's perspective, so we always tell it the send // FIFO is empty. SetInterruptFlag(Interrupt::SEND_BUFFER_BELOW_THRESHOLD, true, true); - m_network_interface->SendAndRemoveAllHDLCFrames(m_send_buffer); + m_network_interface->SendAndRemoveAllHDLCFrames(&m_send_buffer); } else { diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.h b/Source/Core/Core/HW/EXI/EXI_DeviceModem.h index 7d008f869dd1..786d8db11965 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.h +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.h @@ -17,7 +17,7 @@ class PointerWrap; namespace ExpansionInterface { -#define MODEM_RECV_SIZE 0x800 +static constexpr std::size_t MODEM_RECV_SIZE = 0x800; enum { @@ -44,13 +44,20 @@ class CEXIModem : public IEXIDevice void DoState(PointerWrap& p) override; private: + // Note: The names in these enums are based on reverse-engineering of PSO and + // not on any documentation of the GC modem or its chipset. If official + // documentation is found, any names in there probably will not match these + // names. + enum Interrupt - { // Used for Register::INTERRUPT_MASK and Register::PENDING_INTERRUPT_MASK + { + // Used for Register::INTERRUPT_MASK and Register::PENDING_INTERRUPT_MASK AT_REPLY_DATA_AVAILABLE = 0x02, SEND_BUFFER_BELOW_THRESHOLD = 0x10, RECEIVE_BUFFER_ABOVE_THRESHOLD = 0x20, RECEIVE_BUFFER_NOT_EMPTY = 0x40, }; + enum Register { DEVICE_TYPE = 0x00, @@ -90,18 +97,22 @@ class CEXIModem : public IEXIDevice { return transfer_descriptor == 0x80000000; } + static inline bool IsWriteTransfer(u32 transfer_descriptor) { return transfer_descriptor & 0x40000000; } + static inline bool IsModemTransfer(u32 transfer_descriptor) { return transfer_descriptor & 0x20000000; } + static inline u16 GetModemTransferSize(u32 transfer_descriptor) { return (transfer_descriptor >> 8) & 0xFFFF; } + static inline u32 SetModemTransferSize(u32 transfer_descriptor, u16 new_size) { return (transfer_descriptor & 0xFF000000) | (new_size << 8); @@ -117,7 +128,7 @@ class CEXIModem : public IEXIDevice virtual bool Activate() { return false; } virtual void Deactivate() {} virtual bool IsActivated() { return false; } - virtual bool SendAndRemoveAllHDLCFrames(std::string&) { return false; } + virtual bool SendAndRemoveAllHDLCFrames(std::string*) { return false; } virtual bool RecvInit() { return false; } virtual void RecvStart() {} virtual void RecvStop() {} @@ -134,7 +145,7 @@ class CEXIModem : public IEXIDevice virtual bool Activate() override; virtual void Deactivate() override; virtual bool IsActivated() override; - virtual bool SendAndRemoveAllHDLCFrames(std::string& send_buffer) override; + virtual bool SendAndRemoveAllHDLCFrames(std::string* send_buffer) override; virtual bool RecvInit() override; virtual void RecvStart() override; virtual void RecvStop() override; diff --git a/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp b/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp index 4718c3485212..5723146b24e7 100644 --- a/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp +++ b/Source/Core/Core/HW/EXI/Modem/TAPServerModem.cpp @@ -3,21 +3,7 @@ #include "Core/HW/EXI/EXI_DeviceModem.h" -#ifdef _WIN32 -#include -#include -#else -#include -#include -#include -#include -#include -#endif - -#include "Common/CommonFuncs.h" #include "Common/Logging/Log.h" -#include "Common/StringUtil.h" -#include "Core/HW/EXI/EXI_Device.h" namespace ExpansionInterface { @@ -47,11 +33,11 @@ bool CEXIModem::TAPServerNetworkInterface::IsActivated() return m_tapserver_if.IsActivated(); } -bool CEXIModem::TAPServerNetworkInterface::SendAndRemoveAllHDLCFrames(std::string& send_buffer) +bool CEXIModem::TAPServerNetworkInterface::SendAndRemoveAllHDLCFrames(std::string* send_buffer) { - std::size_t orig_size = send_buffer.size(); - bool send_succeeded = m_tapserver_if.SendAndRemoveAllHDLCFrames(send_buffer); - if (send_succeeded && (send_buffer.size() < orig_size)) + const std::size_t orig_size = send_buffer->size(); + const bool send_succeeded = m_tapserver_if.SendAndRemoveAllHDLCFrames(send_buffer); + if (send_succeeded && (send_buffer->size() < orig_size)) m_modem_ref->SendComplete(); return send_succeeded; } diff --git a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp index 27579b5ac80e..0eecfdf455bf 100644 --- a/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp +++ b/Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp @@ -51,7 +51,7 @@ void BroadbandAdapterSettingsDialog::InitControls() case Type::TapServer: case Type::ModemTapServer: { - bool is_modem = (m_bba_type == Type::ModemTapServer); + const bool is_modem = (m_bba_type == Type::ModemTapServer); current_address = QString::fromStdString(Config::Get(is_modem ? Config::MAIN_MODEM_TAPSERVER_DESTINATION : Config::MAIN_BBA_TAPSERVER_DESTINATION)); @@ -62,21 +62,13 @@ void BroadbandAdapterSettingsDialog::InitControls() tr("Enter the IP address and port of the tapserver instance you want to connect to.")); #else address_label = new QLabel(tr("Destination (UNIX socket path or address:port):")); - address_placeholder = QStringLiteral("/tmp/dolphin-tap"); - if (is_modem) - { - description = new QLabel( - tr("The default value \"/tmp/dolphin-modem-tap\" will work with a local tapserver and " - "newserv. You " - "can also enter a network location (address:port) to connect to a remote tapserver.")); - } - else - { - description = new QLabel( - tr("The default value \"/tmp/dolphin-tap\" will work with a local tapserver and newserv. " - "You " - "can also enter a network location (address:port) to connect to a remote tapserver.")); - } + address_placeholder = + is_modem ? QStringLiteral(u"/tmp/dolphin-modem-tap") : QStringLiteral(u"/tmp/dolphin-tap"); + description = + new QLabel(tr("The default value \"%1\" will work with a local tapserver and newserv." + " You can also enter a network location (address:port) to connect to a " + "remote tapserver.") + .arg(address_placeholder)); #endif window_title = tr("BBA destination address"); break; From 3e9ac1aaf33c814df7b1720b239205f1988c8dbc Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 26 Feb 2024 20:45:40 -0800 Subject: [PATCH 108/223] fix tapserver SIGPIPE handling on Linux --- Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp | 10 ++++++++-- Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index 077b306db4fc..1f763402222c 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -32,7 +32,7 @@ using ws_ssize_t = int; using ws_ssize_t = ssize_t; #endif -#ifdef __LINUX__ +#ifdef __linux__ #define SEND_FLAGS MSG_NOSIGNAL #else #define SEND_FLAGS 0 @@ -262,7 +262,13 @@ void TAPServerConnection::ReadThreadHandler() timeval timeout; timeout.tv_sec = 0; timeout.tv_usec = 50000; - if (select(m_fd + 1, &rfds, nullptr, nullptr, &timeout) <= 0) + int select_res = select(m_fd + 1, &rfds, nullptr, nullptr, &timeout); + if (select_res < 0) + { + ERROR_LOG_FMT(SP1, "Can\'t poll tapserver fd: {}", Common::StrNetworkError()); + break; + } + if (select_res == 0) continue; // The tapserver protocol is very simple: there is a 16-bit little-endian diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h index f622c312c935..42c2020ffa44 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h @@ -40,7 +40,7 @@ class TAPServerConnection }; const std::string m_destination; - const std::function m_recv_cb; + const RecvCallback m_recv_cb; const std::size_t m_max_frame_size; Common::SocketContext m_socket_context; From f7a01471767400d025f2467a611e58b344e0afc4 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 17 Mar 2024 18:32:10 -0700 Subject: [PATCH 109/223] prevent backpressure when m_read_enabled is not set --- Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp | 9 ++++++--- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 4 ++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index 1f763402222c..b67a94dff118 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -266,7 +266,7 @@ void TAPServerConnection::ReadThreadHandler() if (select_res < 0) { ERROR_LOG_FMT(SP1, "Can\'t poll tapserver fd: {}", Common::StrNetworkError()); - break; + continue; } if (select_res == 0) continue; @@ -295,7 +295,10 @@ void TAPServerConnection::ReadThreadHandler() } else { - read_state = ReadState::DATA; + // If read is disabled, we still need to actually read the frame in + // order to avoid applying backpressure on the remote end, but we + // should drop the frame instead of forwarding it to the client. + read_state = m_read_enabled.IsSet() ? ReadState::DATA : ReadState::SKIP; } } else @@ -326,7 +329,7 @@ void TAPServerConnection::ReadThreadHandler() } else { - read_state = ReadState::DATA; + read_state = m_read_enabled.IsSet() ? ReadState::DATA : ReadState::SKIP; } break; } diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp index 02f2e33613cb..17d4a7c48416 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -44,6 +44,7 @@ CEXIModem::CEXIModem(Core::System& system, ModemDeviceType type) : IEXIDevice(sy CEXIModem::~CEXIModem() { + m_network_interface->RecvStop(); m_network_interface->Deactivate(); } @@ -69,6 +70,7 @@ void CEXIModem::ImmWrite(u32 data, u32 size) m_transfer_descriptor = data; if (m_transfer_descriptor == 0x00008000) { // Reset + m_network_interface->RecvStop(); m_network_interface->Deactivate(); m_transfer_descriptor = INVALID_TRANSFER_DESCRIPTOR; } @@ -366,6 +368,7 @@ void CEXIModem::RunAllPendingATCommands() if (command.substr(0, 3) == "ATZ" || command == "ATH0") { // Reset (ATZ) or hang up (ATH0) + m_network_interface->RecvStop(); m_network_interface->Deactivate(); AddATReply("OK\r"); } @@ -374,6 +377,7 @@ void CEXIModem::RunAllPendingATCommands() // Dial if (m_network_interface->Activate()) { + m_network_interface->RecvStart(); AddATReply("OK\rCONNECT 115200\r"); // Maximum baud rate } else From f09b71582ee357ef47f8608a5b0fd848e404b453 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Mon, 18 Mar 2024 01:35:42 -0700 Subject: [PATCH 110/223] Core: Avoid (Some) Global System Accessor --- Source/Android/jni/MainAndroid.cpp | 6 +-- Source/Core/Core/BootManager.cpp | 2 +- Source/Core/Core/ConfigManager.cpp | 2 +- Source/Core/Core/Core.cpp | 38 +++++++++---------- Source/Core/Core/Core.h | 14 +++---- Source/Core/Core/HW/VideoInterface.cpp | 2 +- Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp | 2 +- Source/Core/Core/Movie.cpp | 10 ++--- Source/Core/DolphinNoGUI/MainNoGUI.cpp | 4 +- Source/Core/DolphinNoGUI/PlatformFBDev.cpp | 3 +- Source/Core/DolphinNoGUI/PlatformHeadless.cpp | 4 +- Source/Core/DolphinNoGUI/PlatformMacos.mm | 3 +- Source/Core/DolphinNoGUI/PlatformWin32.cpp | 3 +- Source/Core/DolphinNoGUI/PlatformX11.cpp | 3 +- Source/Core/DolphinQt/Main.cpp | 5 ++- Source/Core/DolphinQt/MainWindow.cpp | 4 +- 16 files changed, 54 insertions(+), 51 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 1ea795de0b93..455f5f30af3d 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -258,7 +258,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_PauseEmulati JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_StopEmulation(JNIEnv*, jclass) { HostThreadLock guard; - Core::Stop(); + Core::Stop(Core::System::GetInstance()); // Kick the waiting event s_update_main_frame_event.Set(); @@ -586,11 +586,11 @@ static void Run(JNIEnv* env, std::unique_ptr&& boot, bool riivol host_identity_guard.Unlock(); s_update_main_frame_event.Wait(); host_identity_guard.Lock(); - Core::HostDispatchJobs(); + Core::HostDispatchJobs(Core::System::GetInstance()); } s_game_metadata_is_valid = false; - Core::Shutdown(); + Core::Shutdown(Core::System::GetInstance()); host_identity_guard.Unlock(); env->CallStaticVoidMethod(IDCache::GetNativeLibraryClass(), diff --git a/Source/Core/Core/BootManager.cpp b/Source/Core/Core/BootManager.cpp index 1c87994bf944..9e9fb3b58c99 100644 --- a/Source/Core/Core/BootManager.cpp +++ b/Source/Core/Core/BootManager.cpp @@ -146,7 +146,7 @@ bool BootCore(Core::System& system, std::unique_ptr boot, system.Initialize(); - Core::UpdateWantDeterminism(/*initial*/ true); + Core::UpdateWantDeterminism(system, /*initial*/ true); if (system.IsWii()) { diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index 693b2fb439a9..fb6fda47549d 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -190,7 +190,7 @@ void SConfig::SetRunningGameMetadata(const std::string& game_id, const std::stri Host_TitleChanged(); if (Core::IsRunning()) { - Core::UpdateTitle(); + Core::UpdateTitle(system); } Config::AddLayer(ConfigLoaders::GenerateGlobalGameConfigLoader(game_id, revision)); diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index c7c392fa0e6c..bb4e1e1a2664 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -120,7 +120,7 @@ static std::unique_ptr s_memory_watcher; struct HostJob { - std::function job; + std::function job; bool run_after_stop; }; static std::mutex s_host_jobs_lock; @@ -166,13 +166,13 @@ void FrameUpdateOnCPUThread() NetPlay::NetPlayClient::SendTimeBase(); } -void OnFrameEnd() +void OnFrameEnd(Core::System& system) { #ifdef USE_MEMORYWATCHER if (s_memory_watcher) { ASSERT(IsCPUThread()); - CPUThreadGuard guard(Core::System::GetInstance()); + const CPUThreadGuard guard(system); s_memory_watcher->Step(guard); } @@ -252,7 +252,7 @@ bool Init(Core::System& system, std::unique_ptr boot, const Wind } // Drain any left over jobs - HostDispatchJobs(); + HostDispatchJobs(system); INFO_LOG_FMT(BOOT, "Starting core = {} mode", system.IsWii() ? "Wii" : "GameCube"); INFO_LOG_FMT(BOOT, "CPU Thread separate = {}", system.IsDualCoreMode() ? "Yes" : "No"); @@ -284,7 +284,7 @@ static void ResetRumble() } // Called from GUI thread -void Stop() // - Hammertime! +void Stop(Core::System& system) // - Hammertime! { if (GetState() == State::Stopping || GetState() == State::Uninitialized) return; @@ -299,9 +299,7 @@ void Stop() // - Hammertime! CallOnStateChangedCallbacks(State::Stopping); // Dump left over jobs - HostDispatchJobs(); - - auto& system = Core::System::GetInstance(); + HostDispatchJobs(system); system.GetFifo().EmulatorState(false); @@ -359,7 +357,7 @@ static void CPUSetInitialExecutionState(bool force_paused = false) { // The CPU starts in stepping state, and will wait until a new state is set before executing. // SetState must be called on the host thread, so we defer it for later. - QueueHostJob([force_paused]() { + QueueHostJob([force_paused](Core::System&) { bool paused = SConfig::GetInstance().bBootToPause || force_paused; SetState(paused ? State::Paused : State::Running); Host_UpdateDisasmDialog(); @@ -663,7 +661,7 @@ static void EmuThread(Core::System& system, std::unique_ptr boot system.GetPowerPC().SetMode(PowerPC::CoreMode::Interpreter); } - UpdateTitle(); + UpdateTitle(system); // ENTER THE VIDEO THREAD LOOP if (system.IsDualCoreMode()) @@ -936,13 +934,12 @@ void Callback_NewField(Core::System& system) #endif // USE_RETRO_ACHIEVEMENTS } -void UpdateTitle() +void UpdateTitle(Core::System& system) { // Settings are shown the same for both extended and summary info const std::string SSettings = fmt::format( - "{} {} | {} | {}", Core::System::GetInstance().GetPowerPC().GetCPUName(), - Core::System::GetInstance().IsDualCoreMode() ? "DC" : "SC", g_video_backend->GetDisplayName(), - Config::Get(Config::MAIN_DSP_HLE) ? "HLE" : "LLE"); + "{} {} | {} | {}", system.GetPowerPC().GetCPUName(), system.IsDualCoreMode() ? "DC" : "SC", + g_video_backend->GetDisplayName(), Config::Get(Config::MAIN_DSP_HLE) ? "HLE" : "LLE"); std::string message = fmt::format("{} | {}", Common::GetScmRevStr(), SSettings); if (Config::Get(Config::MAIN_SHOW_ACTIVE_TITLE)) @@ -955,7 +952,7 @@ void UpdateTitle() Host_UpdateTitle(message); } -void Shutdown() +void Shutdown(Core::System& system) { // During shutdown DXGI expects us to handle some messages on the UI thread. // Therefore we can't immediately block and wait for the emu thread to shut @@ -967,7 +964,7 @@ void Shutdown() s_emu_thread.join(); // Make sure there's nothing left over in case we're about to exit. - HostDispatchJobs(); + HostDispatchJobs(system); } int AddOnStateChangedCallback(StateChangedCallbackFunc callback) @@ -1004,12 +1001,11 @@ void CallOnStateChangedCallbacks(Core::State state) } } -void UpdateWantDeterminism(bool initial) +void UpdateWantDeterminism(Core::System& system, bool initial) { // For now, this value is not itself configurable. Instead, individual // settings that depend on it, such as GPU determinism mode. should have // override options for testing, - auto& system = Core::System::GetInstance(); bool new_want_determinism = system.GetMovie().IsMovieActive() || NetPlay::IsNetPlayRunning(); if (new_want_determinism != s_wants_determinism || initial) { @@ -1030,7 +1026,7 @@ void UpdateWantDeterminism(bool initial) } } -void QueueHostJob(std::function job, bool run_during_stop) +void QueueHostJob(std::function job, bool run_during_stop) { if (!job) return; @@ -1046,7 +1042,7 @@ void QueueHostJob(std::function job, bool run_during_stop) Host_Message(HostMessageID::WMUserJobDispatch); } -void HostDispatchJobs() +void HostDispatchJobs(Core::System& system) { // WARNING: This should only run on the Host Thread. // NOTE: This function is potentially re-entrant. If a job calls @@ -1066,7 +1062,7 @@ void HostDispatchJobs() continue; guard.unlock(); - job.job(); + job.job(system); guard.lock(); } } diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index 90346d2cacd0..d4311792a468 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -125,8 +125,8 @@ class CPUThreadGuard final }; bool Init(Core::System& system, std::unique_ptr boot, const WindowSystemInfo& wsi); -void Stop(); -void Shutdown(); +void Stop(Core::System& system); +void Shutdown(Core::System& system); void DeclareAsCPUThread(); void UndeclareAsCPUThread(); @@ -157,7 +157,7 @@ void SaveScreenShot(std::string_view name); void DisplayMessage(std::string message, int time_in_ms); void FrameUpdateOnCPUThread(); -void OnFrameEnd(); +void OnFrameEnd(Core::System& system); // Run a function as the CPU thread. // @@ -181,7 +181,7 @@ bool RemoveOnStateChangedCallback(int* handle); void CallOnStateChangedCallbacks(Core::State state); // Run on the Host thread when the factors change. [NOT THREADSAFE] -void UpdateWantDeterminism(bool initial = false); +void UpdateWantDeterminism(Core::System& system, bool initial = false); // Queue an arbitrary function to asynchronously run once on the Host thread later. // Threadsafe. Can be called by any thread, including the Host itself. @@ -192,16 +192,16 @@ void UpdateWantDeterminism(bool initial = false); // NOTE: Make sure the jobs check the global state instead of assuming everything is // still the same as when the job was queued. // NOTE: Jobs that are not set to run during stop will be discarded instead. -void QueueHostJob(std::function job, bool run_during_stop = false); +void QueueHostJob(std::function job, bool run_during_stop = false); // Should be called periodically by the Host to run pending jobs. // WMUserJobDispatch will be sent when something is added to the queue. -void HostDispatchJobs(); +void HostDispatchJobs(Core::System& system); void DoFrameStep(); void UpdateInputGate(bool require_focus, bool require_full_focus = false); -void UpdateTitle(); +void UpdateTitle(Core::System& system); } // namespace Core diff --git a/Source/Core/Core/HW/VideoInterface.cpp b/Source/Core/Core/HW/VideoInterface.cpp index 83a30cbbcf2d..be197f4915c0 100644 --- a/Source/Core/Core/HW/VideoInterface.cpp +++ b/Source/Core/Core/HW/VideoInterface.cpp @@ -841,7 +841,7 @@ void VideoInterfaceManager::EndField(FieldType field, u64 ticks) g_perf_metrics.CountVBlank(); VIEndFieldEvent::Trigger(); - Core::OnFrameEnd(); + Core::OnFrameEnd(m_system); } // Purpose: Send VI interrupt when triggered diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp index e48ef3bf8114..9d853d1f48a6 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp @@ -177,7 +177,7 @@ std::optional BluetoothRealDevice::Open(const OpenRequest& request) "The emulated console will now stop.", m_last_open_error); } - Core::QueueHostJob(Core::Stop); + Core::QueueHostJob(&Core::Stop); return IPCReply(IPC_ENOENT); } diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index ea6e6c0e5ac6..e576afc1b7c9 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -572,7 +572,7 @@ bool MovieManager::BeginRecordingInput(const ControllerTypeArray& controllers, Config::AddLayer(ConfigLoaders::GenerateMovieConfigLoader(&header)); if (Core::IsRunning()) - Core::UpdateWantDeterminism(); + Core::UpdateWantDeterminism(m_system); }; Core::RunOnCPUThread(start_recording, true); @@ -958,7 +958,7 @@ bool MovieManager::PlayInput(const std::string& movie_path, // Wiimotes cause desync issues if they're not reset before launching the game Wiimote::ResetAllWiimotes(); - Core::UpdateWantDeterminism(); + Core::UpdateWantDeterminism(m_system); m_temp_input.resize(recording_file.GetSize() - 256); recording_file.ReadBytes(m_temp_input.data(), m_temp_input.size()); @@ -1152,7 +1152,7 @@ void MovieManager::LoadInput(const std::string& movie_path) if (m_play_mode != PlayMode::Playing) { m_play_mode = PlayMode::Playing; - Core::UpdateWantDeterminism(); + Core::UpdateWantDeterminism(m_system); Core::DisplayMessage("Switched to playback", 2000); } } @@ -1161,7 +1161,7 @@ void MovieManager::LoadInput(const std::string& movie_path) if (m_play_mode != PlayMode::Recording) { m_play_mode = PlayMode::Recording; - Core::UpdateWantDeterminism(); + Core::UpdateWantDeterminism(m_system); Core::DisplayMessage("Switched to recording", 2000); } } @@ -1355,7 +1355,7 @@ void MovieManager::EndPlayInput(bool cont) // delete tmpInput; // tmpInput = nullptr; - Core::QueueHostJob([=] { Core::UpdateWantDeterminism(); }); + Core::QueueHostJob([](Core::System& system) { Core::UpdateWantDeterminism(system); }); } } diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 9db8ef8a4710..6a0dfd630fe3 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -316,9 +316,9 @@ int main(int argc, char* argv[]) #endif s_platform->MainLoop(); - Core::Stop(); + Core::Stop(Core::System::GetInstance()); - Core::Shutdown(); + Core::Shutdown(Core::System::GetInstance()); s_platform.reset(); return 0; diff --git a/Source/Core/DolphinNoGUI/PlatformFBDev.cpp b/Source/Core/DolphinNoGUI/PlatformFBDev.cpp index 552a2aa9c4b7..53312bfa0872 100644 --- a/Source/Core/DolphinNoGUI/PlatformFBDev.cpp +++ b/Source/Core/DolphinNoGUI/PlatformFBDev.cpp @@ -9,6 +9,7 @@ #include "Core/ConfigManager.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include #include @@ -78,7 +79,7 @@ void PlatformFBDev::MainLoop() while (IsRunning()) { UpdateRunningFlag(); - Core::HostDispatchJobs(); + Core::HostDispatchJobs(Core::System::GetInstance()); // TODO: Is this sleep appropriate? std::this_thread::sleep_for(std::chrono::milliseconds(1)); diff --git a/Source/Core/DolphinNoGUI/PlatformHeadless.cpp b/Source/Core/DolphinNoGUI/PlatformHeadless.cpp index 8e3c82bca195..2f6ea2e7ac64 100644 --- a/Source/Core/DolphinNoGUI/PlatformHeadless.cpp +++ b/Source/Core/DolphinNoGUI/PlatformHeadless.cpp @@ -3,7 +3,9 @@ #include #include + #include "Core/Core.h" +#include "Core/System.h" #include "DolphinNoGUI/Platform.h" namespace @@ -27,7 +29,7 @@ void PlatformHeadless::MainLoop() while (m_running.IsSet()) { UpdateRunningFlag(); - Core::HostDispatchJobs(); + Core::HostDispatchJobs(Core::System::GetInstance()); std::this_thread::sleep_for(std::chrono::milliseconds(100)); } } diff --git a/Source/Core/DolphinNoGUI/PlatformMacos.mm b/Source/Core/DolphinNoGUI/PlatformMacos.mm index 633d27908cde..0bdfd4435694 100644 --- a/Source/Core/DolphinNoGUI/PlatformMacos.mm +++ b/Source/Core/DolphinNoGUI/PlatformMacos.mm @@ -7,6 +7,7 @@ #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include "VideoCommon/Present.h" #include "VideoCommon/RenderBase.h" @@ -225,7 +226,7 @@ - (void)windowDidResize:(NSNotification*)notification while (IsRunning()) { UpdateRunningFlag(); - Core::HostDispatchJobs(); + Core::HostDispatchJobs(Core::System::GetInstance()); ProcessEvents(); UpdateWindowPosition(); } diff --git a/Source/Core/DolphinNoGUI/PlatformWin32.cpp b/Source/Core/DolphinNoGUI/PlatformWin32.cpp index 4b5e5aa1ef88..b92849a3b633 100644 --- a/Source/Core/DolphinNoGUI/PlatformWin32.cpp +++ b/Source/Core/DolphinNoGUI/PlatformWin32.cpp @@ -8,6 +8,7 @@ #include "Core/ConfigManager.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include #include @@ -123,7 +124,7 @@ void PlatformWin32::MainLoop() while (IsRunning()) { UpdateRunningFlag(); - Core::HostDispatchJobs(); + Core::HostDispatchJobs(Core::System::GetInstance()); ProcessEvents(); UpdateWindowPosition(); diff --git a/Source/Core/DolphinNoGUI/PlatformX11.cpp b/Source/Core/DolphinNoGUI/PlatformX11.cpp index 18784499e476..16cfaa3683b0 100644 --- a/Source/Core/DolphinNoGUI/PlatformX11.cpp +++ b/Source/Core/DolphinNoGUI/PlatformX11.cpp @@ -15,6 +15,7 @@ static constexpr auto X_None = None; #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/State.h" +#include "Core/System.h" #include #include @@ -151,7 +152,7 @@ void PlatformX11::MainLoop() while (IsRunning()) { UpdateRunningFlag(); - Core::HostDispatchJobs(); + Core::HostDispatchJobs(Core::System::GetInstance()); ProcessEvents(); UpdateWindowPosition(); diff --git a/Source/Core/DolphinQt/Main.cpp b/Source/Core/DolphinQt/Main.cpp index 30922f1c6307..52f158330943 100644 --- a/Source/Core/DolphinQt/Main.cpp +++ b/Source/Core/DolphinQt/Main.cpp @@ -28,6 +28,7 @@ #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/DolphinAnalytics.h" +#include "Core/System.h" #include "DolphinQt/Host.h" #include "DolphinQt/MainWindow.h" @@ -179,7 +180,7 @@ int main(int argc, char* argv[]) // Whenever the event loop is about to go to sleep, dispatch the jobs // queued in the Core first. QObject::connect(QAbstractEventDispatcher::instance(), &QAbstractEventDispatcher::aboutToBlock, - &app, &Core::HostDispatchJobs); + &app, [] { Core::HostDispatchJobs(Core::System::GetInstance()); }); std::optional save_state_path; if (options.is_set("save_state")) @@ -293,7 +294,7 @@ int main(int argc, char* argv[]) retval = app.exec(); } - Core::Shutdown(); + Core::Shutdown(Core::System::GetInstance()); UICommon::Shutdown(); Host::GetInstance()->deleteLater(); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 83f75340f46d..7e7086e5af34 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -909,7 +909,7 @@ bool MainWindow::RequestStop() { if (!Core::IsRunning()) { - Core::QueueHostJob([this] { OnStopComplete(); }, true); + Core::QueueHostJob([this](Core::System&) { OnStopComplete(); }, true); return true; } @@ -1009,7 +1009,7 @@ bool MainWindow::RequestStop() void MainWindow::ForceStop() { - Core::Stop(); + Core::Stop(Core::System::GetInstance()); } void MainWindow::Reset() From 11b628f2504bccbdba0cdad89f62a604e8d500c6 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Mon, 18 Mar 2024 07:18:41 -0700 Subject: [PATCH 111/223] Core: Remove Unused IsRunningInCurrentThread Function --- Source/Core/Core/Core.cpp | 5 ----- Source/Core/Core/Core.h | 5 ++--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index c7c392fa0e6c..99a3ee6e9a2a 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -210,11 +210,6 @@ bool IsRunningAndStarted() return s_is_started && !s_is_stopping; } -bool IsRunningInCurrentThread() -{ - return IsRunning() && IsCPUThread(); -} - bool IsCPUThread() { return tls_is_cpu_thread; diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index 90346d2cacd0..ab5ffe622631 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -138,9 +138,8 @@ void UndeclareAsHostThread(); std::string StopMessage(bool main_thread, std::string_view message); bool IsRunning(); -bool IsRunningAndStarted(); // is running and the CPU loop has been entered -bool IsRunningInCurrentThread(); // this tells us whether we are running in the CPU thread. -bool IsCPUThread(); // this tells us whether we are the CPU thread. +bool IsRunningAndStarted(); // is running and the CPU loop has been entered +bool IsCPUThread(); // this tells us whether we are the CPU thread. bool IsGPUThread(); bool IsHostThread(); From 25833cfd62b62698977c16ad8037b1c8064942fa Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Tue, 19 Mar 2024 01:08:54 -0500 Subject: [PATCH 112/223] CMake: Hide warnings in Externals also for non-msvc. --- CMake/DolphinDisableWarningsMSVC.cmake | 26 +++++++++++++----------- Externals/Bochs_disasm/CMakeLists.txt | 2 +- Externals/FreeSurround/CMakeLists.txt | 2 +- Externals/LZO/CMakeLists.txt | 2 +- Externals/SDL/CMakeLists.txt | 4 ++-- Externals/SFML/CMakeLists.txt | 4 ++-- Externals/bzip2/CMakeLists.txt | 2 +- Externals/cpp-optparse/CMakeLists.txt | 2 +- Externals/cubeb/CMakeLists.txt | 4 ++-- Externals/curl/CMakeLists.txt | 2 +- Externals/discord-rpc/src/CMakeLists.txt | 2 +- Externals/ed25519/CMakeLists.txt | 2 +- Externals/enet/CMakeLists.txt | 2 +- Externals/fmt/CMakeLists.txt | 2 +- Externals/glslang/CMakeLists.txt | 2 +- Externals/hidapi/CMakeLists.txt | 2 +- Externals/imgui/CMakeLists.txt | 2 +- Externals/implot/CMakeLists.txt | 2 +- Externals/libiconv-1.14/CMakeLists.txt | 2 +- Externals/liblzma/CMakeLists.txt | 2 +- Externals/libspng/CMakeLists.txt | 2 +- Externals/libusb/CMakeLists.txt | 2 +- Externals/lz4/CMakeLists.txt | 2 +- Externals/mGBA/CMakeLists.txt | 2 +- Externals/mbedtls/library/CMakeLists.txt | 12 +++++------ Externals/miniupnpc/CMakeLists.txt | 2 +- Externals/minizip/CMakeLists.txt | 2 +- Externals/pugixml/CMakeLists.txt | 2 +- Externals/soundtouch/CMakeLists.txt | 2 +- Externals/spirv_cross/CMakeLists.txt | 2 +- Externals/tinygltf/CMakeLists.txt | 2 +- Externals/xxhash/CMakeLists.txt | 2 +- Externals/zlib-ng/CMakeLists.txt | 2 +- Externals/zstd/CMakeLists.txt | 2 +- 34 files changed, 55 insertions(+), 53 deletions(-) diff --git a/CMake/DolphinDisableWarningsMSVC.cmake b/CMake/DolphinDisableWarningsMSVC.cmake index 43823a0ea4fa..dbd35537625e 100644 --- a/CMake/DolphinDisableWarningsMSVC.cmake +++ b/CMake/DolphinDisableWarningsMSVC.cmake @@ -1,18 +1,20 @@ include(RemoveCompileFlag) -macro(dolphin_disable_warnings_msvc _target) +macro(dolphin_disable_warnings _target) + get_target_property(_target_cxx_flags ${_target} COMPILE_OPTIONS) + if (_target_cxx_flags) + set(new_flags "") + foreach(flag IN LISTS _target_cxx_flags) + # all warning flags start with "/W" or "/w" or "-W" or "-w" + if (NOT "${flag}" MATCHES "^[-/][Ww]") + list(APPEND new_flags "${flag}") + endif() + endforeach() + set_target_properties(${_target} PROPERTIES COMPILE_OPTIONS "${new_flags}") + endif() if (MSVC) - get_target_property(_target_cxx_flags ${_target} COMPILE_OPTIONS) - if (_target_cxx_flags) - set(new_flags "") - foreach(flag IN LISTS _target_cxx_flags) - # all warning flags start with "/W" or "/w" or "-W" or "-w" - if (NOT "${flag}" MATCHES "^[-/][Ww]") - list(APPEND new_flags "${flag}") - endif() - endforeach() - set_target_properties(${_target} PROPERTIES COMPILE_OPTIONS "${new_flags}") - endif() target_compile_options(${_target} PRIVATE "/W0") + elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU") + target_compile_options(${_target} PRIVATE "-w") endif() endmacro() diff --git a/Externals/Bochs_disasm/CMakeLists.txt b/Externals/Bochs_disasm/CMakeLists.txt index 2a643113e3d5..cb78a826c7e1 100644 --- a/Externals/Bochs_disasm/CMakeLists.txt +++ b/Externals/Bochs_disasm/CMakeLists.txt @@ -4,7 +4,7 @@ add_library(bdisasm STATIC resolve.cc syntax.cc ) -dolphin_disable_warnings_msvc(bdisasm) +dolphin_disable_warnings(bdisasm) if (WIN32) target_sources(bdisasm diff --git a/Externals/FreeSurround/CMakeLists.txt b/Externals/FreeSurround/CMakeLists.txt index d7f8bc3ea29c..448842da2f40 100644 --- a/Externals/FreeSurround/CMakeLists.txt +++ b/Externals/FreeSurround/CMakeLists.txt @@ -12,6 +12,6 @@ set(SRCS ) add_library(FreeSurround STATIC ${SRCS}) -dolphin_disable_warnings_msvc(FreeSurround) +dolphin_disable_warnings(FreeSurround) target_include_directories(FreeSurround PUBLIC include) target_compile_options(FreeSurround PRIVATE -w) diff --git a/Externals/LZO/CMakeLists.txt b/Externals/LZO/CMakeLists.txt index 44b59bd49675..9f6669344e2c 100644 --- a/Externals/LZO/CMakeLists.txt +++ b/Externals/LZO/CMakeLists.txt @@ -1,7 +1,7 @@ add_library(lzo2 STATIC minilzo.c ) -dolphin_disable_warnings_msvc(lzo2) +dolphin_disable_warnings(lzo2) target_include_directories(lzo2 PUBLIC diff --git a/Externals/SDL/CMakeLists.txt b/Externals/SDL/CMakeLists.txt index 15d3ffe4ce81..599caff4d4b1 100644 --- a/Externals/SDL/CMakeLists.txt +++ b/Externals/SDL/CMakeLists.txt @@ -10,8 +10,8 @@ set(SDL_TEST_ENABLED_BY_DEFAULT OFF) set(OPT_DEF_LIBC ON) add_subdirectory(SDL) if (TARGET SDL2) - dolphin_disable_warnings_msvc(SDL2) + dolphin_disable_warnings(SDL2) endif() if (TARGET SDL2-static) - dolphin_disable_warnings_msvc(SDL2-static) + dolphin_disable_warnings(SDL2-static) endif() diff --git a/Externals/SFML/CMakeLists.txt b/Externals/SFML/CMakeLists.txt index 1b7060ef95d7..1a5a24ecedf1 100644 --- a/Externals/SFML/CMakeLists.txt +++ b/Externals/SFML/CMakeLists.txt @@ -27,5 +27,5 @@ target_compile_definitions(sfml-system PUBLIC SFML_STATIC) target_include_directories(sfml-system PUBLIC include PRIVATE src) target_include_directories(sfml-network PUBLIC include PRIVATE src) target_link_libraries(sfml-network PUBLIC sfml-system) -dolphin_disable_warnings_msvc(sfml-network) -dolphin_disable_warnings_msvc(sfml-system) +dolphin_disable_warnings(sfml-network) +dolphin_disable_warnings(sfml-system) diff --git a/Externals/bzip2/CMakeLists.txt b/Externals/bzip2/CMakeLists.txt index f19d532e1ba9..5ab09692dfc4 100644 --- a/Externals/bzip2/CMakeLists.txt +++ b/Externals/bzip2/CMakeLists.txt @@ -70,7 +70,7 @@ set(BZIP2_SRCS add_library(bzip2 STATIC ${BZIP2_SRCS} ${BZIP2_PUBLIC_HDRS} ${BZIP2_PRIVATE_HDRS}) add_library(BZip2::BZip2 ALIAS bzip2) -dolphin_disable_warnings_msvc(bzip2) +dolphin_disable_warnings(bzip2) target_include_directories(bzip2 PUBLIC diff --git a/Externals/cpp-optparse/CMakeLists.txt b/Externals/cpp-optparse/CMakeLists.txt index 0f92f22bfdaf..cfd5e4487615 100644 --- a/Externals/cpp-optparse/CMakeLists.txt +++ b/Externals/cpp-optparse/CMakeLists.txt @@ -3,5 +3,5 @@ check_and_add_flag(CXX11 -std=c++11) set(SRCS OptionParser.cpp OptionParser.h) add_library(cpp-optparse STATIC ${SRCS}) -dolphin_disable_warnings_msvc(cpp-optparse) +dolphin_disable_warnings(cpp-optparse) target_include_directories(cpp-optparse PUBLIC .) diff --git a/Externals/cubeb/CMakeLists.txt b/Externals/cubeb/CMakeLists.txt index e428d88e0189..1cce7d18abb8 100644 --- a/Externals/cubeb/CMakeLists.txt +++ b/Externals/cubeb/CMakeLists.txt @@ -69,7 +69,7 @@ add_library(cubeb cubeb/src/cubeb_strings.c cubeb/src/cubeb_utils.cpp ) -dolphin_disable_warnings_msvc(cubeb) +dolphin_disable_warnings(cubeb) target_include_directories(cubeb PUBLIC $ $ ) @@ -127,7 +127,7 @@ endif() if(NOT TARGET speex) add_library(speex OBJECT cubeb/subprojects/speex/resample.c) - dolphin_disable_warnings_msvc(speex) + dolphin_disable_warnings(speex) set_target_properties(speex PROPERTIES POSITION_INDEPENDENT_CODE TRUE) target_include_directories(speex INTERFACE cubeb/subprojects) target_compile_definitions(speex PUBLIC diff --git a/Externals/curl/CMakeLists.txt b/Externals/curl/CMakeLists.txt index 1d01b5a8728b..2f152ceabf8c 100644 --- a/Externals/curl/CMakeLists.txt +++ b/Externals/curl/CMakeLists.txt @@ -45,7 +45,7 @@ if(NOT CURL_CA_PATH_SET) endif() endif() -dolphin_disable_warnings_msvc(curl) +dolphin_disable_warnings(curl) target_link_libraries(curl ${CURL_LIBS}) target_include_directories(curl PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/curl/include") target_compile_definitions(curl PRIVATE "BUILDING_LIBCURL=1") diff --git a/Externals/discord-rpc/src/CMakeLists.txt b/Externals/discord-rpc/src/CMakeLists.txt index e3296173e08f..2e8b9f6c3d73 100644 --- a/Externals/discord-rpc/src/CMakeLists.txt +++ b/Externals/discord-rpc/src/CMakeLists.txt @@ -31,7 +31,7 @@ if(WIN32) add_definitions(-DDISCORD_WINDOWS) set(BASE_RPC_SRC ${BASE_RPC_SRC} connection_win.cpp discord_register_win.cpp) add_library(discord-rpc ${BASE_RPC_SRC}) - dolphin_disable_warnings_msvc(discord-rpc) + dolphin_disable_warnings(discord-rpc) if (MSVC) if(USE_STATIC_CRT) foreach(CompilerFlag diff --git a/Externals/ed25519/CMakeLists.txt b/Externals/ed25519/CMakeLists.txt index 1e0080b12bb1..eeea8cca261f 100644 --- a/Externals/ed25519/CMakeLists.txt +++ b/Externals/ed25519/CMakeLists.txt @@ -11,4 +11,4 @@ add_library(ed25519 sc.c sha512.c verify.c) -dolphin_disable_warnings_msvc(ed25519) +dolphin_disable_warnings(ed25519) diff --git a/Externals/enet/CMakeLists.txt b/Externals/enet/CMakeLists.txt index c52052330bac..5707a8c00c2c 100644 --- a/Externals/enet/CMakeLists.txt +++ b/Externals/enet/CMakeLists.txt @@ -92,7 +92,7 @@ add_library(enet STATIC ) target_include_directories(enet PUBLIC enet/include) -dolphin_disable_warnings_msvc(enet) +dolphin_disable_warnings(enet) add_library(enet::enet ALIAS enet) if (MINGW) diff --git a/Externals/fmt/CMakeLists.txt b/Externals/fmt/CMakeLists.txt index 2b4e30dc32d1..6c3ae2666672 100755 --- a/Externals/fmt/CMakeLists.txt +++ b/Externals/fmt/CMakeLists.txt @@ -1,2 +1,2 @@ add_subdirectory(fmt) -dolphin_disable_warnings_msvc(fmt) +dolphin_disable_warnings(fmt) diff --git a/Externals/glslang/CMakeLists.txt b/Externals/glslang/CMakeLists.txt index df5dfa04082a..9b096d7bc002 100644 --- a/Externals/glslang/CMakeLists.txt +++ b/Externals/glslang/CMakeLists.txt @@ -73,7 +73,7 @@ endif() endif() add_library(glslang STATIC ${SRCS}) -dolphin_disable_warnings_msvc(glslang) +dolphin_disable_warnings(glslang) target_include_directories(glslang PRIVATE diff --git a/Externals/hidapi/CMakeLists.txt b/Externals/hidapi/CMakeLists.txt index 8c664d51d8f8..6ea9d24e4fa0 100644 --- a/Externals/hidapi/CMakeLists.txt +++ b/Externals/hidapi/CMakeLists.txt @@ -1,7 +1,7 @@ project(hidapi) add_library(hidapi STATIC hidapi-src/hidapi/hidapi.h) -dolphin_disable_warnings_msvc(hidapi) +dolphin_disable_warnings(hidapi) target_include_directories(hidapi PUBLIC hidapi-src/hidapi) if(APPLE) diff --git a/Externals/imgui/CMakeLists.txt b/Externals/imgui/CMakeLists.txt index 5a1a83656379..43274cf88aa0 100644 --- a/Externals/imgui/CMakeLists.txt +++ b/Externals/imgui/CMakeLists.txt @@ -13,7 +13,7 @@ set(SRCS ) add_library(imgui STATIC ${SRCS}) -dolphin_disable_warnings_msvc(imgui) +dolphin_disable_warnings(imgui) target_include_directories(imgui PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") target_link_libraries(imgui diff --git a/Externals/implot/CMakeLists.txt b/Externals/implot/CMakeLists.txt index b25effa851d5..922ae4ff9397 100644 --- a/Externals/implot/CMakeLists.txt +++ b/Externals/implot/CMakeLists.txt @@ -10,7 +10,7 @@ set(SRCS ) add_library(implot STATIC ${SRCS}) -dolphin_disable_warnings_msvc(implot) +dolphin_disable_warnings(implot) target_include_directories(implot PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/implot" PRIVATE imgui diff --git a/Externals/libiconv-1.14/CMakeLists.txt b/Externals/libiconv-1.14/CMakeLists.txt index 9f04f671ff7a..54c3ca6eeca6 100644 --- a/Externals/libiconv-1.14/CMakeLists.txt +++ b/Externals/libiconv-1.14/CMakeLists.txt @@ -9,5 +9,5 @@ target_include_directories(iconv PRIVATE libcharset/include ) -dolphin_disable_warnings_msvc(iconv) +dolphin_disable_warnings(iconv) add_library(Iconv::Iconv ALIAS iconv) diff --git a/Externals/liblzma/CMakeLists.txt b/Externals/liblzma/CMakeLists.txt index dd979c5b68fe..3c728a007ee8 100644 --- a/Externals/liblzma/CMakeLists.txt +++ b/Externals/liblzma/CMakeLists.txt @@ -207,7 +207,7 @@ set(LZMA_SRCS add_library(lzma STATIC ${LZMA_SRCS} ${LZMA_PUBLIC_HDRS}) add_library(LibLZMA::LibLZMA ALIAS lzma) -dolphin_disable_warnings_msvc(lzma) +dolphin_disable_warnings(lzma) target_compile_definitions(lzma PUBLIC LZMA_API_STATIC) diff --git a/Externals/libspng/CMakeLists.txt b/Externals/libspng/CMakeLists.txt index 315997a45ac9..803311010021 100644 --- a/Externals/libspng/CMakeLists.txt +++ b/Externals/libspng/CMakeLists.txt @@ -6,5 +6,5 @@ add_library(spng STATIC libspng/spng/spng.c) target_compile_definitions(spng PUBLIC SPNG_STATIC) target_link_libraries(spng PUBLIC ZLIB::ZLIB) target_include_directories(spng PUBLIC libspng/spng) -dolphin_disable_warnings_msvc(spng) +dolphin_disable_warnings(spng) add_library(spng::spng ALIAS spng) diff --git a/Externals/libusb/CMakeLists.txt b/Externals/libusb/CMakeLists.txt index 47ff1d8e0d28..c91df8540386 100644 --- a/Externals/libusb/CMakeLists.txt +++ b/Externals/libusb/CMakeLists.txt @@ -6,7 +6,7 @@ add_library(usb STATIC EXCLUDE_FROM_ALL libusb/libusb/strerror.c libusb/libusb/sync.c ) -dolphin_disable_warnings_msvc(usb) +dolphin_disable_warnings(usb) set_target_properties(usb PROPERTIES VERSION 1.0.26) if(WIN32) diff --git a/Externals/lz4/CMakeLists.txt b/Externals/lz4/CMakeLists.txt index 7af19ebbe254..b1ee41c5866b 100644 --- a/Externals/lz4/CMakeLists.txt +++ b/Externals/lz4/CMakeLists.txt @@ -8,6 +8,6 @@ set(LZ4_BUNDLED_MODE ON) add_subdirectory(lz4/build/cmake) -dolphin_disable_warnings_msvc(lz4_static) +dolphin_disable_warnings(lz4_static) add_library(LZ4::LZ4 ALIAS lz4_static) target_compile_definitions(lz4_static PRIVATE XXH_NAMESPACE=LZ4_) diff --git a/Externals/mGBA/CMakeLists.txt b/Externals/mGBA/CMakeLists.txt index 87121b1fa23c..f48231e35212 100644 --- a/Externals/mGBA/CMakeLists.txt +++ b/Externals/mGBA/CMakeLists.txt @@ -1,7 +1,7 @@ set(LIBMGBA_ONLY ON) set(USE_LZMA ON) add_subdirectory(mgba EXCLUDE_FROM_ALL) -dolphin_disable_warnings_msvc(mgba) +dolphin_disable_warnings(mgba) target_compile_definitions(mgba PUBLIC HAVE_CRC32) target_link_libraries(mgba ZLIB::ZLIB) diff --git a/Externals/mbedtls/library/CMakeLists.txt b/Externals/mbedtls/library/CMakeLists.txt index 5aa233e08049..8aa6efd47b55 100644 --- a/Externals/mbedtls/library/CMakeLists.txt +++ b/Externals/mbedtls/library/CMakeLists.txt @@ -189,34 +189,34 @@ endif() if(USE_STATIC_MBEDTLS_LIBRARY) add_library(${mbedcrypto_static_target} STATIC ${src_crypto}) - dolphin_disable_warnings_msvc(${mbedcrypto_static_target}) + dolphin_disable_warnings(${mbedcrypto_static_target}) set_target_properties(${mbedcrypto_static_target} PROPERTIES OUTPUT_NAME mbedcrypto) target_link_libraries(${mbedcrypto_static_target} PUBLIC ${libs}) add_library(${mbedx509_static_target} STATIC ${src_x509}) - dolphin_disable_warnings_msvc(${mbedx509_static_target}) + dolphin_disable_warnings(${mbedx509_static_target}) set_target_properties(${mbedx509_static_target} PROPERTIES OUTPUT_NAME mbedx509) target_link_libraries(${mbedx509_static_target} PUBLIC ${libs} ${mbedcrypto_static_target}) add_library(${mbedtls_static_target} STATIC ${src_tls}) - dolphin_disable_warnings_msvc(${mbedtls_static_target}) + dolphin_disable_warnings(${mbedtls_static_target}) set_target_properties(${mbedtls_static_target} PROPERTIES OUTPUT_NAME mbedtls) target_link_libraries(${mbedtls_static_target} PUBLIC ${libs} ${mbedx509_static_target}) endif(USE_STATIC_MBEDTLS_LIBRARY) if(USE_SHARED_MBEDTLS_LIBRARY) add_library(${mbedcrypto_target} SHARED ${src_crypto}) - dolphin_disable_warnings_msvc(${mbedcrypto_target}) + dolphin_disable_warnings(${mbedcrypto_target}) set_target_properties(${mbedcrypto_target} PROPERTIES VERSION 2.28.0 SOVERSION 7) target_link_libraries(${mbedcrypto_target} PUBLIC ${libs}) add_library(${mbedx509_target} SHARED ${src_x509}) - dolphin_disable_warnings_msvc(${mbedx509_target}) + dolphin_disable_warnings(${mbedx509_target}) set_target_properties(${mbedx509_target} PROPERTIES VERSION 2.28.0 SOVERSION 1) target_link_libraries(${mbedx509_target} PUBLIC ${libs} ${mbedcrypto_target}) add_library(${mbedtls_target} SHARED ${src_tls}) - dolphin_disable_warnings_msvc(${mbedtls_target}) + dolphin_disable_warnings(${mbedtls_target}) set_target_properties(${mbedtls_target} PROPERTIES VERSION 2.28.0 SOVERSION 14) target_link_libraries(${mbedtls_target} PUBLIC ${libs} ${mbedx509_target}) endif(USE_SHARED_MBEDTLS_LIBRARY) diff --git a/Externals/miniupnpc/CMakeLists.txt b/Externals/miniupnpc/CMakeLists.txt index 602de41c555d..9d441b269daa 100644 --- a/Externals/miniupnpc/CMakeLists.txt +++ b/Externals/miniupnpc/CMakeLists.txt @@ -33,7 +33,7 @@ set(SRCS src/igd_desc_parse.c src/receivedata.c) add_library(miniupnpc STATIC ${SRCS}) -dolphin_disable_warnings_msvc(miniupnpc) +dolphin_disable_warnings(miniupnpc) target_include_directories(miniupnpc PUBLIC src) add_library(Miniupnpc::miniupnpc ALIAS miniupnpc) diff --git a/Externals/minizip/CMakeLists.txt b/Externals/minizip/CMakeLists.txt index 09aba92e578a..774cb0b6a71d 100644 --- a/Externals/minizip/CMakeLists.txt +++ b/Externals/minizip/CMakeLists.txt @@ -26,7 +26,7 @@ add_library(minizip STATIC unzip.h zip.h ) -dolphin_disable_warnings_msvc(minizip) +dolphin_disable_warnings(minizip) if (UNIX) target_sources(minizip PRIVATE diff --git a/Externals/pugixml/CMakeLists.txt b/Externals/pugixml/CMakeLists.txt index 11c099065853..bc7e561fb49d 100644 --- a/Externals/pugixml/CMakeLists.txt +++ b/Externals/pugixml/CMakeLists.txt @@ -35,7 +35,7 @@ if(BUILD_SHARED_LIBS) else() add_library(pugixml STATIC ${SOURCES}) endif() -dolphin_disable_warnings_msvc(pugixml) +dolphin_disable_warnings(pugixml) set_target_properties(pugixml PROPERTIES VERSION 1.8 SOVERSION 1) get_target_property(PUGIXML_VERSION_STRING pugixml VERSION) diff --git a/Externals/soundtouch/CMakeLists.txt b/Externals/soundtouch/CMakeLists.txt index 46b5a2a965e3..6372095ba809 100644 --- a/Externals/soundtouch/CMakeLists.txt +++ b/Externals/soundtouch/CMakeLists.txt @@ -19,4 +19,4 @@ set(SRCS ) add_library(SoundTouch STATIC ${SRCS}) -dolphin_disable_warnings_msvc(SoundTouch) +dolphin_disable_warnings(SoundTouch) diff --git a/Externals/spirv_cross/CMakeLists.txt b/Externals/spirv_cross/CMakeLists.txt index 1063ef65afae..db55eec30503 100644 --- a/Externals/spirv_cross/CMakeLists.txt +++ b/Externals/spirv_cross/CMakeLists.txt @@ -47,7 +47,7 @@ endif() endif() add_library(spirv_cross STATIC ${SRCS}) -dolphin_disable_warnings_msvc(spirv_cross) +dolphin_disable_warnings(spirv_cross) target_compile_definitions(spirv_cross PUBLIC SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS) target_include_directories(spirv_cross PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/SPIRV-Cross/include ${CMAKE_CURRENT_SOURCE_DIR}/SPIRV-Cross) diff --git a/Externals/tinygltf/CMakeLists.txt b/Externals/tinygltf/CMakeLists.txt index a551d6def381..0d86268bbe36 100644 --- a/Externals/tinygltf/CMakeLists.txt +++ b/Externals/tinygltf/CMakeLists.txt @@ -8,4 +8,4 @@ endif() target_sources(tinygltf PRIVATE tinygltf/tiny_gltf.cc) target_include_directories(tinygltf INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) -dolphin_disable_warnings_msvc(tinygltf) +dolphin_disable_warnings(tinygltf) diff --git a/Externals/xxhash/CMakeLists.txt b/Externals/xxhash/CMakeLists.txt index 6d52f56478e8..c2757950836e 100644 --- a/Externals/xxhash/CMakeLists.txt +++ b/Externals/xxhash/CMakeLists.txt @@ -1,7 +1,7 @@ project(xxhash C) add_library(xxhash STATIC xxHash/xxhash.c) -dolphin_disable_warnings_msvc(xxhash) +dolphin_disable_warnings(xxhash) target_include_directories(xxhash PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/xxHash diff --git a/Externals/zlib-ng/CMakeLists.txt b/Externals/zlib-ng/CMakeLists.txt index 39accc8b4001..2b686c0b12ef 100644 --- a/Externals/zlib-ng/CMakeLists.txt +++ b/Externals/zlib-ng/CMakeLists.txt @@ -12,4 +12,4 @@ set(ZLIB_LIBRARY ZLIB::ZLIB CACHE STRING "Path to zlib library") # Setup zlib alias project so FindZLIB doesn't recreate it add_library(ZLIB::ZLIB ALIAS zlib) -dolphin_disable_warnings_msvc(zlib) +dolphin_disable_warnings(zlib) diff --git a/Externals/zstd/CMakeLists.txt b/Externals/zstd/CMakeLists.txt index 77932c74e754..fdcabb09560c 100644 --- a/Externals/zstd/CMakeLists.txt +++ b/Externals/zstd/CMakeLists.txt @@ -115,7 +115,7 @@ set(ZSTD_SRCS ) add_library(zstd STATIC ${ZSTD_SRCS} ${ZSTD_PUBLIC_HDRS} ${ZSTD_PRIVATE_HDRS}) -dolphin_disable_warnings_msvc(zstd) +dolphin_disable_warnings(zstd) add_library(zstd::zstd ALIAS zstd) target_include_directories(zstd From 647eba36f3bbf8b5e4a6d141bf3c8dc087548cfd Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 18 Mar 2024 23:16:18 -0500 Subject: [PATCH 113/223] DolphinQt: Fix BalloonTip positioning on secondary monitors. --- Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp index 672a4381f821..52033a9445e8 100644 --- a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp +++ b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp @@ -315,10 +315,12 @@ void BalloonTip::UpdateBoundsAndRedraw(const QPoint& target_arrow_tip_position, // Place the arrow tip at the target position whether the arrow tip is drawn or not const int target_balloontip_global_x = target_arrow_tip_position.x() - static_cast(arrow_tip_x); - const int rightmost_valid_balloontip_global_x = screen_rect.width() - size_hint.width(); + const int rightmost_valid_balloontip_global_x = + screen_rect.left() + screen_rect.width() - size_hint.width(); // If the balloon would extend off the screen, push it left or right until it's not const int actual_balloontip_global_x = - std::max(0, std::min(rightmost_valid_balloontip_global_x, target_balloontip_global_x)); + std::max(screen_rect.left(), + std::min(rightmost_valid_balloontip_global_x, target_balloontip_global_x)); // The tip pixel should be in the middle of the control, and arrow_tip_exterior_y is at the bottom // of that pixel. When arrow_at_bottom is true the arrow is above arrow_tip_exterior_y and so the // tip pixel is in the right place, but when it's false the arrow is below arrow_tip_exterior_y From 69694494ce0a2b55da903a6bd274e0b5bc0d7cff Mon Sep 17 00:00:00 2001 From: iwubcode Date: Wed, 20 Mar 2024 17:27:02 -0500 Subject: [PATCH 114/223] Common: update 'ReadNumericOrDefault' to 'ReadNumericFromJson' and have it return an optional, this provides the caller with more flexibility --- Source/Core/Common/JsonUtil.cpp | 6 +++--- Source/Core/Common/JsonUtil.h | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/Core/Common/JsonUtil.cpp b/Source/Core/Common/JsonUtil.cpp index d16f37f4f36e..9ba23b6e1ee3 100644 --- a/Source/Core/Common/JsonUtil.cpp +++ b/Source/Core/Common/JsonUtil.cpp @@ -14,7 +14,7 @@ picojson::object ToJsonObject(const Common::Vec3& vec) void FromJson(const picojson::object& obj, Common::Vec3& vec) { - vec.x = ReadNumericOrDefault(obj, "x"); - vec.y = ReadNumericOrDefault(obj, "y"); - vec.z = ReadNumericOrDefault(obj, "z"); + vec.x = ReadNumericFromJson(obj, "x").value_or(0.0f); + vec.y = ReadNumericFromJson(obj, "y").value_or(0.0f); + vec.z = ReadNumericFromJson(obj, "z").value_or(0.0f); } diff --git a/Source/Core/Common/JsonUtil.h b/Source/Core/Common/JsonUtil.h index cee52432ffc8..b508970099c6 100644 --- a/Source/Core/Common/JsonUtil.h +++ b/Source/Core/Common/JsonUtil.h @@ -3,6 +3,7 @@ #pragma once +#include #include #include @@ -29,14 +30,13 @@ picojson::array ToJsonArray(const Range& data) } template -Type ReadNumericOrDefault(const picojson::object& obj, const std::string& key, - Type default_value = Type{}) +std::optional ReadNumericFromJson(const picojson::object& obj, const std::string& key) { const auto it = obj.find(key); if (it == obj.end()) - return default_value; + return std::nullopt; if (!it->second.is()) - return default_value; + return std::nullopt; return MathUtil::SaturatingCast(it->second.get()); } From 146504d6357513fded0eaf4edc77e0c2a1ee1640 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Tue, 19 Mar 2024 22:33:48 -0500 Subject: [PATCH 115/223] Common: add json utility functions 'ReadStringFromJson' and 'ReadBoolFromJson' to match 'ReadNumericFromJson' functionality for other data types, similarly support other data types for 'ToJsonArray' --- Source/Core/Common/JsonUtil.cpp | 20 ++++++++++++++++++++ Source/Core/Common/JsonUtil.h | 16 +++++++++++++++- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/Source/Core/Common/JsonUtil.cpp b/Source/Core/Common/JsonUtil.cpp index 9ba23b6e1ee3..3e842c5c18b5 100644 --- a/Source/Core/Common/JsonUtil.cpp +++ b/Source/Core/Common/JsonUtil.cpp @@ -18,3 +18,23 @@ void FromJson(const picojson::object& obj, Common::Vec3& vec) vec.y = ReadNumericFromJson(obj, "y").value_or(0.0f); vec.z = ReadNumericFromJson(obj, "z").value_or(0.0f); } + +std::optional ReadStringFromJson(const picojson::object& obj, const std::string& key) +{ + const auto it = obj.find(key); + if (it == obj.end()) + return std::nullopt; + if (!it->second.is()) + return std::nullopt; + return it->second.to_str(); +} + +std::optional ReadBoolFromJson(const picojson::object& obj, const std::string& key) +{ + const auto it = obj.find(key); + if (it == obj.end()) + return std::nullopt; + if (!it->second.is()) + return std::nullopt; + return it->second.get(); +} diff --git a/Source/Core/Common/JsonUtil.h b/Source/Core/Common/JsonUtil.h index b508970099c6..eec836d507b9 100644 --- a/Source/Core/Common/JsonUtil.h +++ b/Source/Core/Common/JsonUtil.h @@ -5,6 +5,7 @@ #include #include +#include #include @@ -18,12 +19,21 @@ template picojson::array ToJsonArray(const Range& data) { + using RangeUnderlyingType = typename Range::value_type; picojson::array result; result.reserve(std::size(data)); for (const auto& value : data) { - result.emplace_back(static_cast(value)); + if constexpr (std::is_integral_v || + std::is_floating_point_v) + { + result.emplace_back(static_cast(value)); + } + else + { + result.emplace_back(value); + } } return result; @@ -40,5 +50,9 @@ std::optional ReadNumericFromJson(const picojson::object& obj, const std:: return MathUtil::SaturatingCast(it->second.get()); } +std::optional ReadStringFromJson(const picojson::object& obj, const std::string& key); + +std::optional ReadBoolFromJson(const picojson::object& obj, const std::string& key); + picojson::object ToJsonObject(const Common::Vec3& vec); void FromJson(const picojson::object& obj, Common::Vec3& vec); From 719d76ab2efb83453a90e67c87e4cca80dda2342 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Wed, 20 Mar 2024 18:02:06 -0500 Subject: [PATCH 116/223] GCAdapter: Adjust libusb transfer timeout to 100ms. --- Source/Core/InputCommon/GCAdapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/InputCommon/GCAdapter.cpp b/Source/Core/InputCommon/GCAdapter.cpp index a14b6336bc1a..f839f4b0185d 100644 --- a/Source/Core/InputCommon/GCAdapter.cpp +++ b/Source/Core/InputCommon/GCAdapter.cpp @@ -59,7 +59,7 @@ namespace GCAdapter { #if GCADAPTER_USE_LIBUSB_IMPLEMENTATION -constexpr unsigned int USB_TIMEOUT_MS = 16; +constexpr unsigned int USB_TIMEOUT_MS = 100; static bool CheckDeviceAccess(libusb_device* device); static void AddGCAdapter(libusb_device* device); From f922129255b996bff481decf681f66bfabb0a086 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 16 Mar 2024 14:46:08 -0500 Subject: [PATCH 117/223] Core/State: Display messages on state write failures. --- Source/Core/Core/State.cpp | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index d60747deebb5..83c765520368 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -402,7 +402,7 @@ static void CompressAndDumpState(CompressAndDumpState_args& save_args) File::IOFile f(temp_filename, "wb"); if (!f) { - Core::DisplayMessage("Could not save state", 2000); + Core::DisplayMessage("Failed to create state file", 2000); return; } @@ -413,6 +413,9 @@ static void CompressAndDumpState(CompressAndDumpState_args& save_args) else f.WriteBytes(buffer_data, buffer_size); + if (!f.IsGood()) + Core::DisplayMessage("Failed to write state file", 2000); + const std::string last_state_filename = File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav"; const std::string last_state_dtmname = last_state_filename + ".dtm"; const std::string dtmname = filename + ".dtm"; @@ -448,12 +451,20 @@ static void CompressAndDumpState(CompressAndDumpState_args& save_args) // Move written state to final location. // TODO: This should also be atomic. This is possible on all systems, but needs a special // implementation of IOFile on Windows. - f.Close(); - File::Rename(temp_filename, filename); + if (!f.Close()) + Core::DisplayMessage("Failed to close state file", 2000); + + if (!File::Rename(temp_filename, filename)) + { + Core::DisplayMessage("Failed to rename state file", 2000); + } + else + { + const std::filesystem::path temp_path(filename); + Core::DisplayMessage(fmt::format("Saved State to {}", temp_path.filename().string()), 2000); + } } - std::filesystem::path tempfilename(filename); - Core::DisplayMessage(fmt::format("Saved State to {}", tempfilename.filename().string()), 2000); Host_UpdateMainFrame(); } From 550e008774e643fe245938241a17c36db9877a02 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 21 Mar 2024 09:09:35 -0500 Subject: [PATCH 118/223] VideoCommon: Scan texture dumping directory + subdirectories to not re-dump existing files. --- Source/Core/VideoCommon/TextureCacheBase.cpp | 7 +-- Source/Core/VideoCommon/TextureCacheBase.h | 3 + Source/Core/VideoCommon/TextureUtils.cpp | 65 ++++++++++++++++---- Source/Core/VideoCommon/TextureUtils.h | 15 ++++- 4 files changed, 71 insertions(+), 19 deletions(-) diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index e5b812298213..fbe4f107bf1d 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -52,7 +52,6 @@ #include "VideoCommon/TextureConversionShader.h" #include "VideoCommon/TextureConverterShaderGen.h" #include "VideoCommon/TextureDecoder.h" -#include "VideoCommon/TextureUtils.h" #include "VideoCommon/VertexManagerBase.h" #include "VideoCommon/VideoCommon.h" #include "VideoCommon/VideoConfig.h" @@ -1818,15 +1817,13 @@ RcTcacheEntry TextureCacheBase::CreateTextureEntry( const std::string basename = texture_info.CalculateTextureName().GetFullName(); if (g_ActiveConfig.bDumpBaseTextures) { - VideoCommon::TextureUtils::DumpTexture(*entry->texture, basename, 0, - entry->has_arbitrary_mips); + m_texture_dumper.DumpTexture(*entry->texture, basename, 0, entry->has_arbitrary_mips); } if (g_ActiveConfig.bDumpMipmapTextures) { for (u32 level = 1; level < texLevels; ++level) { - VideoCommon::TextureUtils::DumpTexture(*entry->texture, basename, level, - entry->has_arbitrary_mips); + m_texture_dumper.DumpTexture(*entry->texture, basename, level, entry->has_arbitrary_mips); } } } diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h index c6305a5813bb..998ff446d98f 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.h +++ b/Source/Core/VideoCommon/TextureCacheBase.h @@ -27,6 +27,7 @@ #include "VideoCommon/TextureConfig.h" #include "VideoCommon/TextureDecoder.h" #include "VideoCommon/TextureInfo.h" +#include "VideoCommon/TextureUtils.h" #include "VideoCommon/VideoEvents.h" class AbstractFramebuffer; @@ -460,6 +461,8 @@ class TextureCacheBase Common::EventHook m_frame_event = AfterFrameEvent::Register([this](Core::System&) { OnFrameEnd(); }, "TextureCache"); + + VideoCommon::TextureUtils::TextureDumper m_texture_dumper; }; extern std::unique_ptr g_texture_cache; diff --git a/Source/Core/VideoCommon/TextureUtils.cpp b/Source/Core/VideoCommon/TextureUtils.cpp index 9445cf16d674..907b1ac523f0 100644 --- a/Source/Core/VideoCommon/TextureUtils.cpp +++ b/Source/Core/VideoCommon/TextureUtils.cpp @@ -5,37 +5,76 @@ #include +#include "Common/FileSearch.h" #include "Common/FileUtil.h" +#include "Common/Logging/Log.h" + #include "Core/Config/GraphicsSettings.h" #include "Core/ConfigManager.h" #include "VideoCommon/AbstractTexture.h" +namespace +{ +std::string BuildDumpTextureFilename(std::string basename, u32 level, bool is_arbitrary) +{ + if (is_arbitrary) + basename += "_arb"; + + if (level > 0) + basename += fmt::format("_mip{}", level); + + return basename; +} +} // namespace namespace VideoCommon::TextureUtils { void DumpTexture(const ::AbstractTexture& texture, std::string basename, u32 level, bool is_arbitrary) { - std::string szDir = File::GetUserPath(D_DUMPTEXTURES_IDX) + SConfig::GetInstance().GetGameID(); + const std::string dump_dir = + File::GetUserPath(D_DUMPTEXTURES_IDX) + SConfig::GetInstance().GetGameID(); - // make sure that the directory exists - if (!File::IsDirectory(szDir)) - File::CreateDir(szDir); + if (!File::IsDirectory(dump_dir)) + File::CreateDir(dump_dir); - if (is_arbitrary) - { - basename += "_arb"; - } + const std::string name = BuildDumpTextureFilename(std::move(basename), level, is_arbitrary); + const std::string filename = fmt::format("{}/{}.png", dump_dir, name); - if (level > 0) + if (File::Exists(filename)) + return; + + texture.Save(filename, level, Config::Get(Config::GFX_TEXTURE_PNG_COMPRESSION_LEVEL)); +} + +void TextureDumper::DumpTexture(const ::AbstractTexture& texture, std::string basename, u32 level, + bool is_arbitrary) +{ + const std::string dump_dir = + File::GetUserPath(D_DUMPTEXTURES_IDX) + SConfig::GetInstance().GetGameID(); + + if (m_dumped_textures.empty()) { - basename += fmt::format("_mip{}", level); + if (!File::IsDirectory(dump_dir)) + File::CreateDir(dump_dir); + + for (auto& filename : Common::DoFileSearch({dump_dir}, {".png"}, true)) + { + std::string name; + SplitPath(filename, nullptr, &name, nullptr); + m_dumped_textures.insert(name); + } + + NOTICE_LOG_FMT(VIDEO, "Found {} dumped textures that will not be re-dumped.", + m_dumped_textures.size()); } - const std::string filename = fmt::format("{}/{}.png", szDir, basename); - if (File::Exists(filename)) + const std::string name = BuildDumpTextureFilename(std::move(basename), level, is_arbitrary); + const bool file_existed = !m_dumped_textures.insert(name).second; + if (file_existed) return; - texture.Save(filename, level, Config::Get(Config::GFX_TEXTURE_PNG_COMPRESSION_LEVEL)); + texture.Save(fmt::format("{}/{}.png", dump_dir, name), level, + Config::Get(Config::GFX_TEXTURE_PNG_COMPRESSION_LEVEL)); } } // namespace VideoCommon::TextureUtils diff --git a/Source/Core/VideoCommon/TextureUtils.h b/Source/Core/VideoCommon/TextureUtils.h index 1cfe6c20c1f7..b0edad1c7225 100644 --- a/Source/Core/VideoCommon/TextureUtils.h +++ b/Source/Core/VideoCommon/TextureUtils.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include "Common/CommonTypes.h" @@ -11,6 +12,18 @@ class AbstractTexture; namespace VideoCommon::TextureUtils { +class TextureDumper +{ +public: + // Only dumps if texture did not already exist anywhere within the dump-textures path. + void DumpTexture(const ::AbstractTexture& texture, std::string basename, u32 level, + bool is_arbitrary); + +private: + std::unordered_set m_dumped_textures; +}; + void DumpTexture(const ::AbstractTexture& texture, std::string basename, u32 level, bool is_arbitrary); -} + +} // namespace VideoCommon::TextureUtils From ae5da02cde2328a696d3a3fe518b99cdc7f057d5 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 22 Mar 2024 07:52:52 -0700 Subject: [PATCH 119/223] DolphinQt Settings: Signal Debug Font By Const Reference --- .../Core/DolphinQt/Debugger/CodeViewWidget.cpp | 11 ++++++++--- Source/Core/DolphinQt/Debugger/CodeViewWidget.h | 2 ++ .../Core/DolphinQt/Debugger/MemoryViewWidget.cpp | 8 ++++---- .../Core/DolphinQt/Debugger/MemoryViewWidget.h | 3 ++- .../Core/DolphinQt/Debugger/RegisterWidget.cpp | 2 +- Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp | 16 +++++++++------- Source/Core/DolphinQt/FIFO/FIFOAnalyzer.h | 3 +++ Source/Core/DolphinQt/Settings.h | 2 +- 8 files changed, 30 insertions(+), 17 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index a7b097b93c0a..d841ca52af1b 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -172,9 +172,8 @@ CodeViewWidget::CodeViewWidget() connect(this, &CodeViewWidget::customContextMenuRequested, this, &CodeViewWidget::OnContextMenu); connect(this, &CodeViewWidget::itemSelectionChanged, this, &CodeViewWidget::OnSelectionChanged); - connect(&Settings::Instance(), &Settings::DebugFontChanged, this, &QWidget::setFont); connect(&Settings::Instance(), &Settings::DebugFontChanged, this, - &CodeViewWidget::FontBasedSizing); + &CodeViewWidget::OnDebugFontChanged); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this] { m_address = m_system.GetPPCState().pc; @@ -208,7 +207,7 @@ void CodeViewWidget::FontBasedSizing() // just text width is too small with some fonts, so increase by a bit constexpr int extra_text_width = 8; - const QFontMetrics fm(Settings::Instance().GetDebugFont()); + const QFontMetrics fm(font()); const int rowh = fm.height() + 1; verticalHeader()->setMaximumSectionSize(rowh); @@ -745,6 +744,12 @@ void CodeViewWidget::AutoStep(CodeTrace::AutoStop option) } while (msgbox.clickedButton() == (QAbstractButton*)run_button); } +void CodeViewWidget::OnDebugFontChanged(const QFont& font) +{ + setFont(font); + FontBasedSizing(); +} + void CodeViewWidget::OnCopyAddress() { const u32 addr = GetContextAddress(); diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.h b/Source/Core/DolphinQt/Debugger/CodeViewWidget.h index 81e747c21aa5..9c4c4831b335 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.h @@ -10,6 +10,7 @@ #include "Common/CommonTypes.h" #include "Core/Debugger/CodeTrace.h" +class QFont; class QKeyEvent; class QMouseEvent; class QResizeEvent; @@ -78,6 +79,7 @@ class CodeViewWidget : public QTableWidget void OnContextMenu(); void AutoStep(CodeTrace::AutoStop option = CodeTrace::AutoStop::Always); + void OnDebugFontChanged(const QFont& font); void OnFollowBranch(); void OnCopyAddress(); void OnCopyTargetAddress(); diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp index 990b317b657c..078a7c6c1fb4 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp @@ -202,18 +202,18 @@ MemoryViewWidget::MemoryViewWidget(Core::System& system, QWidget* parent) connect(&Settings::Instance(), &Settings::ThemeChanged, this, &MemoryViewWidget::Update); // Also calls create table. - UpdateFont(); + UpdateFont(Settings::Instance().GetDebugFont()); } -void MemoryViewWidget::UpdateFont() +void MemoryViewWidget::UpdateFont(const QFont& font) { - const QFontMetrics fm(Settings::Instance().GetDebugFont()); + const QFontMetrics fm(font); m_font_vspace = fm.lineSpacing() + 4; // BoundingRect is too unpredictable, a custom one would be needed for each view type. Different // fonts have wildly different spacing between two characters and horizontalAdvance includes // spacing. m_font_width = fm.horizontalAdvance(QLatin1Char('0')); - m_table->setFont(Settings::Instance().GetDebugFont()); + m_table->setFont(font); CreateTable(); } diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h index 1ae6106154ba..ae2206dc7ac1 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.h @@ -7,6 +7,7 @@ #include "Common/CommonTypes.h" +class QFont; class QPoint; class QScrollBar; @@ -57,7 +58,7 @@ class MemoryViewWidget final : public QWidget void CreateTable(); void Update(); - void UpdateFont(); + void UpdateFont(const QFont& font); void ToggleBreakpoint(u32 addr, bool row); std::vector ConvertTextToBytes(Type type, QStringView input_text) const; diff --git a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp index b9ab4ad4dd12..47145752e61d 100644 --- a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp @@ -106,7 +106,7 @@ void RegisterWidget::ConnectWidgets() connect(m_table, &QTableWidget::customContextMenuRequested, this, &RegisterWidget::ShowContextMenu); connect(m_table, &QTableWidget::itemChanged, this, &RegisterWidget::OnItemChanged); - connect(&Settings::Instance(), &Settings::DebugFontChanged, m_table, &QWidget::setFont); + connect(&Settings::Instance(), &Settings::DebugFontChanged, m_table, &RegisterWidget::setFont); } void RegisterWidget::OnItemChanged(QTableWidgetItem* item) diff --git a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp index 12838fde317a..1324127f8c4e 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp +++ b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp @@ -51,13 +51,9 @@ FIFOAnalyzer::FIFOAnalyzer(FifoPlayer& fifo_player) : m_fifo_player(fifo_player) m_search_splitter->restoreState( settings.value(QStringLiteral("fifoanalyzer/searchsplitter")).toByteArray()); - m_detail_list->setFont(Settings::Instance().GetDebugFont()); - m_entry_detail_browser->setFont(Settings::Instance().GetDebugFont()); - - connect(&Settings::Instance(), &Settings::DebugFontChanged, this, [this] { - m_detail_list->setFont(Settings::Instance().GetDebugFont()); - m_entry_detail_browser->setFont(Settings::Instance().GetDebugFont()); - }); + OnDebugFontChanged(Settings::Instance().GetDebugFont()); + connect(&Settings::Instance(), &Settings::DebugFontChanged, this, + &FIFOAnalyzer::OnDebugFontChanged); } FIFOAnalyzer::~FIFOAnalyzer() @@ -779,3 +775,9 @@ void FIFOAnalyzer::UpdateDescription() object_size - entry_start, callback); m_entry_detail_browser->setText(callback.text); } + +void FIFOAnalyzer::OnDebugFontChanged(const QFont& font) +{ + m_detail_list->setFont(font); + m_entry_detail_browser->setFont(font); +} diff --git a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.h b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.h index e17bcb798d32..38a83d35c704 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.h +++ b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.h @@ -10,6 +10,7 @@ #include "Common/CommonTypes.h" class FifoPlayer; +class QFont; class QGroupBox; class QLabel; class QLineEdit; @@ -43,6 +44,8 @@ class FIFOAnalyzer final : public QWidget void UpdateDetails(); void UpdateDescription(); + void OnDebugFontChanged(const QFont& font); + FifoPlayer& m_fifo_player; QTreeWidget* m_tree_widget; diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index 5a7516d378c6..27325b141b5f 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -217,7 +217,7 @@ class Settings final : public QObject void JITVisibilityChanged(bool visible); void AssemblerVisibilityChanged(bool visible); void DebugModeToggled(bool enabled); - void DebugFontChanged(QFont font); + void DebugFontChanged(const QFont& font); void AutoUpdateTrackChanged(const QString& mode); void FallbackRegionChanged(const DiscIO::Region& region); void AnalyticsToggled(bool enabled); From 73f9904f2aa7f49ed81d790d43b60b5533bfe32a Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 22 Mar 2024 00:43:04 -0700 Subject: [PATCH 120/223] Core: Remove RunAsCPUThread It's a fine function, but CPUThreadGuard is more vogue. Also, its potential for being confused with RunOnCPUThread will not be missed. --- Source/Android/jni/MainAndroid.cpp | 1 - Source/Core/Core/AchievementManager.cpp | 20 ++++++------- Source/Core/Core/AchievementManager.h | 5 ++-- Source/Core/Core/Core.cpp | 22 +++----------- Source/Core/Core/Core.h | 20 +++---------- Source/Core/Core/HW/Wiimote.cpp | 3 +- .../Core/Core/HW/WiimoteReal/WiimoteReal.cpp | 21 +++++++------- Source/Core/Core/PowerPC/JitInterface.cpp | 29 +++++++++---------- Source/Core/DolphinQt/Host.cpp | 6 ++-- Source/Core/DolphinQt/Main.cpp | 2 +- Source/Core/DolphinQt/MainWindow.cpp | 26 ++++++++--------- 11 files changed, 64 insertions(+), 91 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 5f8f71a08b05..c6f9ba0cb199 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -515,7 +515,6 @@ Java_org_dolphinemu_dolphinemu_NativeLibrary_UpdateGCAdapterScanThread(JNIEnv*, JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_Initialize(JNIEnv*, jclass) { - // InitControllers ends up calling config code, and some config callbacks use RunAsCPUThread HostThreadLock guard; UICommon::CreateDirectories(); diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 41dfac879a49..9bb3bcddc247 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -689,7 +689,7 @@ void AchievementManager::DoFrame() time_t current_time = std::time(nullptr); if (difftime(current_time, m_last_ping_time) > 120) { - GenerateRichPresence(); + GenerateRichPresence(Core::CPUThreadGuard{*m_system}); m_queue.EmplaceItem([this] { PingRichPresence(m_rich_presence); }); m_last_ping_time = current_time; m_update_callback(); @@ -1341,17 +1341,15 @@ void AchievementManager::ActivateDeactivateAchievement(AchievementId id, bool en rc_runtime_deactivate_achievement(&m_runtime, id); } -void AchievementManager::GenerateRichPresence() +void AchievementManager::GenerateRichPresence(const Core::CPUThreadGuard& guard) { - Core::RunAsCPUThread([&] { - std::lock_guard lg{m_lock}; - rc_runtime_get_richpresence( - &m_runtime, m_rich_presence.data(), RP_SIZE, - [](unsigned address, unsigned num_bytes, void* ud) { - return static_cast(ud)->MemoryPeeker(address, num_bytes, ud); - }, - this, nullptr); - }); + std::lock_guard lg{m_lock}; + rc_runtime_get_richpresence( + &m_runtime, m_rich_presence.data(), RP_SIZE, + [](unsigned address, unsigned num_bytes, void* ud) { + return static_cast(ud)->MemoryPeeker(address, num_bytes, ud); + }, + this, nullptr); } AchievementManager::ResponseType AchievementManager::AwardAchievement(AchievementId achievement_id) diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 7d6c9441b1c8..770e64c18c8c 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -23,8 +23,9 @@ namespace Core { +class CPUThreadGuard; class System; -} +} // namespace Core namespace OSD { @@ -180,7 +181,7 @@ class AchievementManager std::unique_ptr& GetLoadingVolume() { return m_loading_volume; }; void ActivateDeactivateAchievement(AchievementId id, bool enabled, bool unofficial, bool encore); - void GenerateRichPresence(); + void GenerateRichPresence(const Core::CPUThreadGuard& guard); ResponseType AwardAchievement(AchievementId achievement_id); ResponseType SubmitLeaderboard(AchievementId leaderboard_id, int value); diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 565ff0d2ebb5..9a5242706d11 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -788,14 +788,14 @@ static std::string GenerateScreenshotName() void SaveScreenShot() { - Core::RunAsCPUThread([] { g_frame_dumper->SaveScreenshot(GenerateScreenshotName()); }); + const Core::CPUThreadGuard guard(Core::System::GetInstance()); + g_frame_dumper->SaveScreenshot(GenerateScreenshotName()); } void SaveScreenShot(std::string_view name) { - Core::RunAsCPUThread([&name] { - g_frame_dumper->SaveScreenshot(fmt::format("{}{}.png", GenerateScreenshotFolderPath(), name)); - }); + const Core::CPUThreadGuard guard(Core::System::GetInstance()); + g_frame_dumper->SaveScreenshot(fmt::format("{}{}.png", GenerateScreenshotFolderPath(), name)); } static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unlock) @@ -837,20 +837,6 @@ static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unl return was_unpaused; } -void RunAsCPUThread(std::function function) -{ - auto& system = Core::System::GetInstance(); - const bool is_cpu_thread = IsCPUThread(); - bool was_unpaused = false; - if (!is_cpu_thread) - was_unpaused = PauseAndLock(system, true, true); - - function(); - - if (!is_cpu_thread) - PauseAndLock(system, false, was_unpaused); -} - void RunOnCPUThread(std::function function, bool wait_for_completion) { // If the CPU thread is not running, assume there is no active CPU thread we can race against. diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index 1f9baa35b3d1..756451157322 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -94,13 +94,10 @@ enum class ConsoleType : u32 ReservedTDEVSystem = 0x20000007, }; -// Run a function as the CPU thread. This is an RAII alternative to the RunAsCPUThread function. -// -// If constructed from the Host thread, the CPU thread is paused and the current thread temporarily -// becomes the CPU thread. -// If constructed from the CPU thread, nothing special happens. -// -// This should only be constructed from the CPU thread or the host thread. +// This is an RAII alternative to using PauseAndLock. If constructed from the host thread, the CPU +// thread is paused, and the current thread temporarily becomes the CPU thread. If constructed from +// the CPU thread, nothing special happens. This should only be constructed on the CPU thread or the +// host thread. // // Some functions use a parameter of this type to indicate that the function should only be called // from the CPU thread. If the parameter is a pointer, the function has a fallback for being called @@ -158,15 +155,6 @@ void DisplayMessage(std::string message, int time_in_ms); void FrameUpdateOnCPUThread(); void OnFrameEnd(Core::System& system); -// Run a function as the CPU thread. -// -// If called from the Host thread, the CPU thread is paused and the current thread temporarily -// becomes the CPU thread while running the function. -// If called from the CPU thread, the function will be run directly. -// -// This should only be called from the CPU thread or the host thread. -void RunAsCPUThread(std::function function); - // Run a function on the CPU thread, asynchronously. // This is only valid to call from the host thread, since it uses PauseAndLock() internally. void RunOnCPUThread(std::function function, bool wait_for_completion); diff --git a/Source/Core/Core/HW/Wiimote.cpp b/Source/Core/Core/HW/Wiimote.cpp index 2fa2270635d0..4b9e95e34d07 100644 --- a/Source/Core/Core/HW/Wiimote.cpp +++ b/Source/Core/Core/HW/Wiimote.cpp @@ -50,7 +50,8 @@ void OnSourceChanged(unsigned int index, WiimoteSource source) WiimoteReal::HandleWiimoteSourceChange(index); - Core::RunAsCPUThread([index] { WiimoteCommon::UpdateSource(index); }); + const Core::CPUThreadGuard guard(Core::System::GetInstance()); + WiimoteCommon::UpdateSource(index); } void RefreshConfig() diff --git a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp index c376f536fe2f..e6ef006f408b 100644 --- a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp +++ b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp @@ -947,10 +947,11 @@ static bool TryToConnectWiimoteToSlot(std::unique_ptr& wm, unsigned int led_report.leds = u8(1 << (i % WIIMOTE_BALANCE_BOARD)); wm->QueueReport(led_report); - Core::RunAsCPUThread([i, &wm] { + { + const Core::CPUThreadGuard guard(Core::System::GetInstance()); g_wiimotes[i] = std::move(wm); WiimoteCommon::UpdateSource(i); - }); + } NOTICE_LOG_FMT(WIIMOTE, "Connected real wiimote to slot {}.", i + 1); @@ -967,12 +968,11 @@ static void TryToConnectBalanceBoard(std::unique_ptr wm) static void HandleWiimoteDisconnect(int index) { - Core::RunAsCPUThread([index] { - // The Wii Remote object must exist through the call to UpdateSource - // to prevent WiimoteDevice from having a dangling HIDWiimote pointer. - const auto temp_real_wiimote = std::move(g_wiimotes[index]); - WiimoteCommon::UpdateSource(index); - }); + const Core::CPUThreadGuard guard(Core::System::GetInstance()); + // The Wii Remote object must exist through the call to UpdateSource + // to prevent WiimoteDevice from having a dangling HIDWiimote pointer. + const auto temp_real_wiimote = std::move(g_wiimotes[index]); + WiimoteCommon::UpdateSource(index); } // This is called from the GUI thread @@ -1004,10 +1004,11 @@ void HandleWiimoteSourceChange(unsigned int index) { std::lock_guard wm_lk(g_wiimotes_mutex); - Core::RunAsCPUThread([index] { + { + const Core::CPUThreadGuard guard(Core::System::GetInstance()); if (auto removed_wiimote = std::move(g_wiimotes[index])) AddWiimoteToPool(std::move(removed_wiimote)); - }); + } g_controller_interface.PlatformPopulateDevices([] { ProcessWiimotePool(); }); } diff --git a/Source/Core/Core/PowerPC/JitInterface.cpp b/Source/Core/Core/PowerPC/JitInterface.cpp index 5073f297ae15..8372bf302ad9 100644 --- a/Source/Core/Core/PowerPC/JitInterface.cpp +++ b/Source/Core/Core/PowerPC/JitInterface.cpp @@ -160,22 +160,21 @@ void JitInterface::GetProfileResults(Profiler::ProfileStats* prof_stats) const prof_stats->timecost_sum = 0; prof_stats->block_stats.clear(); - Core::RunAsCPUThread([this, &prof_stats] { - QueryPerformanceFrequency((LARGE_INTEGER*)&prof_stats->countsPerSec); - m_jit->GetBlockCache()->RunOnBlocks([&prof_stats](const JitBlock& block) { - const auto& data = block.profile_data; - u64 cost = data.downcountCounter; - u64 timecost = data.ticCounter; - // Todo: tweak. - if (data.runCount >= 1) - prof_stats->block_stats.emplace_back(block.effectiveAddress, cost, timecost, data.runCount, - block.codeSize); - prof_stats->cost_sum += cost; - prof_stats->timecost_sum += timecost; - }); - - sort(prof_stats->block_stats.begin(), prof_stats->block_stats.end()); + const Core::CPUThreadGuard guard(m_system); + QueryPerformanceFrequency((LARGE_INTEGER*)&prof_stats->countsPerSec); + m_jit->GetBlockCache()->RunOnBlocks([&prof_stats](const JitBlock& block) { + const auto& data = block.profile_data; + u64 cost = data.downcountCounter; + u64 timecost = data.ticCounter; + // Todo: tweak. + if (data.runCount >= 1) + prof_stats->block_stats.emplace_back(block.effectiveAddress, cost, timecost, data.runCount, + block.codeSize); + prof_stats->cost_sum += cost; + prof_stats->timecost_sum += timecost; }); + + sort(prof_stats->block_stats.begin(), prof_stats->block_stats.end()); } std::variant diff --git a/Source/Core/DolphinQt/Host.cpp b/Source/Core/DolphinQt/Host.cpp index c7f7c1d6fb23..6cc4b952edf5 100644 --- a/Source/Core/DolphinQt/Host.cpp +++ b/Source/Core/DolphinQt/Host.cpp @@ -112,9 +112,9 @@ static void RunWithGPUThreadInactive(std::function f) } else { - // If we reach here, we can call Core::PauseAndLock (which we do using RunAsCPUThread). - - Core::RunAsCPUThread(std::move(f)); + // If we reach here, we can call Core::PauseAndLock (which we do using a CPUThreadGuard). + const Core::CPUThreadGuard guard(Core::System::GetInstance()); + f(); } } diff --git a/Source/Core/DolphinQt/Main.cpp b/Source/Core/DolphinQt/Main.cpp index 52f158330943..6ea70886ee86 100644 --- a/Source/Core/DolphinQt/Main.cpp +++ b/Source/Core/DolphinQt/Main.cpp @@ -52,7 +52,7 @@ static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no std::optional r = RunOnObject(QApplication::instance(), [&] { // If we were called from the CPU/GPU thread, set us as the CPU/GPU thread. // This information is used in order to avoid deadlocks when calling e.g. - // Host::SetRenderFocus or Core::RunAsCPUThread. (Host::SetRenderFocus + // Host::SetRenderFocus or Core::CPUThreadGuard. (Host::SetRenderFocus // can get called automatically when a dialog steals the focus.) Common::ScopeGuard cpu_scope_guard(&Core::UndeclareAsCPUThread); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 576759bd52aa..4b70c1cb7935 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1932,12 +1932,13 @@ void MainWindow::OnStopRecording() void MainWindow::OnExportRecording() { - Core::RunAsCPUThread([this] { - QString dtm_file = DolphinFileDialog::getSaveFileName( - this, tr("Save Recording File As"), QString(), tr("Dolphin TAS Movies (*.dtm)")); - if (!dtm_file.isEmpty()) - Core::System::GetInstance().GetMovie().SaveRecording(dtm_file.toStdString()); - }); + auto& system = Core::System::GetInstance(); + const Core::CPUThreadGuard guard(system); + + QString dtm_file = DolphinFileDialog::getSaveFileName( + this, tr("Save Recording File As"), QString(), tr("Dolphin TAS Movies (*.dtm)")); + if (!dtm_file.isEmpty()) + system.GetMovie().SaveRecording(dtm_file.toStdString()); } void MainWindow::OnActivateChat() @@ -1990,13 +1991,12 @@ void MainWindow::ShowTASInput() void MainWindow::OnConnectWiiRemote(int id) { - Core::RunAsCPUThread([&] { - if (const auto bt = WiiUtils::GetBluetoothEmuDevice()) - { - const auto wm = bt->AccessWiimoteByIndex(id); - wm->Activate(!wm->IsConnected()); - } - }); + const Core::CPUThreadGuard guard(Core::System::GetInstance()); + if (const auto bt = WiiUtils::GetBluetoothEmuDevice()) + { + const auto wm = bt->AccessWiimoteByIndex(id); + wm->Activate(!wm->IsConnected()); + } } #ifdef USE_RETRO_ACHIEVEMENTS From 9f0a7c987522d89ffa503ed04a00205fb10d035d Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 23 Mar 2024 14:30:00 +0100 Subject: [PATCH 121/223] JitArm64: Skip SXTW in ComputeRC0(u64) MOVI2R can set the upper bits to ones for free by using MOVN instead of MOVZ. --- Source/Core/Core/PowerPC/JitArm64/Jit.h | 2 +- Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.h b/Source/Core/Core/PowerPC/JitArm64/Jit.h index ad9c7e4672f2..6d0ded667a5f 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.h +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.h @@ -351,7 +351,7 @@ class JitArm64 : public JitBase, public Arm64Gen::ARM64CodeBlock, public CommonA void UpdateRoundingMode(); void ComputeRC0(Arm64Gen::ARM64Reg reg); - void ComputeRC0(u64 imm); + void ComputeRC0(u32 imm); void ComputeCarry(Arm64Gen::ARM64Reg reg); // reg must contain 0 or 1 void ComputeCarry(bool carry); void ComputeCarry(); diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp index 43c90c98270b..0c002bac66c9 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp @@ -37,12 +37,10 @@ void JitArm64::ComputeRC0(ARM64Reg reg) SXTW(gpr.CR(0), reg); } -void JitArm64::ComputeRC0(u64 imm) +void JitArm64::ComputeRC0(u32 imm) { gpr.BindCRToRegister(0, false); - MOVI2R(gpr.CR(0), imm); - if (imm & 0x80000000) - SXTW(gpr.CR(0), EncodeRegTo32(gpr.CR(0))); + MOVI2R(gpr.CR(0), s64(s32(imm))); } void JitArm64::ComputeCarry(ARM64Reg reg) From 825a10616c58e0dd7a733fed9d684ccadc97826c Mon Sep 17 00:00:00 2001 From: Bram Speeckaert Date: Sat, 23 Mar 2024 13:02:41 +0100 Subject: [PATCH 122/223] DivUtils: Add unsigned division magic function Takes the logic from Jit64 and moves it into DivUtils, so it can be reused by other backends as well. --- .../Core/Core/PowerPC/Jit64/Jit_Integer.cpp | 2 +- .../PowerPC/JitArm64/JitArm64_Integer.cpp | 2 +- .../Core/Core/PowerPC/JitCommon/DivUtils.cpp | 42 ++++++++++++++++--- Source/Core/Core/PowerPC/JitCommon/DivUtils.h | 25 ++++++++++- .../UnitTests/Core/PowerPC/DivUtilsTest.cpp | 41 +++++++++++++++--- 5 files changed, 97 insertions(+), 15 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index afc1c9a9203a..671bd9fa9e94 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -1792,7 +1792,7 @@ void Jit64::divwx(UGeckoInstruction inst) else { // Optimize signed 32-bit integer division by a constant - Magic m = SignedDivisionConstants(divisor); + SignedMagic m = SignedDivisionConstants(divisor); MOVSX(64, 32, RSCRATCH, Ra); diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp index 43c90c98270b..95f75a3f2a27 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp @@ -1675,7 +1675,7 @@ void JitArm64::divwx(UGeckoInstruction inst) else { // Optimize signed 32-bit integer division by a constant - Magic m = SignedDivisionConstants(divisor); + SignedMagic m = SignedDivisionConstants(divisor); ARM64Reg WA = gpr.GetReg(); ARM64Reg WB = gpr.GetReg(); diff --git a/Source/Core/Core/PowerPC/JitCommon/DivUtils.cpp b/Source/Core/Core/PowerPC/JitCommon/DivUtils.cpp index f1b6a1baf69e..4648407e866a 100644 --- a/Source/Core/Core/PowerPC/JitCommon/DivUtils.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/DivUtils.cpp @@ -3,16 +3,18 @@ #include "Core/PowerPC/JitCommon/DivUtils.h" +#include +#include #include namespace JitCommon { -Magic SignedDivisionConstants(s32 d) +SignedMagic SignedDivisionConstants(s32 divisor) { const u32 two31 = 2147483648; - const u32 ad = std::abs(d); - const u32 t = two31 - (d < 0); + const u32 ad = std::abs(divisor); + const u32 t = two31 - (divisor < 0); const u32 anc = t - 1 - t % ad; u32 q1 = two31 / anc; u32 r1 = two31 - q1 * anc; @@ -44,13 +46,43 @@ Magic SignedDivisionConstants(s32 d) delta = ad - r2; } while (q1 < delta || (q1 == delta && r1 == 0)); - Magic mag; + SignedMagic mag; mag.multiplier = q2 + 1; - if (d < 0) + if (divisor < 0) mag.multiplier = -mag.multiplier; mag.shift = p - 32; return mag; } +UnsignedMagic UnsignedDivisionConstants(u32 divisor) +{ + u32 shift = 31 - std::countl_zero(divisor); + + u64 magic_dividend = 0x100000000ULL << shift; + u32 multiplier = magic_dividend / divisor; + u32 max_quotient = multiplier >> shift; + + // Test for failure in round-up method + u32 round_up = (u64(multiplier + 1) * (max_quotient * divisor - 1)) >> (shift + 32); + bool fast = round_up == max_quotient - 1; + + if (fast) + { + multiplier++; + + // Use smallest magic number and shift amount possible + u32 trailing_zeroes = std::min(shift, u32(std::countr_zero(multiplier))); + multiplier >>= trailing_zeroes; + shift -= trailing_zeroes; + } + + UnsignedMagic mag; + mag.multiplier = multiplier; + mag.shift = shift; + mag.fast = fast; + + return mag; +} + } // namespace JitCommon diff --git a/Source/Core/Core/PowerPC/JitCommon/DivUtils.h b/Source/Core/Core/PowerPC/JitCommon/DivUtils.h index 73d91426e1f8..2cc3f2e494b6 100644 --- a/Source/Core/Core/PowerPC/JitCommon/DivUtils.h +++ b/Source/Core/Core/PowerPC/JitCommon/DivUtils.h @@ -7,7 +7,7 @@ namespace JitCommon { -struct Magic +struct SignedMagic { s32 multiplier; u8 shift; @@ -16,6 +16,27 @@ struct Magic // Calculate the constants required to optimize a signed 32-bit integer division. // Taken from The PowerPC Compiler Writer's Guide and LLVM. // Divisor must not be -1, 0, 1 or INT_MIN. -Magic SignedDivisionConstants(s32 divisor); +SignedMagic SignedDivisionConstants(s32 divisor); + +struct UnsignedMagic +{ + u32 multiplier; + u8 shift; + bool fast; +}; + +/// Calculate the constants required to optimize an unsigned 32-bit integer +/// division. +/// Divisor must not be 0, 1, or a power of two. +/// +/// Original implementation by calc84maniac. +/// Results are the same as the approach laid out in Hacker's Delight, with an +/// improvement for so-called uncooperative divisors (e.g. 7), as discovered by +/// ridiculousfish. +/// +/// See also: +/// https://ridiculousfish.com/blog/posts/labor-of-division-episode-iii.html +/// https://rubenvannieuwpoort.nl/posts/division-by-constant-unsigned-integers +UnsignedMagic UnsignedDivisionConstants(u32 divisor); } // namespace JitCommon diff --git a/Source/UnitTests/Core/PowerPC/DivUtilsTest.cpp b/Source/UnitTests/Core/PowerPC/DivUtilsTest.cpp index 894d0f628ab3..b218745849c4 100644 --- a/Source/UnitTests/Core/PowerPC/DivUtilsTest.cpp +++ b/Source/UnitTests/Core/PowerPC/DivUtilsTest.cpp @@ -9,12 +9,12 @@ using namespace JitCommon; TEST(DivUtils, Signed) { - Magic m3 = SignedDivisionConstants(3); - Magic m5 = SignedDivisionConstants(5); - Magic m7 = SignedDivisionConstants(7); - Magic minus3 = SignedDivisionConstants(-3); - Magic minus5 = SignedDivisionConstants(-5); - Magic minus7 = SignedDivisionConstants(-7); + SignedMagic m3 = SignedDivisionConstants(3); + SignedMagic m5 = SignedDivisionConstants(5); + SignedMagic m7 = SignedDivisionConstants(7); + SignedMagic minus3 = SignedDivisionConstants(-3); + SignedMagic minus5 = SignedDivisionConstants(-5); + SignedMagic minus7 = SignedDivisionConstants(-7); EXPECT_EQ(0x55555556, m3.multiplier); EXPECT_EQ(0, m3.shift); @@ -30,3 +30,32 @@ TEST(DivUtils, Signed) EXPECT_EQ(0x6DB6DB6D, minus7.multiplier); EXPECT_EQ(2, minus7.shift); } + +TEST(DivUtils, Unsigned) +{ + UnsignedMagic m3 = UnsignedDivisionConstants(3); + UnsignedMagic m5 = UnsignedDivisionConstants(5); + UnsignedMagic m7 = UnsignedDivisionConstants(7); + UnsignedMagic m9 = UnsignedDivisionConstants(9); + UnsignedMagic m19 = UnsignedDivisionConstants(19); + + EXPECT_EQ(0xAAAAAAABU, m3.multiplier); + EXPECT_EQ(1, m3.shift); + EXPECT_TRUE(m3.fast); + + EXPECT_EQ(0xCCCCCCCDU, m5.multiplier); + EXPECT_EQ(2, m5.shift); + EXPECT_TRUE(m5.fast); + + EXPECT_EQ(0x92492492U, m7.multiplier); + EXPECT_EQ(2, m7.shift); + EXPECT_FALSE(m7.fast); + + EXPECT_EQ(0x38E38E39U, m9.multiplier); + EXPECT_EQ(1, m9.shift); + EXPECT_TRUE(m9.fast); + + EXPECT_EQ(0xD79435E5U, m19.multiplier); + EXPECT_EQ(4, m19.shift); + EXPECT_FALSE(m19.fast); +} From 749ee2ff5e0d80ea260160403c1a2d33491d1100 Mon Sep 17 00:00:00 2001 From: Bram Speeckaert Date: Sat, 23 Mar 2024 13:05:57 +0100 Subject: [PATCH 123/223] Jit64: Refactor divwux Now that we've moved the logic to DivUtils, refactor the Jit64 code to use it. --- .../Core/Core/PowerPC/Jit64/Jit_Integer.cpp | 37 ++++++------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index 671bd9fa9e94..9925fd4c0db2 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -1451,12 +1451,10 @@ void Jit64::divwux(UGeckoInstruction inst) } else { - u32 shift = 31; - while (!(divisor & (1 << shift))) - shift--; - - if (divisor == (u32)(1 << shift)) + if (MathUtil::IsPow2(divisor)) { + u32 shift = MathUtil::IntLog2(divisor); + RCOpArg Ra = gpr.Use(a, RCMode::Read); RCX64Reg Rd = gpr.Bind(d, RCMode::Write); RegCache::Realize(Ra, Rd); @@ -1468,24 +1466,22 @@ void Jit64::divwux(UGeckoInstruction inst) } else { - u64 magic_dividend = 0x100000000ULL << shift; - u32 magic = (u32)(magic_dividend / divisor); - u32 max_quotient = magic >> shift; + UnsignedMagic m = UnsignedDivisionConstants(divisor); // Test for failure in round-up method - if (((u64)(magic + 1) * (max_quotient * divisor - 1)) >> (shift + 32) != max_quotient - 1) + if (!m.fast) { // If failed, use slower round-down method RCOpArg Ra = gpr.Use(a, RCMode::Read); RCX64Reg Rd = gpr.Bind(d, RCMode::Write); RegCache::Realize(Ra, Rd); - MOV(32, R(RSCRATCH), Imm32(magic)); + MOV(32, R(RSCRATCH), Imm32(m.multiplier)); if (d != a) MOV(32, Rd, Ra); IMUL(64, Rd, R(RSCRATCH)); ADD(64, Rd, R(RSCRATCH)); - SHR(64, Rd, Imm8(shift + 32)); + SHR(64, Rd, Imm8(m.shift + 32)); } else { @@ -1494,32 +1490,23 @@ void Jit64::divwux(UGeckoInstruction inst) RCX64Reg Rd = gpr.Bind(d, RCMode::Write); RegCache::Realize(Ra, Rd); - magic++; - - // Use smallest magic number and shift amount possible - while ((magic & 1) == 0 && shift > 0) - { - magic >>= 1; - shift--; - } - // Three-operand IMUL sign extends the immediate to 64 bits, so we may only // use it when the magic number has its most significant bit set to 0 - if ((magic & 0x80000000) == 0) + if ((m.multiplier & 0x80000000) == 0) { - IMUL(64, Rd, Ra, Imm32(magic)); + IMUL(64, Rd, Ra, Imm32(m.multiplier)); } else if (d == a) { - MOV(32, R(RSCRATCH), Imm32(magic)); + MOV(32, R(RSCRATCH), Imm32(m.multiplier)); IMUL(64, Rd, R(RSCRATCH)); } else { - MOV(32, Rd, Imm32(magic)); + MOV(32, Rd, Imm32(m.multiplier)); IMUL(64, Rd, Ra); } - SHR(64, Rd, Imm8(shift + 32)); + SHR(64, Rd, Imm8(m.shift + 32)); } } if (inst.OE) From 2580837c60b991ae34e7f7ae4b562e382857c4de Mon Sep 17 00:00:00 2001 From: Bram Speeckaert Date: Sat, 23 Mar 2024 13:08:35 +0100 Subject: [PATCH 124/223] JitArm64: Optimize divwux When the divisor is a constant value, we can emit more efficient code. For powers of two, we can use bit shifts. For other values, we can instead use a multiplication by magic constant method. - Example 1 - Division by 16 (power of two) Before: mov w24, #0x10 ; =16 udiv w27, w25, w24 After: lsr w27, w25, #4 - Example 2 - Division by 10 (fast) Before: mov w25, #0xa ; =10 udiv w27, w26, w25 After: mov w27, #0xcccd ; =52429 movk w27, #0xcccc, lsl #16 umull x27, w26, w27 lsr x27, x27, #35 - Example 3 - Division by 127 (slow) Before: mov w26, #0x7f ; =127 udiv w27, w27, w26 After: mov w26, #0x408 ; =1032 movk w26, #0x8102, lsl #16 umaddl x27, w27, w26, x26 lsr x27, x27, #38 --- .../PowerPC/JitArm64/JitArm64_Integer.cpp | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp index 95f75a3f2a27..b5ebfc8bf4e5 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp @@ -1538,6 +1538,60 @@ void JitArm64::divwux(UGeckoInstruction inst) if (inst.Rc) ComputeRC0(gpr.GetImm(d)); } + else if (gpr.IsImm(b)) + { + const u32 divisor = gpr.GetImm(b); + + if (divisor == 0) + { + gpr.SetImmediate(d, 0); + if (inst.Rc) + ComputeRC0(0); + } + else + { + const bool allocate_reg = d == a; + gpr.BindToRegister(d, allocate_reg); + + ARM64Reg RD = gpr.R(d); + ARM64Reg RA = gpr.R(a); + + if (MathUtil::IsPow2(divisor)) + { + int shift = MathUtil::IntLog2(divisor); + if (shift) + LSR(RD, RA, shift); + else if (d != a) + MOV(RD, RA); + } + else + { + UnsignedMagic m = UnsignedDivisionConstants(divisor); + + ARM64Reg WI = allocate_reg ? gpr.GetReg() : RD; + ARM64Reg XD = EncodeRegTo64(RD); + + MOVI2R(WI, m.multiplier); + + if (m.fast) + { + UMULL(XD, RA, WI); + } + else + { + UMADDL(XD, RA, WI, EncodeRegTo64(WI)); + } + + LSR(XD, XD, 32 + m.shift); + + if (allocate_reg) + gpr.Unlock(WI); + } + + if (inst.Rc) + ComputeRC0(gpr.R(d)); + } + } else { gpr.BindToRegister(d, d == a || d == b); From 02f57a47785c89d5574bf9cfd8d6b6279f93e60d Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 23 Mar 2024 00:18:51 -0500 Subject: [PATCH 125/223] Replace SCM_IS_MASTER with SCM_COMMITS_AHEAD_MASTER --- CMake/ScmRevGen.cmake | 11 +++++------ Source/Core/Common/Version.cpp | 9 ++++++++- Source/Core/Common/Version.h | 1 + Source/Core/Common/make_scmrev.h.js | 5 +++-- Source/Core/Common/scmrev.h.in | 2 +- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index aacf7491ce7e..5ec304113412 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -18,6 +18,10 @@ if(GIT_FOUND) execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD OUTPUT_VARIABLE DOLPHIN_WC_BRANCH OUTPUT_STRIP_TRAILING_WHITESPACE) + # defines DOLPHIN_WC_COMMITS_AHEAD_MASTER + 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) endif() # version number @@ -35,12 +39,7 @@ if(NOT DOLPHIN_WC_REVISION) set(DOLPHIN_WC_DESCRIBE "${DOLPHIN_VERSION_MAJOR}.${DOLPHIN_VERSION_MINOR}") set(DOLPHIN_WC_REVISION "${DOLPHIN_WC_DESCRIBE} (no further info)") set(DOLPHIN_WC_BRANCH "master") -endif() - -if(DOLPHIN_WC_BRANCH STREQUAL "master" OR DOLPHIN_WC_BRANCH STREQUAL "stable") - set(DOLPHIN_WC_IS_STABLE "1") -else() - set(DOLPHIN_WC_IS_STABLE "0") + set(DOLPHIN_WC_COMMITS_AHEAD_MASTER 0) endif() configure_file( diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 7801aaae3061..25c678f0615d 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -20,7 +20,8 @@ namespace Common const std::string& GetScmRevStr() { static const std::string scm_rev_str = "Dolphin " -#if !SCM_IS_MASTER + // Note this macro can be empty if the master branch does not exist. +#if 1 - SCM_COMMITS_AHEAD_MASTER - 1 != 0 "[" SCM_BRANCH_STR "] " #endif @@ -74,4 +75,10 @@ const std::string& GetNetplayDolphinVer() return netplay_dolphin_ver; } +int GetScmCommitsAheadMaster() +{ + // Note this macro can be empty if the master branch does not exist. + return SCM_COMMITS_AHEAD_MASTER + 0; +} + } // namespace Common diff --git a/Source/Core/Common/Version.h b/Source/Core/Common/Version.h index 7aee07f84e21..72f34541ecb1 100644 --- a/Source/Core/Common/Version.h +++ b/Source/Core/Common/Version.h @@ -14,4 +14,5 @@ const std::string& GetScmRevGitStr(); const std::string& GetScmDistributorStr(); const std::string& GetScmUpdateTrackStr(); const std::string& GetNetplayDolphinVer(); +int GetScmCommitsAheadMaster(); } // namespace Common diff --git a/Source/Core/Common/make_scmrev.h.js b/Source/Core/Common/make_scmrev.h.js index 8599b7f45ca4..298f4e0505ba 100644 --- a/Source/Core/Common/make_scmrev.h.js +++ b/Source/Core/Common/make_scmrev.h.js @@ -5,6 +5,7 @@ var outfile = "./scmrev.h"; 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"; function GetGitExe() { @@ -76,7 +77,7 @@ var gitexe = GetGitExe(); var revision = GetFirstStdOutLine(gitexe + cmd_revision); var describe = GetFirstStdOutLine(gitexe + cmd_describe); var branch = GetFirstStdOutLine(gitexe + cmd_branch); -var isStable = +("master" == branch || "stable" == branch); +var commits_ahead = GetFirstStdOutLine(gitexe + cmd_commits_ahead); // Get environment information. var distributor = wshShell.ExpandEnvironmentStrings("%DOLPHIN_DISTRIBUTOR%"); @@ -91,7 +92,7 @@ var out_contents = "#define SCM_REV_STR \"" + revision + "\"\n" + "#define SCM_DESC_STR \"" + describe + "\"\n" + "#define SCM_BRANCH_STR \"" + branch + "\"\n" + - "#define SCM_IS_MASTER " + isStable + "\n" + + "#define SCM_COMMITS_AHEAD_MASTER " + commits_ahead + "\n" + "#define SCM_DISTRIBUTOR_STR \"" + distributor + "\"\n" + "#define SCM_UPDATE_TRACK_STR \"" + default_update_track + "\"\n"; diff --git a/Source/Core/Common/scmrev.h.in b/Source/Core/Common/scmrev.h.in index db0c4ae7abad..42aed93c4156 100644 --- a/Source/Core/Common/scmrev.h.in +++ b/Source/Core/Common/scmrev.h.in @@ -1,6 +1,6 @@ #define SCM_REV_STR "${DOLPHIN_WC_REVISION}" #define SCM_DESC_STR "${DOLPHIN_WC_DESCRIBE}" #define SCM_BRANCH_STR "${DOLPHIN_WC_BRANCH}" -#define SCM_IS_MASTER ${DOLPHIN_WC_IS_STABLE} +#define SCM_COMMITS_AHEAD_MASTER ${DOLPHIN_WC_COMMITS_AHEAD_MASTER} #define SCM_DISTRIBUTOR_STR "${DISTRIBUTOR}" #define SCM_UPDATE_TRACK_STR "${DOLPHIN_DEFAULT_UPDATE_TRACK}" From 38117ef066135aeedf630bab357fbc161bada6e0 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 23 Mar 2024 00:18:56 -0500 Subject: [PATCH 126/223] DolphinQt: Update AboutDialog to include number of commits ahead of master. --- Source/Core/DolphinQt/AboutDialog.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/AboutDialog.cpp b/Source/Core/DolphinQt/AboutDialog.cpp index 8bb8957f6118..c051b803fc76 100644 --- a/Source/Core/DolphinQt/AboutDialog.cpp +++ b/Source/Core/DolphinQt/AboutDialog.cpp @@ -17,6 +17,16 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) setWindowTitle(tr("About Dolphin")); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); + QString branch_str = QString::fromStdString(Common::GetScmBranchStr()); + const int commits_ahead = Common::GetScmCommitsAheadMaster(); + if (commits_ahead > 0) + { + branch_str = tr("%1 (%2)").arg( + branch_str, + // i18n: A positive number of version control commits made compared to some named branch + tr("%1 commit(s) ahead of %2").arg(commits_ahead).arg(QStringLiteral("master"))); + } + const QString text = QStringLiteral(R"(

Dolphin

@@ -50,7 +60,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) QString::fromUtf8(Common::GetScmDescStr().c_str())) .replace(QStringLiteral("%BRANCH%"), // i18n: "Branch" means the version control term, not a literal tree branch. - tr("Branch: %1").arg(QString::fromUtf8(Common::GetScmBranchStr().c_str()))) + tr("Branch: %1").arg(branch_str)) .replace(QStringLiteral("%REVISION%"), tr("Revision: %1").arg(QString::fromUtf8(Common::GetScmRevGitStr().c_str()))) .replace(QStringLiteral("%QT_VERSION%"), From a98bceba9f37be4dd7dd124aa3018b012392e914 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 23 Mar 2024 23:56:02 +0100 Subject: [PATCH 127/223] Add Bloom Definitions for Skylanders Giants --- .../GraphicMods/Skylanders Giants/SKY.txt | 0 .../Skylanders Giants/metadata.json | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 Data/Sys/Load/GraphicMods/Skylanders Giants/SKY.txt create mode 100644 Data/Sys/Load/GraphicMods/Skylanders Giants/metadata.json diff --git a/Data/Sys/Load/GraphicMods/Skylanders Giants/SKY.txt b/Data/Sys/Load/GraphicMods/Skylanders Giants/SKY.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/Data/Sys/Load/GraphicMods/Skylanders Giants/metadata.json b/Data/Sys/Load/GraphicMods/Skylanders Giants/metadata.json new file mode 100644 index 000000000000..b1191383d581 --- /dev/null +++ b/Data/Sys/Load/GraphicMods/Skylanders Giants/metadata.json @@ -0,0 +1,19 @@ +{ + "meta": + { + "title": "Bloom Texture Definitions", + "author": "SuperSamus" + }, + "groups": + [ + { + "name": "Bloom", + "targets": [ + { + "type": "efb", + "texture_filename": "efb1_n000007_80x57_6" + } + ] + } + ] +} From 28da3160c3cb73fbcd21fb248ef62f1e7d80e24f Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 2 Mar 2024 16:02:50 +0100 Subject: [PATCH 128/223] DolphinQt: Tweak the aspect ratio setting description With this, I intend to make it clearer that Auto, Force 4:3, Force 16:9 and Custom are really the same thing, just with the aspect ratio of the simulated TV being selected in a different way. I also extended the introduction in a way I feel will clarify things but which you are welcome to bikeshed :) I was thinking of this during the review of 41b19e262f, but wanted to put it in a separate PR as to avoid blocking it on bikeshedding. I'm a bit unsure what to do about the word "analog" in "analog TV". I felt that repeating it for each of these options would be too repetitive. I suppose there's a reason why we used the word originally, but digital TVs do give you basically the same aspect ratio for GC/Wii games as analog TVs. (Of course, whether it's 4:3-like or 16:9-like depends on what aspect ratio you set in the TV's settings, but that's the case for widescreen CRTs too.) --- .../Config/Graphics/GeneralWidget.cpp | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp index c419cabc97dd..72155597201f 100644 --- a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp @@ -251,17 +251,23 @@ void GeneralWidget::AddDescriptions() "a separate render window.

If unsure, leave " "this unchecked."); static const char TR_ASPECT_RATIO_DESCRIPTION[] = QT_TR_NOOP( - "Selects which aspect ratio to use when drawing on the render window.
" - "Each game can have a slightly different native aspect ratio.
They can vary by " - "scene and settings and rarely ever exactly match 4:3 or 16:9." - "

Auto: Uses the native aspect ratio" - "

Force 16:9: Mimics an analog TV with a widescreen aspect ratio." - "

Force 4:3: Mimics a standard 4:3 analog TV." - "

Stretch to Window: Stretches the picture to the window size." - "

Custom: Forces the specified aspect ratio." - "
This is mostly intended to be used with aspect ratio cheats/mods." - "

Custom (Stretch): Similar to `Custom` but not relative to the " - "title's native aspect ratio.
This is not meant to be used under normal circumstances." + "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 game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut off by the " + "edges of the TV, or the image wouldn't fill the TV entirely. By default, Dolphin shows the " + "whole image without distorting its proportions, which means it's normal for the image to " + "not entirely fill your display." + "

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, depending on which " + "type of TV the game seems to be targeting." + "

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." + "

Force 4:3: Mimics a TV with a 4:3 aspect ratio." + "

Stretch to Window: Stretches the image to the window size. " + "This will usually distort the image's proportions." + "

Custom: Mimics a TV with the specified aspect ratio. " + "This is mostly intended to be used with aspect ratio cheats/mods." + "

Custom (Stretch): Similar to `Custom`, but stretches the image to the " + "specified aspect ratio. This will usually distort the image's proportions, and should not " + "be used under normal circumstances." "

If unsure, select Auto."); static const char TR_VSYNC_DESCRIPTION[] = QT_TR_NOOP( "Waits for vertical blanks in order to prevent tearing.

Decreases performance " From c85f5f802315d4de94efba1f6937eb9ed1709579 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sun, 24 Mar 2024 11:58:04 -0700 Subject: [PATCH 129/223] DSPHLE: Redefine asnd SwapLeftRight to apply to old versions --- Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp | 8 +++++--- Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp index bb255dfb5b56..ee8345cb171a 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp @@ -57,7 +57,8 @@ constexpr u32 SAMPLE_RATE = 48000; bool ASndUCode::SwapLeftRight() const { - return m_crc == HASH_DESERT_BUS_2011 || m_crc == HASH_DESERT_BUS_2012; + return m_crc == HASH_2008 || m_crc == HASH_2009 || m_crc == HASH_2011 || m_crc == HASH_2020 || + m_crc == HASH_2020_PAD; } bool ASndUCode::UseNewFlagMasks() const @@ -398,11 +399,12 @@ void ASndUCode::DoMixing(u32 return_mail) } // Both paths jmpr $AR3, which is an index into sample_selector - auto [new_r, new_l] = (this->*sample_function)(); + auto [new_l, new_r] = (this->*sample_function)(); if (SwapLeftRight()) { + // Most versions of the ASnd ucode have the right channel come before the left channel. // The Desert Bus versions swapped the left and right input channels so that left - // comes first, and then right. Before, right came before left. + // comes first, and then right, matching mp3/ogg files. std::swap(new_r, new_l); } // out_samp: "multiply sample x volume" - left is put in $ax0.h, right is put in $ax1.h diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h index 51524ad7ef51..faec4c2151af 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h +++ b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h @@ -53,7 +53,8 @@ class ASndUCode final : public UCodeInterface static constexpr u32 HASH_2020_PAD = 0xbad876ef; // Variant used in Desert Bus v1.04 - this is based off of the code in libogc (as it existed in // 2011, even though that code only became used in 2020), but the left and right channels are - // swapped. Padded to 0x0620 bytes. + // swapped (with the left channel coming before the right channel, which is the the conventional + // behavior). Padded to 0x0620 bytes. static constexpr u32 HASH_DESERT_BUS_2011 = 0xfa9c576f; // Variant used in Desert Bus v1.05 - this is the same as the previous version, except 4 junk // instructions were added to the start, which do not change behavior in any way. Padded to 0x0620 From cd5f6ddd9bb2fdb2a3e719340605372b966d5991 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sun, 24 Mar 2024 11:59:32 -0700 Subject: [PATCH 130/223] DSPHLE: Implement 2024 libasnd uCodes --- Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp | 5 +++-- Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h | 10 ++++++++++ Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp | 2 ++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp index ee8345cb171a..ad694e162c4f 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.cpp @@ -64,7 +64,8 @@ bool ASndUCode::SwapLeftRight() const bool ASndUCode::UseNewFlagMasks() const { return m_crc == HASH_2011 || m_crc == HASH_2020 || m_crc == HASH_2020_PAD || - m_crc == HASH_DESERT_BUS_2011 || m_crc == HASH_DESERT_BUS_2012; + m_crc == HASH_DESERT_BUS_2011 || m_crc == HASH_DESERT_BUS_2012 || m_crc == HASH_2024 || + m_crc == HASH_2024_PAD; } ASndUCode::ASndUCode(DSPHLE* dsphle, u32 crc) : UCodeInterface(dsphle, crc) @@ -403,7 +404,7 @@ void ASndUCode::DoMixing(u32 return_mail) if (SwapLeftRight()) { // Most versions of the ASnd ucode have the right channel come before the left channel. - // The Desert Bus versions swapped the left and right input channels so that left + // The Desert Bus and 2024 versions swapped the left and right input channels so that left // comes first, and then right, matching mp3/ogg files. std::swap(new_r, new_l); } diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h index faec4c2151af..159471d41677 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h +++ b/Source/Core/Core/HW/DSPHLE/UCodes/ASnd.h @@ -60,6 +60,16 @@ class ASndUCode final : public UCodeInterface // instructions were added to the start, which do not change behavior in any way. Padded to 0x0620 // bytes. static constexpr u32 HASH_DESERT_BUS_2012 = 0x614dd145; + // March 22, 2024 version (0x0606 bytes) - libogc fixed left and right channels being reversed, + // which apparently has been the case from the start but was not obvious in earlier testing + // because of the oggplayer sample using a mono sound file. + // https://github.com/devkitPro/libogc/commit/a0b4b5680944ee7c2ae1b7af63a721623c1a6b69 + static constexpr u32 HASH_2024 = 0x5dbf8bf1; + // March 22, 2024 version (padded to 0x0620 bytes) - same as above, but padded as it's used by + // libogc2 and libogc-rice. + // https://github.com/extremscorner/libogc2/commit/f3fd10635d4b3fbc6ee03cec335eeb2a2237fd56 + // https://github.com/extremscorner/libogc-rice/commit/5ebbf8b96d7433bc2af9e882f730e67a5eb20f00 + static constexpr u32 HASH_2024_PAD = 0x373a950e; private: void DMAInVoiceData(); diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp index 206624313e8f..7617c0088b1f 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp @@ -293,6 +293,8 @@ std::unique_ptr UCodeFactory(u32 crc, DSPHLE* dsphle, bool wii) case ASndUCode::HASH_2020_PAD: case ASndUCode::HASH_DESERT_BUS_2011: case ASndUCode::HASH_DESERT_BUS_2012: + case ASndUCode::HASH_2024: + case ASndUCode::HASH_2024_PAD: INFO_LOG_FMT(DSPHLE, "CRC {:08x}: ASnd chosen (Homebrew)", crc); return std::make_unique(dsphle, crc); From 9285f1318636d99c05c2424ace58ab717269bbb4 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sun, 24 Mar 2024 23:20:25 +0100 Subject: [PATCH 131/223] Add Bloom Definitions for Skylanders Trap Team --- .../GraphicMods/Skylanders Trap Team/SK8.txt | 0 .../Skylanders Trap Team/metadata.json | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 Data/Sys/Load/GraphicMods/Skylanders Trap Team/SK8.txt create mode 100644 Data/Sys/Load/GraphicMods/Skylanders Trap Team/metadata.json diff --git a/Data/Sys/Load/GraphicMods/Skylanders Trap Team/SK8.txt b/Data/Sys/Load/GraphicMods/Skylanders Trap Team/SK8.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/Data/Sys/Load/GraphicMods/Skylanders Trap Team/metadata.json b/Data/Sys/Load/GraphicMods/Skylanders Trap Team/metadata.json new file mode 100644 index 000000000000..13cc5adc8708 --- /dev/null +++ b/Data/Sys/Load/GraphicMods/Skylanders Trap Team/metadata.json @@ -0,0 +1,19 @@ +{ + "meta": + { + "title": "Bloom Texture Definitions", + "author": "SuperSamus" + }, + "groups": + [ + { + "name": "Bloom", + "targets": [ + { + "type": "efb", + "texture_filename": "efb1_n000005_320x228_6" + } + ] + } + ] +} From d57c68a625ce4f40d6c3800924be8c41ca60cffc Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 25 Mar 2024 17:55:13 +0100 Subject: [PATCH 132/223] Core: Get rid of IPL device macros Having to look up macros that are defined elsewhere makes the code harder to reason about. The macros don't remove enough repetition to justify their existence in my opinion. --- Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp | 25 ++++++++--------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp index 96b8a4a2223c..3cdf942c0fda 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp @@ -296,10 +296,6 @@ void CEXIIPL::TransferByte(u8& data) DEBUG_LOG_FMT(EXPANSIONINTERFACE, "IPL-DEV data {} {:08x} {:02x}", m_command.is_write() ? "write" : "read", address, data); -#define IN_RANGE(x) (address >= x##_BASE && address < x##_BASE + x##_SIZE) -#define DEV_ADDR(x) (address - x##_BASE) -#define DEV_ADDR_CURSOR(x) (DEV_ADDR(x) + m_cursor++) - auto UartFifoAccess = [&]() { if (m_command.is_write()) { @@ -323,7 +319,7 @@ void CEXIIPL::TransferByte(u8& data) { if (!m_command.is_write()) { - u32 dev_addr = DEV_ADDR_CURSOR(ROM); + u32 dev_addr = address - ROM_BASE + m_cursor++; // Technically we should descramble here iff descrambling logic is enabled. // At the moment, we pre-decrypt the whole thing and // ignore the "enabled" bit - see CEXIIPL::CEXIIPL @@ -346,18 +342,18 @@ void CEXIIPL::TransferByte(u8& data) } } } - else if (IN_RANGE(SRAM)) + else if (address >= SRAM_BASE && address < SRAM_BASE + SRAM_SIZE) { auto& sram = m_system.GetSRAM(); - u32 dev_addr = DEV_ADDR_CURSOR(SRAM); + u32 dev_addr = address - SRAM_BASE + m_cursor++; if (m_command.is_write()) sram[dev_addr] = data; else data = sram[dev_addr]; } - else if (IN_RANGE(UART)) + else if (address >= UART_BASE && address < UART_BASE + UART_SIZE) { - switch (DEV_ADDR(UART)) + switch (address - UART_BASE) { case 0: // Seems to be 16byte fifo @@ -371,16 +367,17 @@ void CEXIIPL::TransferByte(u8& data) break; } } - else if (IN_RANGE(WII_RTC) && DEV_ADDR(WII_RTC) == 0x20) + else if (address >= WII_RTC_BASE && address < WII_RTC_BASE + WII_RTC_SIZE && + address - WII_RTC_BASE == 0x20) { if (m_command.is_write()) g_rtc_flags.m_hex = data; else data = g_rtc_flags.m_hex; } - else if (IN_RANGE(EUART)) + else if (address >= EUART_BASE && address < EUART_BASE + EUART_SIZE) { - switch (DEV_ADDR(EUART)) + switch (address - EUART_BASE) { case 0: // Writes 0xf2 then 0xf3 on EUART init. Just need to return non-zero @@ -395,10 +392,6 @@ void CEXIIPL::TransferByte(u8& data) { NOTICE_LOG_FMT(EXPANSIONINTERFACE, "IPL-DEV Accessing unknown device"); } - -#undef DEV_ADDR_CURSOR -#undef DEV_ADDR -#undef IN_RANGE } } From 06329ecfc74dd7ee6631d2054e71aeadb47424f0 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 25 Mar 2024 18:03:11 +0100 Subject: [PATCH 133/223] Core: Fix IPL device m_cursor overflow Not sure if the behavior I'm implementing here is what real hardware does, but since this is a buffer overflow, I'd like to get it fixed quickly. Hardware verification can happen later. https://bugs.dolphin-emu.org/issues/13506 --- Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp index 3cdf942c0fda..2a761cfcdd2e 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp @@ -320,6 +320,8 @@ void CEXIIPL::TransferByte(u8& data) if (!m_command.is_write()) { u32 dev_addr = address - ROM_BASE + m_cursor++; + // TODO: Is this address wrapping correct? Needs a hardware test + dev_addr %= ROM_SIZE; // Technically we should descramble here iff descrambling logic is enabled. // At the moment, we pre-decrypt the whole thing and // ignore the "enabled" bit - see CEXIIPL::CEXIIPL @@ -346,6 +348,8 @@ void CEXIIPL::TransferByte(u8& data) { auto& sram = m_system.GetSRAM(); u32 dev_addr = address - SRAM_BASE + m_cursor++; + // TODO: Is this address wrapping correct? Needs a hardware test + dev_addr %= SRAM_SIZE; if (m_command.is_write()) sram[dev_addr] = data; else From 39f559708926f815cdac624c27a05b67815079d6 Mon Sep 17 00:00:00 2001 From: Matt <33199242+Matt-Swift@users.noreply.github.com> Date: Sun, 24 Mar 2024 20:13:44 +0000 Subject: [PATCH 134/223] Add tapserver BBA and Modem Adapter UI config to Android This PR simply exposes the tapserver options in Serial Port 1 on Android. They already exist and work, but are not selectable. I've tested the tapserver options myself with Phantasy Star Online Episode I & II and they work fine. --- Source/Android/app/src/main/res/values/arrays.xml | 4 ++++ Source/Android/app/src/main/res/values/strings.xml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml index 2f8adeb60cb5..8892f7f21851 100644 --- a/Source/Android/app/src/main/res/values/arrays.xml +++ b/Source/Android/app/src/main/res/values/arrays.xml @@ -103,12 +103,16 @@ @string/device_dummy @string/broadband_adapter_xlink @string/broadband_adapter_hle + @string/broadband_adapter_tapserver + @string/modem_adapter_tapserver 255 0 10 12 + 11 + 13 diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 89ddc6b70504..5dde637d7d73 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -681,6 +681,8 @@ It can efficiently compress both junk data and encrypted Wii data. Broadband Adapter (XLink Kai) Broadband Adapter (HLE) + Broadband Adapter (tapserver) + Modem Adapter (tapserver) Mono From 50512366c3607dafa142f904e050687627e35378 Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Tue, 26 Mar 2024 14:06:56 -0400 Subject: [PATCH 135/223] Convert to Hybrid Log Gamma --- Data/Sys/Shaders/PerceptualHDR.glsl | 82 ++++++++++++++++++----------- 1 file changed, 51 insertions(+), 31 deletions(-) diff --git a/Data/Sys/Shaders/PerceptualHDR.glsl b/Data/Sys/Shaders/PerceptualHDR.glsl index 6545992fc4db..84cea6530209 100644 --- a/Data/Sys/Shaders/PerceptualHDR.glsl +++ b/Data/Sys/Shaders/PerceptualHDR.glsl @@ -17,45 +17,65 @@ DefaultValue = 2.5 /***** Transfer Function *****/ -const float4 m_1 = float4(2610.0 / 16384.0); -const float4 m_2 = float4(128.0 * 2523.0 / 4096.0); -const float4 m_1_inv = float4(16384.0 / 2610.0); -const float4 m_2_inv = float4(4096.0 / (128.0 * 2523.0)); - -const float4 c_1 = float4(3424.0 / 4096.0); -const float4 c_2 = float4(2413.0 / 4096.0 * 32.0); -const float4 c_3 = float4(2392.0 / 4096.0 * 32.0); - -float4 EOTF_inv(float4 lms) { - float4 y = pow(lms, m_1); - return pow((c_1 + c_2 * y) / (1.0 + c_3 * y), m_2); +const float a = 0.17883277; +const float b = 1.0 - 4.0 * a; +const float c = 0.5 - a * log(4.0 * a); + +float HLG_f(float x) +{ + if (x < 0.0) { + return 0.0; + } + + else if (x < 1.0 / 12.0) { + return sqrt(3.0 * x); + } + + return a * log(12.0 * x - b) + c; +} + +float HLG_inv_f(float x) +{ + if (x < 0.0) { + return 0.0; + } + + else if (x < 1.0 / 2.0) { + return x * x / 3.0; + } + + return (exp((x - c) / a) + b) / 12.0; } -float4 EOTF(float4 lms) { - float4 x = pow(lms, m_2_inv); - return pow(-(x - c_1) / (c_3 * x - c_2), m_1_inv); +float4 HLG(float4 lms) +{ + return float4(HLG_f(lms.x), HLG_f(lms.y), HLG_f(lms.z), lms.w); } -// This is required as scaling in EOTF space is not linear. -float EOTF_AMPLIFICATION = EOTF_inv(float4(AMPLIFICATION)).x; +float4 HLG_inv(float4 lms) +{ + return float4(HLG_inv_f(lms.x), HLG_inv_f(lms.y), HLG_inv_f(lms.z), lms.w); +} /***** Linear <--> ICtCp *****/ const mat4 RGBtoLMS = mat4( - 1688.0, 683.0, 99.0, 0.0, - 2146.0, 2951.0, 309.0, 0.0, - 262.0, 462.0, 3688.0, 0.0, - 0.0, 0.0, 0.0, 4096.0) / 4096.0; + 1688.0, 683.0, 99.0, 0.0, + 2146.0, 2951.0, 309.0, 0.0, + 262.0, 462.0, 3688.0, 0.0, + 0.0, 0.0, 0.0, 4096.0) + / 4096.0; const mat4 LMStoICtCp = mat4( - +2048.0, +6610.0, +17933.0, 0.0, - +2048.0, -13613.0, -17390.0, 0.0, - +0.0, +7003.0, -543.0, 0.0, - +0.0, +0.0, +0.0, 4096.0) / 4096.0; + +2048.0, +3625.0, +9500.0, 0.0, + +2048.0, -7465.0, -9212.0, 0.0, + +0.0, +3840.0, -288.0, 0.0, + +0.0, +0.0, +0.0, 4096.0) + / 4096.0; float4 LinearRGBToICtCP(float4 c) { - return LMStoICtCp * EOTF_inv(RGBtoLMS * c); + return LMStoICtCp * HLG(RGBtoLMS * c); } /***** ICtCp <--> Linear *****/ @@ -65,7 +85,7 @@ mat4 LMStoRGB = inverse(RGBtoLMS); float4 ICtCpToLinearRGB(float4 c) { - return LMStoRGB * EOTF(ICtCptoLMS * c); + return LMStoRGB * HLG_inv(ICtCptoLMS * c); } void main() @@ -88,19 +108,19 @@ void main() // Scale the color in perceptual space depending on the percieved luminance. // - // At low luminances, ~0.0, pow(EOTF_AMPLIFICATION, ~0.0) ~= 1.0, so the + // At low luminances, ~0.0, pow(AMPLIFICATION, ~0.0) ~= 1.0, so the // color will appear to be unchanged. This is important as we don't want to // over expose dark colors which would not have otherwise been seen. // - // At high luminances, ~1.0, pow(EOTF_AMPLIFICATION, ~1.0) ~= EOTF_AMPLIFICATION, - // which is equivilant to scaling the color by EOTF_AMPLIFICATION. This is + // At high luminances, ~1.0, pow(AMPLIFICATION, ~1.0) ~= AMPLIFICATION, + // which is equivilant to scaling the color by AMPLIFICATION. This is // important as we want to get the most out of the display, and we want to // get bright colors to hit their target brightness. // // For more information, see this desmos demonstrating this scaling process: // https://www.desmos.com/calculator/syjyrjsj5c const float luminance = ictcp_color.x; - ictcp_color *= pow(EOTF_AMPLIFICATION, luminance); + ictcp_color *= HLG_f(pow(AMPLIFICATION, luminance)); // Convert back to Linear RGB and output the color to the display. // We use hdr_paper_white to renormalize the color to the comfortable From 74a21a4d23fe6046809772089444f4df6e2840dd Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Wed, 27 Mar 2024 00:55:46 -0400 Subject: [PATCH 136/223] Increase Max Amplification --- Data/Sys/Shaders/PerceptualHDR.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Sys/Shaders/PerceptualHDR.glsl b/Data/Sys/Shaders/PerceptualHDR.glsl index 84cea6530209..98099cbf6261 100644 --- a/Data/Sys/Shaders/PerceptualHDR.glsl +++ b/Data/Sys/Shaders/PerceptualHDR.glsl @@ -5,7 +5,7 @@ GUIName = Amplificiation OptionName = AMPLIFICATION MinValue = 1.0 -MaxValue = 6.0 +MaxValue = 10.0 StepAmount = 0.25 DefaultValue = 2.5 From b52a08d5332949c3b22f8434155cc8095d94df3a Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 16 Mar 2024 23:05:56 -0700 Subject: [PATCH 137/223] DolphinQt: A Ubiquitous Signal For When Symbols Change There were three distinct mechanisms for signaling symbol changes in DolphinQt: `Host::NotifyMapLoaded`, `MenuBar::NotifySymbolsUpdated`, and `CodeViewWidget::SymbolsChanged`. The behavior of these signals has been consolidated into the new `Host::PPCSymbolsUpdated` signal, which can be emitted from anywhere in DolphinQt to properly update symbols everywhere in DolphinQt. --- Source/Android/jni/MainAndroid.cpp | 2 +- Source/Core/Core/Boot/Boot.cpp | 11 ++------ Source/Core/Core/Boot/Boot.h | 2 -- Source/Core/Core/ConfigManager.cpp | 2 +- Source/Core/Core/Host.h | 2 +- Source/Core/Core/IOS/MIOS.cpp | 4 +-- Source/Core/DolphinNoGUI/MainNoGUI.cpp | 2 +- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 8 ++---- .../DolphinQt/Debugger/BranchWatchDialog.h | 2 -- .../DolphinQt/Debugger/CodeViewWidget.cpp | 14 ++++------ .../Core/DolphinQt/Debugger/CodeViewWidget.h | 1 - Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 28 ++++++++----------- Source/Core/DolphinQt/Debugger/CodeWidget.h | 1 + Source/Core/DolphinQt/Host.cpp | 9 ++---- Source/Core/DolphinQt/Host.h | 3 +- Source/Core/DolphinQt/MainWindow.cpp | 6 ---- Source/Core/DolphinQt/MenuBar.cpp | 18 ++++++------ Source/Core/DolphinQt/MenuBar.h | 3 -- .../Core/DolphinTool/ToolHeadlessPlatform.cpp | 2 +- Source/DSPTool/StubHost.cpp | 2 +- Source/UnitTests/StubHost.cpp | 2 +- 21 files changed, 46 insertions(+), 78 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 5f8f71a08b05..792a91104497 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -96,7 +96,7 @@ std::vector Host_GetPreferredLocales() return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index f1380270a682..538308ef4f3d 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -351,11 +351,6 @@ bool CBoot::DVDReadDiscID(Core::System& system, const DiscIO::VolumeDisc& disc, return true; } -void CBoot::UpdateDebugger_MapLoaded() -{ - Host_NotifyMapLoaded(); -} - // Get map file paths for the active title. bool CBoot::FindMapFile(std::string* existing_map_file, std::string* writable_map_file) { @@ -382,7 +377,7 @@ bool CBoot::LoadMapFromFilename(const Core::CPUThreadGuard& guard, PPCSymbolDB& bool found = FindMapFile(&strMapFilename, nullptr); if (found && ppc_symbol_db.LoadMap(guard, strMapFilename)) { - UpdateDebugger_MapLoaded(); + Host_PPCSymbolsChanged(); return true; } @@ -517,7 +512,7 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, if (auto& ppc_symbol_db = system.GetPPCSymbolDB(); !ppc_symbol_db.IsEmpty()) { ppc_symbol_db.Clear(); - UpdateDebugger_MapLoaded(); + Host_PPCSymbolsChanged(); } // PAL Wii uses NTSC framerate and linecount in 60Hz modes @@ -597,7 +592,7 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, if (executable.reader->LoadSymbols(guard, system.GetPPCSymbolDB())) { - UpdateDebugger_MapLoaded(); + Host_PPCSymbolsChanged(); HLE::PatchFunctions(system); } return true; diff --git a/Source/Core/Core/Boot/Boot.h b/Source/Core/Core/Boot/Boot.h index e119cae95580..ca27e4696308 100644 --- a/Source/Core/Core/Boot/Boot.h +++ b/Source/Core/Core/Boot/Boot.h @@ -179,8 +179,6 @@ class CBoot u32 output_address); static void RunFunction(Core::System& system, u32 address); - static void UpdateDebugger_MapLoaded(); - static bool Boot_WiiWAD(Core::System& system, const DiscIO::VolumeWAD& wad); static bool BootNANDTitle(Core::System& system, u64 title_id); diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index fb6fda47549d..4adb0a240bac 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -210,7 +210,7 @@ void SConfig::OnNewTitleLoad(const Core::CPUThreadGuard& guard) if (!ppc_symbol_db.IsEmpty()) { ppc_symbol_db.Clear(); - Host_NotifyMapLoaded(); + Host_PPCSymbolsChanged(); } CBoot::LoadMapFromFilename(guard, ppc_symbol_db); HLE::Reload(system); diff --git a/Source/Core/Core/Host.h b/Source/Core/Core/Host.h index 9d360d7ec4cb..8d22e9d59a09 100644 --- a/Source/Core/Core/Host.h +++ b/Source/Core/Core/Host.h @@ -55,7 +55,7 @@ bool Host_RendererHasFullFocus(); bool Host_RendererIsFullscreen(); void Host_Message(HostMessageID id); -void Host_NotifyMapLoaded(); +void Host_PPCSymbolsChanged(); void Host_RefreshDSPDebuggerWindow(); void Host_RequestRenderWindowSize(int width, int height); void Host_UpdateDisasmDialog(); diff --git a/Source/Core/Core/IOS/MIOS.cpp b/Source/Core/Core/IOS/MIOS.cpp index e4babae25354..7722cebea5ce 100644 --- a/Source/Core/Core/IOS/MIOS.cpp +++ b/Source/Core/Core/IOS/MIOS.cpp @@ -74,13 +74,13 @@ bool Load(Core::System& system) if (!ppc_symbol_db.IsEmpty()) { ppc_symbol_db.Clear(); - Host_NotifyMapLoaded(); + Host_PPCSymbolsChanged(); } if (ppc_symbol_db.LoadMap(guard, File::GetUserPath(D_MAPS_IDX) + "mios-ipl.map")) { ::HLE::Clear(); ::HLE::PatchFunctions(system); - Host_NotifyMapLoaded(); + Host_PPCSymbolsChanged(); } const PowerPC::CoreMode core_mode = power_pc.GetMode(); diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 6a0dfd630fe3..6cbb2750d213 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -57,7 +57,7 @@ std::vector Host_GetPreferredLocales() return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index d9ff18db03d9..5cbd75faac89 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -42,6 +42,7 @@ #include "Core/System.h" #include "DolphinQt/Debugger/BranchWatchTableModel.h" #include "DolphinQt/Debugger/CodeWidget.h" +#include "DolphinQt/Host.h" #include "DolphinQt/QtUtils/DolphinFileDialog.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" @@ -219,6 +220,8 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br m_table_model->setFont(ui_settings.GetDebugFont()); connect(&ui_settings, &Settings::DebugFontChanged, m_table_model, &BranchWatchTableModel::setFont); + connect(Host::GetInstance(), &Host::PPCSymbolsChanged, m_table_model, + &BranchWatchTableModel::UpdateSymbols); auto* const table_view = new QTableView; table_view->setModel(m_table_proxy); @@ -938,11 +941,6 @@ void BranchWatchDialog::Update() m_table_model->UpdateHits(); } -void BranchWatchDialog::UpdateSymbols() -{ - m_table_model->UpdateSymbols(); -} - void BranchWatchDialog::UpdateStatus() { switch (m_branch_watch.GetRecordingPhase()) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h index 22181c069970..dfeff8f4b3ea 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -92,8 +92,6 @@ class BranchWatchDialog : public QDialog public: // TODO: Step doesn't cause EmulationStateChanged to be emitted, so it has to call this manually. void Update(); - // TODO: There seems to be a lack of a ubiquitous signal for when symbols change. - void UpdateSymbols(); private: void UpdateStatus(); diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index a7b097b93c0a..1364ac593b29 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -184,6 +184,8 @@ CodeViewWidget::CodeViewWidget() m_address = m_system.GetPPCState().pc; Update(); }); + connect(Host::GetInstance(), &Host::PPCSymbolsChanged, this, + qOverload<>(&CodeViewWidget::Update)); connect(&Settings::Instance(), &Settings::ThemeChanged, this, qOverload<>(&CodeViewWidget::Update)); @@ -879,8 +881,7 @@ void CodeViewWidget::OnAddFunction() Core::CPUThreadGuard guard(m_system); m_ppc_symbol_db.AddFunction(guard, addr); - emit SymbolsChanged(); - Update(&guard); + emit Host::GetInstance()->PPCSymbolsChanged(); } void CodeViewWidget::OnInsertBLR() @@ -929,8 +930,7 @@ void CodeViewWidget::OnRenameSymbol() if (good && !name.isEmpty()) { symbol->Rename(name.toStdString()); - emit SymbolsChanged(); - Update(); + emit Host::GetInstance()->PPCSymbolsChanged(); } } @@ -968,8 +968,7 @@ void CodeViewWidget::OnSetSymbolSize() Core::CPUThreadGuard guard(m_system); PPCAnalyst::ReanalyzeFunction(guard, symbol->address, *symbol, size); - emit SymbolsChanged(); - Update(&guard); + emit Host::GetInstance()->PPCSymbolsChanged(); } void CodeViewWidget::OnSetSymbolEndAddress() @@ -996,8 +995,7 @@ void CodeViewWidget::OnSetSymbolEndAddress() Core::CPUThreadGuard guard(m_system); PPCAnalyst::ReanalyzeFunction(guard, symbol->address, *symbol, address - symbol->address); - emit SymbolsChanged(); - Update(&guard); + emit Host::GetInstance()->PPCSymbolsChanged(); } void CodeViewWidget::OnReplaceInstruction() diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.h b/Source/Core/DolphinQt/Debugger/CodeViewWidget.h index 81e747c21aa5..9a330efad998 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.h @@ -56,7 +56,6 @@ class CodeViewWidget : public QTableWidget signals: void RequestPPCComparison(u32 addr); void ShowMemory(u32 address); - void SymbolsChanged(); void BreakpointsChanged(); void UpdateCodeWidget(); diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index dbee26c6ecb2..89811fe4219e 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -65,8 +65,6 @@ CodeWidget::CodeWidget(QWidget* parent) Update(); }); - connect(Host::GetInstance(), &Host::NotifyMapLoaded, this, &CodeWidget::UpdateSymbols); - connect(&Settings::Instance(), &Settings::DebugModeToggled, this, [this](bool enabled) { setHidden(!enabled || !Settings::Instance().IsCodeVisible()); }); @@ -191,15 +189,7 @@ void CodeWidget::ConnectWidgets() connect(m_function_callers_list, &QListWidget::itemPressed, this, &CodeWidget::OnSelectFunctionCallers); - connect(m_code_view, &CodeViewWidget::SymbolsChanged, this, [this]() { - UpdateCallstack(); - UpdateSymbols(); - if (const Common::Symbol* symbol = m_ppc_symbol_db.GetSymbolFromAddr(m_code_view->GetAddress())) - { - UpdateFunctionCalls(symbol); - UpdateFunctionCallers(symbol); - } - }); + connect(Host::GetInstance(), &Host::PPCSymbolsChanged, this, &CodeWidget::OnPPCSymbolsChanged); connect(m_code_view, &CodeViewWidget::BreakpointsChanged, this, [this] { emit BreakpointsChanged(); }); connect(m_code_view, &CodeViewWidget::UpdateCodeWidget, this, &CodeWidget::Update); @@ -221,6 +211,17 @@ void CodeWidget::OnBranchWatchDialog() m_branch_watch_dialog->activateWindow(); } +void CodeWidget::OnPPCSymbolsChanged() +{ + UpdateSymbols(); + UpdateCallstack(); + if (const Common::Symbol* symbol = m_ppc_symbol_db.GetSymbolFromAddr(m_code_view->GetAddress())) + { + UpdateFunctionCalls(symbol); + UpdateFunctionCallers(symbol); + } +} + void CodeWidget::OnSearchAddress() { bool good = true; @@ -389,11 +390,6 @@ void CodeWidget::UpdateSymbols() } m_symbols_list->sortItems(); - - // TODO: There seems to be a lack of a ubiquitous signal for when symbols change. - // This is the best location to catch the signals from MenuBar and CodeViewWidget. - if (m_branch_watch_dialog != nullptr) - m_branch_watch_dialog->UpdateSymbols(); } void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol) diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.h b/Source/Core/DolphinQt/Debugger/CodeWidget.h index e5465130a211..e9a981f8e558 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.h +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.h @@ -61,6 +61,7 @@ class CodeWidget : public QDockWidget void UpdateFunctionCalls(const Common::Symbol* symbol); void UpdateFunctionCallers(const Common::Symbol* symbol); + void OnPPCSymbolsChanged(); void OnSearchAddress(); void OnSearchSymbols(); void OnSelectSymbol(); diff --git a/Source/Core/DolphinQt/Host.cpp b/Source/Core/DolphinQt/Host.cpp index c7f7c1d6fb23..c8d5f2a9f736 100644 --- a/Source/Core/DolphinQt/Host.cpp +++ b/Source/Core/DolphinQt/Host.cpp @@ -238,14 +238,9 @@ void Host_UpdateDisasmDialog() QueueOnObject(QApplication::instance(), [] { emit Host::GetInstance()->UpdateDisasmDialog(); }); } -void Host::RequestNotifyMapLoaded() +void Host_PPCSymbolsChanged() { - QueueOnObject(QApplication::instance(), [this] { emit NotifyMapLoaded(); }); -} - -void Host_NotifyMapLoaded() -{ - Host::GetInstance()->RequestNotifyMapLoaded(); + QueueOnObject(QApplication::instance(), [] { emit Host::GetInstance()->PPCSymbolsChanged(); }); } // We ignore these, and their purpose should be questioned individually. diff --git a/Source/Core/DolphinQt/Host.h b/Source/Core/DolphinQt/Host.h index 6af6d60aea14..645c4bd54d24 100644 --- a/Source/Core/DolphinQt/Host.h +++ b/Source/Core/DolphinQt/Host.h @@ -32,14 +32,13 @@ class Host final : public QObject void SetRenderFullFocus(bool focus); void SetRenderFullscreen(bool fullscreen); void ResizeSurface(int new_width, int new_height); - void RequestNotifyMapLoaded(); signals: void RequestTitle(const QString& title); void RequestStop(); void RequestRenderSize(int w, int h); void UpdateDisasmDialog(); - void NotifyMapLoaded(); + void PPCSymbolsChanged(); private: Host(); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 576759bd52aa..d5260c47f370 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -591,12 +591,6 @@ void MainWindow::ConnectMenuBar() connect(m_game_list, &GameList::SelectionChanged, m_menu_bar, &MenuBar::SelectionChanged); connect(this, &MainWindow::ReadOnlyModeChanged, m_menu_bar, &MenuBar::ReadOnlyModeChanged); connect(this, &MainWindow::RecordingStatusChanged, m_menu_bar, &MenuBar::RecordingStatusChanged); - - // Symbols - connect(m_menu_bar, &MenuBar::NotifySymbolsUpdated, [this] { - m_code_widget->UpdateSymbols(); - m_code_widget->Update(); - }); } void MainWindow::ConnectHotkeys() diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 753e322a8992..70e2ad76484a 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -1262,7 +1262,7 @@ void MenuBar::ClearSymbols() return; Core::System::GetInstance().GetPPCSymbolDB().Clear(); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::GenerateSymbolsFromAddress() @@ -1275,7 +1275,7 @@ void MenuBar::GenerateSymbolsFromAddress() PPCAnalyst::FindFunctions(guard, Memory::MEM1_BASE_ADDR, Memory::MEM1_BASE_ADDR + memory.GetRamSizeReal(), &ppc_symbol_db); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::GenerateSymbolsFromSignatureDB() @@ -1304,7 +1304,7 @@ void MenuBar::GenerateSymbolsFromSignatureDB() tr("'%1' not found, no symbol names generated").arg(QString::fromStdString(TOTALDB))); } - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::GenerateSymbolsFromRSO() @@ -1334,7 +1334,7 @@ void MenuBar::GenerateSymbolsFromRSO() if (rso_chain.Load(guard, static_cast(address))) { rso_chain.Apply(guard, &system.GetPPCSymbolDB()); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } else { @@ -1391,7 +1391,7 @@ void MenuBar::GenerateSymbolsFromRSOAuto() if (rso_chain.Load(guard, address)) { rso_chain.Apply(guard, &system.GetPPCSymbolDB()); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } else { @@ -1541,7 +1541,7 @@ void MenuBar::LoadSymbolMap() } HLE::PatchFunctions(system); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::SaveSymbolMap() @@ -1566,7 +1566,7 @@ void MenuBar::LoadOtherSymbolMap() auto& system = Core::System::GetInstance(); HLE::PatchFunctions(system); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::LoadBadSymbolMap() @@ -1583,7 +1583,7 @@ void MenuBar::LoadBadSymbolMap() auto& system = Core::System::GetInstance(); HLE::PatchFunctions(system); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::SaveSymbolMapAs() @@ -1708,7 +1708,7 @@ void MenuBar::ApplySignatureFile() db.Apply(Core::CPUThreadGuard{system}, &system.GetPPCSymbolDB()); db.List(); HLE::PatchFunctions(system); - emit NotifySymbolsUpdated(); + emit Host::GetInstance()->PPCSymbolsChanged(); } void MenuBar::CombineSignatureFiles() diff --git a/Source/Core/DolphinQt/MenuBar.h b/Source/Core/DolphinQt/MenuBar.h index d13e8ae4b310..c8a1f6311ade 100644 --- a/Source/Core/DolphinQt/MenuBar.h +++ b/Source/Core/DolphinQt/MenuBar.h @@ -125,9 +125,6 @@ class MenuBar final : public QMenuBar void RecordingStatusChanged(bool recording); void ReadOnlyModeChanged(bool read_only); - // Synbols - void NotifySymbolsUpdated(); - private: void OnEmulationStateChanged(Core::State state); diff --git a/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp b/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp index 2bed042148ee..8c1772406fdc 100644 --- a/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp +++ b/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp @@ -21,7 +21,7 @@ std::vector Host_GetPreferredLocales() return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } diff --git a/Source/DSPTool/StubHost.cpp b/Source/DSPTool/StubHost.cpp index 50a27e2d28f7..d32346a45772 100644 --- a/Source/DSPTool/StubHost.cpp +++ b/Source/DSPTool/StubHost.cpp @@ -13,7 +13,7 @@ std::vector Host_GetPreferredLocales() { return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } void Host_RefreshDSPDebuggerWindow() diff --git a/Source/UnitTests/StubHost.cpp b/Source/UnitTests/StubHost.cpp index cf808bcce171..47200bd40c77 100644 --- a/Source/UnitTests/StubHost.cpp +++ b/Source/UnitTests/StubHost.cpp @@ -13,7 +13,7 @@ std::vector Host_GetPreferredLocales() { return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } void Host_RefreshDSPDebuggerWindow() From 6e6b2980303eb6d4c7681053357300a32857d13a Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 22 Mar 2024 00:24:26 -0700 Subject: [PATCH 138/223] Core::RunOnCPUThread: Avoid Global System Accessor --- Source/Core/Core/Core.cpp | 4 +--- Source/Core/Core/Core.h | 2 +- Source/Core/Core/Movie.cpp | 2 +- Source/Core/Core/State.cpp | 4 ++++ Source/Core/DolphinQt/GBAWidget.cpp | 15 ++++++++++----- 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 9a5242706d11..8e6f3b7c5559 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -837,7 +837,7 @@ static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unl return was_unpaused; } -void RunOnCPUThread(std::function function, bool wait_for_completion) +void RunOnCPUThread(Core::System& system, std::function function, bool wait_for_completion) { // If the CPU thread is not running, assume there is no active CPU thread we can race against. if (!IsRunning() || IsCPUThread()) @@ -846,8 +846,6 @@ void RunOnCPUThread(std::function function, bool wait_for_completion) return; } - auto& system = Core::System::GetInstance(); - // Pause the CPU (set it to stepping mode). const bool was_running = PauseAndLock(system, true, true); diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index 756451157322..95b8da296918 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -157,7 +157,7 @@ void OnFrameEnd(Core::System& system); // Run a function on the CPU thread, asynchronously. // This is only valid to call from the host thread, since it uses PauseAndLock() internally. -void RunOnCPUThread(std::function function, bool wait_for_completion); +void RunOnCPUThread(Core::System& system, std::function function, bool wait_for_completion); // for calling back into UI code without introducing a dependency on it in core using StateChangedCallbackFunc = std::function; diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index a21a5afb33d4..e759358e04b5 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -574,7 +574,7 @@ bool MovieManager::BeginRecordingInput(const ControllerTypeArray& controllers, if (Core::IsRunning()) Core::UpdateWantDeterminism(m_system); }; - Core::RunOnCPUThread(start_recording, true); + Core::RunOnCPUThread(m_system, start_recording, true); Core::DisplayMessage("Starting movie recording", 2000); return true; diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 4e7d061d36fa..90f07d2756b5 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -217,6 +217,7 @@ void LoadFromBuffer(Core::System& system, std::vector& buffer) #endif // USE_RETRO_ACHIEVEMENTS Core::RunOnCPUThread( + system, [&] { u8* ptr = buffer.data(); PointerWrap p(&ptr, buffer.size(), PointerWrap::Mode::Read); @@ -228,6 +229,7 @@ void LoadFromBuffer(Core::System& system, std::vector& buffer) void SaveToBuffer(Core::System& system, std::vector& buffer) { Core::RunOnCPUThread( + system, [&] { u8* ptr = nullptr; PointerWrap p_measure(&ptr, 0, PointerWrap::Mode::Measure); @@ -473,6 +475,7 @@ void SaveAs(Core::System& system, const std::string& filename, bool wait) return; Core::RunOnCPUThread( + system, [&] { { std::lock_guard lk_(s_state_writes_in_queue_mutex); @@ -871,6 +874,7 @@ void LoadAs(Core::System& system, const std::string& filename) return; Core::RunOnCPUThread( + system, [&] { // Save temp buffer for undo load state auto& movie = system.GetMovie(); diff --git a/Source/Core/DolphinQt/GBAWidget.cpp b/Source/Core/DolphinQt/GBAWidget.cpp index 15aef84a15ce..ad5e29bda9aa 100644 --- a/Source/Core/DolphinQt/GBAWidget.cpp +++ b/Source/Core/DolphinQt/GBAWidget.cpp @@ -37,7 +37,8 @@ static void RestartCore(const std::weak_ptr& core, std::string_view rom_path = {}) { Core::RunOnCPUThread( - [core, rom_path = std::string(rom_path)] { + Core::System::GetInstance(), + [core, rom_path = std::string(rom_path)]() { if (auto core_ptr = core.lock()) { auto& info = Config::MAIN_GBA_ROM_PATHS[core_ptr->GetCoreInfo().device_number]; @@ -57,7 +58,8 @@ static void RestartCore(const std::weak_ptr& core, std::string_vi static void QueueEReaderCard(const std::weak_ptr& core, std::string_view card_path) { Core::RunOnCPUThread( - [core, card_path = std::string(card_path)] { + Core::System::GetInstance(), + [core, card_path = std::string(card_path)]() { if (auto core_ptr = core.lock()) core_ptr->EReaderQueueCard(card_path); }, @@ -159,7 +161,8 @@ void GBAWidget::ToggleDisconnect() m_force_disconnect = !m_force_disconnect; Core::RunOnCPUThread( - [core = m_core, force_disconnect = m_force_disconnect] { + Core::System::GetInstance(), + [core = m_core, force_disconnect = m_force_disconnect]() { if (auto core_ptr = core.lock()) core_ptr->SetForceDisconnect(force_disconnect); }, @@ -221,7 +224,8 @@ void GBAWidget::DoState(bool export_state) return; Core::RunOnCPUThread( - [export_state, core = m_core, state_path = state_path.toStdString()] { + Core::System::GetInstance(), + [export_state, core = m_core, state_path = state_path.toStdString()]() { if (auto core_ptr = core.lock()) { if (export_state) @@ -251,7 +255,8 @@ void GBAWidget::ImportExportSave(bool export_save) return; Core::RunOnCPUThread( - [export_save, core = m_core, save_path = save_path.toStdString()] { + Core::System::GetInstance(), + [export_save, core = m_core, save_path = save_path.toStdString()]() { if (auto core_ptr = core.lock()) { if (export_save) From 069cf7e81fe58745916e006e97381c671b042f05 Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Thu, 28 Mar 2024 14:42:14 -0400 Subject: [PATCH 139/223] It's technically more correct to do it this way, difference is extremely subtle --- Data/Sys/Shaders/PerceptualHDR.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Sys/Shaders/PerceptualHDR.glsl b/Data/Sys/Shaders/PerceptualHDR.glsl index 98099cbf6261..eed5ec9235fb 100644 --- a/Data/Sys/Shaders/PerceptualHDR.glsl +++ b/Data/Sys/Shaders/PerceptualHDR.glsl @@ -120,7 +120,7 @@ void main() // For more information, see this desmos demonstrating this scaling process: // https://www.desmos.com/calculator/syjyrjsj5c const float luminance = ictcp_color.x; - ictcp_color *= HLG_f(pow(AMPLIFICATION, luminance)); + ictcp_color *= pow(HLG_f(AMPLIFICATION), luminance); // Convert back to Linear RGB and output the color to the display. // We use hdr_paper_white to renormalize the color to the comfortable From 88dadf81d41ee4c701b0f19fc2556b45fa7daea4 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 29 Mar 2024 11:03:15 -0700 Subject: [PATCH 140/223] FileUtil: Fix BranchWatch User Path I mistakenly put `D_DUMP_IDX` here instead of `D_DUMPDEBUG_IDX`. --- Source/Core/Common/FileUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index f7a855587535..20c57c2b5a82 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -937,7 +937,7 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP; s_user_paths[D_DUMPDEBUG_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_DIR DIR_SEP; s_user_paths[D_DUMPDEBUG_BRANCHWATCH_IDX] = - s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP; + s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP; s_user_paths[F_MEM1DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM1_DUMP; s_user_paths[F_MEM2DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM2_DUMP; s_user_paths[F_ARAMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + ARAM_DUMP; From fb75ae410fb1eeaf60e54f230bbed97a8dbbcdd5 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 30 Mar 2024 20:29:41 +0100 Subject: [PATCH 141/223] Jit64: Clean up ExtractWithByteOffset RCOpArg::ExtractWithByteOffset is only used in one place: a special case of rlwinmx. ExtractWithByteOffset first stores the value of the specified register into m_ppc_state (unless it's already there), and then returns an offset into m_ppc_state. Our use of this function has two undesirable properties (except in the trivial case `offset == 0`): 1. ExtractWithByteOffset calls StoreFromRegister without going through any of the usual functions. This violated an assumption I made when working on my constant propagation PR and led to a hard-to-find bug. 2. If the specified register is in a host register and is dirty, ExtractWithByteOffset will store its value to m_ppc_state even when it's unnecessary. In particular, this always happens when rlwinmx uses the same register as input and output, since rlwinmx always allocates a host register for the output and marks it as dirty. Since ExtractWithByteOffset is only used in one place, I figure we might as well inline it there. This commit does that, and also alters rlwinmx's logic so the special case code is only triggered when the input is already in m_ppc_state. Input in `m_ppc_state`, before (11 bytes): mov esi, dword ptr [rbp-104] mov dword ptr [rbp-104], esi movzx esi, byte ptr [rbp-101] Input in `m_ppc_state`, after (5 bytes): movzx esi, byte ptr [rbp-101] Input in host register, before (8 bytes): mov dword ptr [rbp-104], esi movzx esi, byte ptr [rbp-101] Input in host register, after (3 bytes): shr edi, 0x18 --- .../Core/Core/PowerPC/Jit64/Jit_Integer.cpp | 114 ++++++++++-------- .../PowerPC/Jit64/RegCache/JitRegCache.cpp | 13 -- .../Core/PowerPC/Jit64/RegCache/JitRegCache.h | 5 +- 3 files changed, 66 insertions(+), 66 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index 9925fd4c0db2..370ab5c67196 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -2065,68 +2065,82 @@ void Jit64::rlwinmx(UGeckoInstruction inst) bool needs_sext = true; int mask_size = inst.ME - inst.MB + 1; - RCOpArg Rs = gpr.Use(s, RCMode::Read); - RCX64Reg Ra = gpr.Bind(a, RCMode::Write); - RegCache::Realize(Rs, Ra); - - if (a != s && left_shift && Rs.IsSimpleReg() && inst.SH <= 3) + if (simple_mask && !(inst.SH & (mask_size - 1)) && !gpr.IsBound(s)) { - LEA(32, Ra, MScaled(Rs.GetSimpleReg(), SCALE_1 << inst.SH, 0)); - } - // common optimized case: byte/word extract - else if (simple_mask && !(inst.SH & (mask_size - 1))) - { - MOVZX(32, mask_size, Ra, Rs.ExtractWithByteOffset(inst.SH ? (32 - inst.SH) >> 3 : 0)); - needs_sext = false; - } - // another optimized special case: byte/word extract plus rotate - else if (simple_prerotate_mask && !left_shift) - { - MOVZX(32, prerotate_mask == 0xff ? 8 : 16, Ra, Rs); + // optimized case: byte/word extract from m_ppc_state + + // Note: If a == s, calling Realize(Ra) will allocate a host register for Rs, + // so we have to get mem_source from Rs before calling Realize(Ra) + + RCOpArg Rs = gpr.Use(s, RCMode::Read); + RegCache::Realize(Rs); + OpArg mem_source = Rs.Location(); if (inst.SH) - ROL(32, Ra, Imm8(inst.SH)); - needs_sext = (mask & 0x80000000) != 0; - } - // Use BEXTR where possible: Only AMD implements this in one uop - else if (field_extract && cpu_info.bBMI1 && cpu_info.vendor == CPUVendor::AMD) - { - MOV(32, R(RSCRATCH), Imm32((mask_size << 8) | (32 - inst.SH))); - BEXTR(32, Ra, Rs, RSCRATCH); - needs_sext = false; - } - else if (left_shift) - { - if (a != s) - MOV(32, Ra, Rs); + mem_source.AddMemOffset((32 - inst.SH) >> 3); + Rs.Unlock(); - SHL(32, Ra, Imm8(inst.SH)); - } - else if (right_shift) - { - if (a != s) - MOV(32, Ra, Rs); + RCX64Reg Ra = gpr.Bind(a, RCMode::Write); + RegCache::Realize(Ra); + MOVZX(32, mask_size, Ra, mem_source); - SHR(32, Ra, Imm8(inst.MB)); needs_sext = false; } else { - RotateLeft(32, Ra, Rs, inst.SH); + RCOpArg Rs = gpr.Use(s, RCMode::Read); + RCX64Reg Ra = gpr.Bind(a, RCMode::Write); + RegCache::Realize(Rs, Ra); - if (!(inst.MB == 0 && inst.ME == 31)) + if (a != s && left_shift && Rs.IsSimpleReg() && inst.SH <= 3) { - // we need flags if we're merging the branch - if (inst.Rc && CheckMergedBranch(0)) - AND(32, Ra, Imm32(mask)); - else - AndWithMask(Ra, mask); - needs_sext = inst.MB == 0; - needs_test = false; + LEA(32, Ra, MScaled(Rs.GetSimpleReg(), SCALE_1 << inst.SH, 0)); } - } + // optimized case: byte/word extract plus rotate + else if (simple_prerotate_mask && !left_shift) + { + MOVZX(32, prerotate_mask == 0xff ? 8 : 16, Ra, Rs); + if (inst.SH) + ROL(32, Ra, Imm8(inst.SH)); + needs_sext = (mask & 0x80000000) != 0; + } + // Use BEXTR where possible: Only AMD implements this in one uop + else if (field_extract && cpu_info.bBMI1 && cpu_info.vendor == CPUVendor::AMD) + { + MOV(32, R(RSCRATCH), Imm32((mask_size << 8) | (32 - inst.SH))); + BEXTR(32, Ra, Rs, RSCRATCH); + needs_sext = false; + } + else if (left_shift) + { + if (a != s) + MOV(32, Ra, Rs); + + SHL(32, Ra, Imm8(inst.SH)); + } + else if (right_shift) + { + if (a != s) + MOV(32, Ra, Rs); - Rs.Unlock(); - Ra.Unlock(); + SHR(32, Ra, Imm8(inst.MB)); + needs_sext = false; + } + else + { + RotateLeft(32, Ra, Rs, inst.SH); + + if (!(inst.MB == 0 && inst.ME == 31)) + { + // we need flags if we're merging the branch + if (inst.Rc && CheckMergedBranch(0)) + AND(32, Ra, Imm32(mask)); + else + AndWithMask(Ra, mask); + needs_sext = inst.MB == 0; + needs_test = false; + } + } + } if (inst.Rc) ComputeRC(a, needs_test, needs_sext); diff --git a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp index 86f1d9e15acd..c647ed32d633 100644 --- a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp +++ b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp @@ -109,19 +109,6 @@ OpArg RCOpArg::Location() const return {}; } -OpArg RCOpArg::ExtractWithByteOffset(int offset) -{ - if (offset == 0) - return Location(); - - ASSERT(rc); - const preg_t preg = std::get(contents); - rc->StoreFromRegister(preg, RegCache::FlushMode::MaintainState); - OpArg result = rc->GetDefaultLocation(preg); - result.AddMemOffset(offset); - return result; -} - void RCOpArg::Unlock() { if (const preg_t* preg = std::get_if(&contents)) diff --git a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h index 158c41c02d1b..f02519031269 100644 --- a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h +++ b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h @@ -47,9 +47,6 @@ class RCOpArg bool IsSimpleReg(Gen::X64Reg reg) const { return Location().IsSimpleReg(reg); } Gen::X64Reg GetSimpleReg() const { return Location().GetSimpleReg(); } - // Use to extract bytes from a register using the regcache. offset is in bytes. - Gen::OpArg ExtractWithByteOffset(int offset); - void Unlock(); bool IsImm() const; @@ -159,6 +156,8 @@ class RegCache u32 Imm32(preg_t preg) const { return R(preg).Imm32(); } s32 SImm32(preg_t preg) const { return R(preg).SImm32(); } + bool IsBound(preg_t preg) const { return m_regs[preg].IsBound(); } + RCOpArg Use(preg_t preg, RCMode mode); RCOpArg UseNoImm(preg_t preg, RCMode mode); RCOpArg BindOrImm(preg_t preg, RCMode mode); From 9873bcfb2bc17b2cbd605e0da7248520fcca1fc7 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 29 Mar 2024 21:32:11 +0100 Subject: [PATCH 142/223] IOS: Remove calls to GetPointer Typically when someone uses GetPointer, it's because they want to read from a range of memory. GetPointer is unsafe to use for this. While it does check that the passed-in address is valid, it doesn't know the size of the range that will be accessed, so it can't check that the end address is valid. The safer alternative GetPointerForRange should be used instead. Note that there is still the problem of many callers not checking for nullptr. This is the first part of a series of changes that will remove the usage of GetPointer in different parts of the code base. This commit gets rid of every GetPointer call from our IOS code except for a particularly tricky one in BluetoothEmuDevice. --- Source/Core/Core/HW/Memmap.h | 2 + Source/Core/Core/IOS/Device.cpp | 6 +- Source/Core/Core/IOS/ES/ES.cpp | 3 +- Source/Core/Core/IOS/ES/Identity.cpp | 19 ++--- Source/Core/Core/IOS/ES/TitleContents.cpp | 2 +- Source/Core/Core/IOS/ES/TitleManagement.cpp | 13 ++-- Source/Core/Core/IOS/ES/Views.cpp | 18 +++-- Source/Core/Core/IOS/FS/FileSystemProxy.cpp | 8 +- Source/Core/Core/IOS/Network/IP/Top.cpp | 29 ++++--- Source/Core/Core/IOS/Network/SSL.cpp | 7 +- Source/Core/Core/IOS/Network/Socket.cpp | 81 +++++++++++--------- Source/Core/Core/IOS/Network/Socket.h | 6 +- Source/Core/Core/IOS/Network/WD/Command.cpp | 3 +- Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp | 4 +- Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp | 16 ++-- Source/Core/Core/IOS/WFS/WFSI.cpp | 10 +-- Source/Core/Core/IOS/WFS/WFSSRV.cpp | 4 +- 17 files changed, 128 insertions(+), 103 deletions(-) diff --git a/Source/Core/Core/HW/Memmap.h b/Source/Core/Core/HW/Memmap.h index 39c8c438bb1b..e90e641f557b 100644 --- a/Source/Core/Core/HW/Memmap.h +++ b/Source/Core/Core/HW/Memmap.h @@ -105,6 +105,8 @@ class MemoryManager // Routines to access physically addressed memory, designed for use by // emulated hardware outside the CPU. Use "Device_" prefix. std::string GetString(u32 em_address, size_t size = 0); + // WARNING: Incrementing the pointer returned by GetPointer is unsafe without additional bounds + // checks. New code should use other functions instead, like GetPointerForRange or CopyFromEmu. u8* GetPointer(u32 address) const; u8* GetPointerForRange(u32 address, size_t size) const; void CopyFromEmu(void* data, u32 address, size_t size) const; diff --git a/Source/Core/Core/IOS/Device.cpp b/Source/Core/Core/IOS/Device.cpp index d826f981a6d5..3fdbcaed62b6 100644 --- a/Source/Core/Core/IOS/Device.cpp +++ b/Source/Core/Core/IOS/Device.cpp @@ -116,9 +116,9 @@ void IOCtlRequest::Dump(Core::System& system, const std::string& description, Log("===== " + description, type, level); GENERIC_LOG_FMT(type, level, "In buffer\n{}", - HexDump(memory.GetPointer(buffer_in), buffer_in_size)); + HexDump(memory.GetPointerForRange(buffer_in, buffer_in_size), buffer_in_size)); GENERIC_LOG_FMT(type, level, "Out buffer\n{}", - HexDump(memory.GetPointer(buffer_out), buffer_out_size)); + HexDump(memory.GetPointerForRange(buffer_out, buffer_out_size), buffer_out_size)); } void IOCtlRequest::DumpUnknown(Core::System& system, const std::string& description, @@ -139,7 +139,7 @@ void IOCtlVRequest::Dump(Core::System& system, std::string_view description, for (const auto& vector : in_vectors) { GENERIC_LOG_FMT(type, level, "in[{}] (size={:#x}):\n{}", i++, vector.size, - HexDump(memory.GetPointer(vector.address), vector.size)); + HexDump(memory.GetPointerForRange(vector.address, vector.size), vector.size)); } i = 0; diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 42513ecd8bed..810353a893a9 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -982,7 +982,8 @@ IPCReply ESDevice::SetUpStreamKey(const Context& context, const IOCtlVRequest& r u32 handle; const ReturnCode ret = m_core.SetUpStreamKey( - context.uid, memory.GetPointer(request.in_vectors[0].address), tmd, &handle); + context.uid, memory.GetPointerForRange(request.in_vectors[0].address, sizeof(ES::TicketView)), + tmd, &handle); memory.Write_U32(handle, request.io_vectors[0].address); return IPCReply(ret); } diff --git a/Source/Core/Core/IOS/ES/Identity.cpp b/Source/Core/Core/IOS/ES/Identity.cpp index a69045bebc62..34fc6861f0dd 100644 --- a/Source/Core/Core/IOS/ES/Identity.cpp +++ b/Source/Core/Core/IOS/ES/Identity.cpp @@ -51,10 +51,10 @@ IPCReply ESDevice::Encrypt(u32 uid, const IOCtlVRequest& request) auto& system = GetSystem(); auto& memory = system.GetMemory(); u32 keyIndex = memory.Read_U32(request.in_vectors[0].address); - u8* source = memory.GetPointer(request.in_vectors[2].address); u32 size = request.in_vectors[2].size; - u8* iv = memory.GetPointer(request.io_vectors[0].address); - u8* destination = memory.GetPointer(request.io_vectors[1].address); + u8* source = memory.GetPointerForRange(request.in_vectors[2].address, size); + u8* iv = memory.GetPointerForRange(request.io_vectors[0].address, 16); + u8* destination = memory.GetPointerForRange(request.io_vectors[1].address, size); // TODO: Check whether the active title is allowed to encrypt. @@ -71,10 +71,10 @@ IPCReply ESDevice::Decrypt(u32 uid, const IOCtlVRequest& request) auto& system = GetSystem(); auto& memory = system.GetMemory(); u32 keyIndex = memory.Read_U32(request.in_vectors[0].address); - u8* source = memory.GetPointer(request.in_vectors[2].address); u32 size = request.in_vectors[2].size; - u8* iv = memory.GetPointer(request.io_vectors[0].address); - u8* destination = memory.GetPointer(request.io_vectors[1].address); + u8* source = memory.GetPointerForRange(request.in_vectors[2].address, size); + u8* iv = memory.GetPointerForRange(request.io_vectors[0].address, 16); + u8* destination = memory.GetPointerForRange(request.io_vectors[1].address, size); // TODO: Check whether the active title is allowed to decrypt. @@ -118,10 +118,11 @@ IPCReply ESDevice::Sign(const IOCtlVRequest& request) INFO_LOG_FMT(IOS_ES, "IOCTL_ES_SIGN"); auto& system = GetSystem(); auto& memory = system.GetMemory(); - u8* ap_cert_out = memory.GetPointer(request.io_vectors[1].address); - u8* data = memory.GetPointer(request.in_vectors[0].address); + u8* ap_cert_out = memory.GetPointerForRange(request.io_vectors[1].address, sizeof(CertECC)); u32 data_size = request.in_vectors[0].size; - u8* sig_out = memory.GetPointer(request.io_vectors[0].address); + u8* data = memory.GetPointerForRange(request.in_vectors[0].address, data_size); + u8* sig_out = + memory.GetPointerForRange(request.io_vectors[0].address, sizeof(Common::ec::Signature)); if (!m_core.m_title_context.active) return IPCReply(ES_EINVAL); diff --git a/Source/Core/Core/IOS/ES/TitleContents.cpp b/Source/Core/Core/IOS/ES/TitleContents.cpp index 5d9d84f23544..70500f72e94d 100644 --- a/Source/Core/Core/IOS/ES/TitleContents.cpp +++ b/Source/Core/Core/IOS/ES/TitleContents.cpp @@ -122,7 +122,7 @@ IPCReply ESDevice::ReadContent(u32 uid, const IOCtlVRequest& request) INFO_LOG_FMT(IOS_ES, "ReadContent(uid={:#x}, cfd={}, size={}, addr={:08x})", uid, cfd, size, addr); - return m_core.ReadContent(cfd, memory.GetPointer(addr), size, uid, ticks); + return m_core.ReadContent(cfd, memory.GetPointerForRange(addr, size), size, uid, ticks); }); } diff --git a/Source/Core/Core/IOS/ES/TitleManagement.cpp b/Source/Core/Core/IOS/ES/TitleManagement.cpp index 4ff3d2702613..9ff28fc5455e 100644 --- a/Source/Core/Core/IOS/ES/TitleManagement.cpp +++ b/Source/Core/Core/IOS/ES/TitleManagement.cpp @@ -369,9 +369,9 @@ IPCReply ESDevice::ImportContentData(Context& context, const IOCtlVRequest& requ auto& memory = system.GetMemory(); u32 content_fd = memory.Read_U32(request.in_vectors[0].address); - u8* data_start = memory.GetPointer(request.in_vectors[1].address); - return IPCReply( - m_core.ImportContentData(context, content_fd, data_start, request.in_vectors[1].size)); + u32 data_size = request.in_vectors[1].size; + u8* data_start = memory.GetPointerForRange(request.in_vectors[1].address, data_size); + return IPCReply(m_core.ImportContentData(context, content_fd, data_start, data_size)); } static bool CheckIfContentHashMatches(const std::vector& content, const ES::Content& info) @@ -630,7 +630,8 @@ IPCReply ESDevice::DeleteTicket(const IOCtlVRequest& request) auto& system = GetSystem(); auto& memory = system.GetMemory(); - return IPCReply(m_core.DeleteTicket(memory.GetPointer(request.in_vectors[0].address))); + return IPCReply(m_core.DeleteTicket( + memory.GetPointerForRange(request.in_vectors[0].address, sizeof(ES::TicketView)))); } ReturnCode ESCore::DeleteTitleContent(u64 title_id) const @@ -732,8 +733,8 @@ IPCReply ESDevice::ExportTitleInit(Context& context, const IOCtlVRequest& reques auto& memory = system.GetMemory(); const u64 title_id = memory.Read_U64(request.in_vectors[0].address); - u8* tmd_bytes = memory.GetPointer(request.io_vectors[0].address); const u32 tmd_size = request.io_vectors[0].size; + u8* tmd_bytes = memory.GetPointerForRange(request.io_vectors[0].address, tmd_size); return IPCReply(m_core.ExportTitleInit(context, title_id, tmd_bytes, tmd_size, m_core.m_title_context.tmd.GetTitleId(), @@ -832,8 +833,8 @@ IPCReply ESDevice::ExportContentData(Context& context, const IOCtlVRequest& requ auto& memory = system.GetMemory(); const u32 content_fd = memory.Read_U32(request.in_vectors[0].address); - u8* data = memory.GetPointer(request.io_vectors[0].address); const u32 bytes_to_read = request.io_vectors[0].size; + u8* data = memory.GetPointerForRange(request.io_vectors[0].address, bytes_to_read); return IPCReply(m_core.ExportContentData(context, content_fd, data, bytes_to_read)); } diff --git a/Source/Core/Core/IOS/ES/Views.cpp b/Source/Core/Core/IOS/ES/Views.cpp index 92012ef64146..71d03ea0edfc 100644 --- a/Source/Core/Core/IOS/ES/Views.cpp +++ b/Source/Core/Core/IOS/ES/Views.cpp @@ -162,9 +162,9 @@ IPCReply ESDevice::GetV0TicketFromView(const IOCtlVRequest& request) auto& system = GetSystem(); auto& memory = system.GetMemory(); - return IPCReply(m_core.GetTicketFromView(memory.GetPointer(request.in_vectors[0].address), - memory.GetPointer(request.io_vectors[0].address), - nullptr, 0)); + return IPCReply(m_core.GetTicketFromView( + memory.GetPointerForRange(request.in_vectors[0].address, sizeof(ES::TicketView)), + memory.GetPointerForRange(request.io_vectors[0].address, sizeof(ES::Ticket)), nullptr, 0)); } IPCReply ESDevice::GetTicketSizeFromView(const IOCtlVRequest& request) @@ -179,8 +179,9 @@ IPCReply ESDevice::GetTicketSizeFromView(const IOCtlVRequest& request) auto& system = GetSystem(); auto& memory = system.GetMemory(); - const ReturnCode ret = m_core.GetTicketFromView(memory.GetPointer(request.in_vectors[0].address), - nullptr, &ticket_size, std::nullopt); + const ReturnCode ret = m_core.GetTicketFromView( + memory.GetPointerForRange(request.in_vectors[0].address, sizeof(ES::TicketView)), nullptr, + &ticket_size, std::nullopt); memory.Write_U32(ticket_size, request.io_vectors[0].address); return IPCReply(ret); } @@ -201,9 +202,10 @@ IPCReply ESDevice::GetTicketFromView(const IOCtlVRequest& request) if (ticket_size != request.io_vectors[0].size) return IPCReply(ES_EINVAL); - return IPCReply(m_core.GetTicketFromView(memory.GetPointer(request.in_vectors[0].address), - memory.GetPointer(request.io_vectors[0].address), - &ticket_size, std::nullopt)); + return IPCReply(m_core.GetTicketFromView( + memory.GetPointerForRange(request.in_vectors[0].address, sizeof(ES::TicketView)), + memory.GetPointerForRange(request.io_vectors[0].address, ticket_size), &ticket_size, + std::nullopt)); } IPCReply ESDevice::GetTMDViewSize(const IOCtlVRequest& request) diff --git a/Source/Core/Core/IOS/FS/FileSystemProxy.cpp b/Source/Core/Core/IOS/FS/FileSystemProxy.cpp index ca923061e0c0..f69da2f9b5e6 100644 --- a/Source/Core/Core/IOS/FS/FileSystemProxy.cpp +++ b/Source/Core/Core/IOS/FS/FileSystemProxy.cpp @@ -326,8 +326,8 @@ std::optional FSDevice::Read(const ReadWriteRequest& request) return MakeIPCReply([&](Ticks t) { auto& system = GetSystem(); auto& memory = system.GetMemory(); - return m_core.Read(request.fd, memory.GetPointer(request.buffer), request.size, request.buffer, - t); + return m_core.Read(request.fd, memory.GetPointerForRange(request.buffer, request.size), + request.size, request.buffer, t); }); } @@ -357,8 +357,8 @@ std::optional FSDevice::Write(const ReadWriteRequest& request) return MakeIPCReply([&](Ticks t) { auto& system = GetSystem(); auto& memory = system.GetMemory(); - return m_core.Write(request.fd, memory.GetPointer(request.buffer), request.size, request.buffer, - t); + return m_core.Write(request.fd, memory.GetPointerForRange(request.buffer, request.size), + request.size, request.buffer, t); }); } diff --git a/Source/Core/Core/IOS/Network/IP/Top.cpp b/Source/Core/Core/IOS/Network/IP/Top.cpp index 1cf70e8df308..8a04c2e6dd86 100644 --- a/Source/Core/Core/IOS/Network/IP/Top.cpp +++ b/Source/Core/Core/IOS/Network/IP/Top.cpp @@ -4,6 +4,7 @@ #include "Core/IOS/Network/IP/Top.h" #include +#include #include #include #include @@ -20,6 +21,7 @@ #include #include "Common/Assert.h" +#include "Common/BitUtils.h" #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" #include "Common/Network.h" @@ -80,12 +82,12 @@ void NetIPTopDevice::DoState(PointerWrap& p) Device::DoState(p); } -static int inet_pton(const char* src, unsigned char* dst) +static std::optional inet_pton(const char* src) { int saw_digit = 0; int octets = 0; - unsigned char tmp[4]{}; - unsigned char* tp = tmp; + std::array tmp{}; + unsigned char* tp = tmp.data(); char ch; while ((ch = *src++) != '\0') @@ -95,31 +97,30 @@ static int inet_pton(const char* src, unsigned char* dst) unsigned int newt = (*tp * 10) + (ch - '0'); if (newt > 255) - return 0; + return std::nullopt; *tp = newt; if (!saw_digit) { if (++octets > 4) - return 0; + return std::nullopt; saw_digit = 1; } } else if (ch == '.' && saw_digit) { if (octets == 4) - return 0; + return std::nullopt; *++tp = 0; saw_digit = 0; } else { - return 0; + return std::nullopt; } } if (octets < 4) - return 0; - memcpy(dst, tmp, 4); - return 1; + return std::nullopt; + return Common::BitCast(tmp); } // Maps SOCKOPT level from Wii to native @@ -655,7 +656,13 @@ IPCReply NetIPTopDevice::HandleInetPToNRequest(const IOCtlRequest& request) const std::string address = memory.GetString(request.buffer_in); INFO_LOG_FMT(IOS_NET, "IOCTL_SO_INETPTON (Translating: {})", address); - return IPCReply(inet_pton(address.c_str(), memory.GetPointer(request.buffer_out + 4))); + + const std::optional result = inet_pton(address.c_str()); + if (!result) + return IPCReply(0); + + memory.CopyToEmu(request.buffer_out + 4, &*result, sizeof(u32)); + return IPCReply(1); } IPCReply NetIPTopDevice::HandleInetNToPRequest(const IOCtlRequest& request) diff --git a/Source/Core/Core/IOS/Network/SSL.cpp b/Source/Core/Core/IOS/Network/SSL.cpp index c2ed3b3b02a9..36caab63057a 100644 --- a/Source/Core/Core/IOS/Network/SSL.cpp +++ b/Source/Core/Core/IOS/Network/SSL.cpp @@ -350,13 +350,14 @@ std::optional NetSSLDevice::IOCtlV(const IOCtlVRequest& request) if (IsSSLIDValid(sslID)) { WII_SSL* ssl = &_SSL[sslID]; - int ret = - mbedtls_x509_crt_parse_der(&ssl->cacert, memory.GetPointer(BufferOut2), BufferOutSize2); + int ret = mbedtls_x509_crt_parse_der( + &ssl->cacert, memory.GetPointerForRange(BufferOut2, BufferOutSize2), BufferOutSize2); if (Config::Get(Config::MAIN_NETWORK_SSL_DUMP_ROOT_CA)) { std::string filename = File::GetUserPath(D_DUMPSSL_IDX) + ssl->hostname + "_rootca.der"; - File::IOFile(filename, "wb").WriteBytes(memory.GetPointer(BufferOut2), BufferOutSize2); + File::IOFile(filename, "wb") + .WriteBytes(memory.GetPointerForRange(BufferOut2, BufferOutSize2), BufferOutSize2); } if (ret) diff --git a/Source/Core/Core/IOS/Network/Socket.cpp b/Source/Core/Core/IOS/Network/Socket.cpp index 6c987eca4198..4b7c2e2c8a3a 100644 --- a/Source/Core/Core/IOS/Network/Socket.cpp +++ b/Source/Core/Core/IOS/Network/Socket.cpp @@ -275,9 +275,9 @@ void WiiSocket::Update(bool read, bool write, bool except) } case IOCTL_SO_BIND: { - sockaddr_in local_name; - const u8* addr = memory.GetPointer(ioctl.buffer_in + 8); - WiiSockMan::ToNativeAddrIn(addr, &local_name); + WiiSockAddrIn addr; + memory.CopyFromEmu(&addr, ioctl.buffer_in + 8, sizeof(WiiSockAddrIn)); + sockaddr_in local_name = WiiSockMan::ToNativeAddrIn(addr); int ret = bind(fd, (sockaddr*)&local_name, sizeof(local_name)); ReturnValue = m_socket_manager.GetNetErrorCode(ret, "SO_BIND", false); @@ -288,9 +288,9 @@ void WiiSocket::Update(bool read, bool write, bool except) } case IOCTL_SO_CONNECT: { - sockaddr_in local_name; - const u8* addr = memory.GetPointer(ioctl.buffer_in + 8); - WiiSockMan::ToNativeAddrIn(addr, &local_name); + WiiSockAddrIn addr; + 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)); ReturnValue = m_socket_manager.GetNetErrorCode(ret, "SO_CONNECT", false); @@ -305,14 +305,15 @@ void WiiSocket::Update(bool read, bool write, bool except) s32 ret; if (ioctl.buffer_out_size > 0) { - sockaddr_in local_name; - u8* addr = memory.GetPointer(ioctl.buffer_out); - WiiSockMan::ToNativeAddrIn(addr, &local_name); + WiiSockAddrIn addr; + memory.CopyFromEmu(&addr, ioctl.buffer_out, sizeof(WiiSockAddrIn)); + sockaddr_in local_name = WiiSockMan::ToNativeAddrIn(addr); socklen_t addrlen = sizeof(sockaddr_in); ret = static_cast(accept(fd, (sockaddr*)&local_name, &addrlen)); - WiiSockMan::ToWiiAddrIn(local_name, addr, addrlen); + WiiSockAddrIn new_addr = WiiSockMan::ToWiiAddrIn(local_name, addrlen); + memory.CopyToEmu(ioctl.buffer_out, &new_addr, sizeof(WiiSockAddrIn)); } else { @@ -489,13 +490,13 @@ void WiiSocket::Update(bool read, bool write, bool except) case IOCTLV_NET_SSL_WRITE: { WII_SSL* ssl = &NetSSLDevice::_SSL[sslID]; - const int ret = - mbedtls_ssl_write(&ssl->ctx, memory.GetPointer(BufferOut2), BufferOutSize2); + const int ret = mbedtls_ssl_write( + &ssl->ctx, memory.GetPointerForRange(BufferOut2, BufferOutSize2), BufferOutSize2); if (ret >= 0) { system.GetPowerPC().GetDebugInterface().NetworkLogger()->LogSSLWrite( - memory.GetPointer(BufferOut2), ret, ssl->hostfd); + memory.GetPointerForRange(BufferOut2, ret), ret, ssl->hostfd); // Return bytes written or SSL_ERR_ZERO if none WriteReturnValue(memory, (ret == 0) ? SSL_ERR_ZERO : ret, BufferIn); } @@ -523,13 +524,13 @@ void WiiSocket::Update(bool read, bool write, bool except) case IOCTLV_NET_SSL_READ: { WII_SSL* ssl = &NetSSLDevice::_SSL[sslID]; - const int ret = - mbedtls_ssl_read(&ssl->ctx, memory.GetPointer(BufferIn2), BufferInSize2); + const int ret = mbedtls_ssl_read( + &ssl->ctx, memory.GetPointerForRange(BufferIn2, BufferInSize2), BufferInSize2); if (ret >= 0) { system.GetPowerPC().GetDebugInterface().NetworkLogger()->LogSSLRead( - memory.GetPointer(BufferIn2), ret, ssl->hostfd); + memory.GetPointerForRange(BufferIn2, ret), ret, ssl->hostfd); // Return bytes read or SSL_ERR_ZERO if none WriteReturnValue(memory, (ret == 0) ? SSL_ERR_ZERO : ret, BufferIn); } @@ -600,8 +601,9 @@ void WiiSocket::Update(bool read, bool write, bool except) sockaddr_in local_name = {0}; if (has_destaddr) { - const u8* addr = memory.GetPointer(BufferIn2 + 0x0C); - WiiSockMan::ToNativeAddrIn(addr, &local_name); + WiiSockAddrIn addr; + memory.CopyFromEmu(&addr, BufferIn2 + 0x0C, sizeof(WiiSockAddrIn)); + local_name = WiiSockMan::ToNativeAddrIn(addr); } auto* to = has_destaddr ? reinterpret_cast(&local_name) : nullptr; @@ -634,17 +636,18 @@ void WiiSocket::Update(bool read, bool write, bool except) } u32 flags = memory.Read_U32(BufferIn + 0x04); - // Not a string, Windows requires a char* for recvfrom - char* data = (char*)memory.GetPointer(BufferOut); int data_len = BufferOutSize; + // Not a string, Windows requires a char* for recvfrom + char* data = reinterpret_cast(memory.GetPointerForRange(BufferOut, BufferOutSize)); sockaddr_in local_name; memset(&local_name, 0, sizeof(sockaddr_in)); if (BufferOutSize2 != 0) { - const u8* addr = memory.GetPointer(BufferOut2); - WiiSockMan::ToNativeAddrIn(addr, &local_name); + WiiSockAddrIn addr; + memory.CopyFromEmu(&addr, BufferOut2, sizeof(WiiSockAddrIn)); + local_name = WiiSockMan::ToNativeAddrIn(addr); } // Act as non blocking when SO_MSG_NONBLOCK is specified @@ -680,8 +683,8 @@ void WiiSocket::Update(bool read, bool write, bool except) if (BufferOutSize2 != 0) { - u8* addr = memory.GetPointer(BufferOut2); - WiiSockMan::ToWiiAddrIn(local_name, addr, addrlen); + WiiSockAddrIn new_addr = WiiSockMan::ToWiiAddrIn(local_name, addrlen); + memory.CopyToEmu(BufferOut2, &new_addr, sizeof(WiiSockAddrIn)); } break; } @@ -1110,12 +1113,15 @@ void WiiSockMan::UpdatePollCommands() }); } -void WiiSockMan::ToNativeAddrIn(const u8* addr, sockaddr_in* to) +sockaddr_in WiiSockMan::ToNativeAddrIn(WiiSockAddrIn from) { - const WiiSockAddrIn from = Common::BitCastPtr(addr); - to->sin_addr.s_addr = from.addr.addr; - to->sin_family = from.family; - to->sin_port = from.port; + sockaddr_in result; + + result.sin_addr.s_addr = from.addr.addr; + result.sin_family = from.family; + result.sin_port = from.port; + + return result; } s32 WiiSockMan::ConvertEvents(s32 events, ConvertDirection dir) @@ -1155,15 +1161,16 @@ s32 WiiSockMan::ConvertEvents(s32 events, ConvertDirection dir) return converted_events; } -void WiiSockMan::ToWiiAddrIn(const sockaddr_in& from, u8* to, socklen_t addrlen) +WiiSockAddrIn WiiSockMan::ToWiiAddrIn(const sockaddr_in& from, socklen_t addrlen) { - to[offsetof(WiiSockAddrIn, len)] = - u8(addrlen > sizeof(WiiSockAddrIn) ? sizeof(WiiSockAddrIn) : addrlen); - to[offsetof(WiiSockAddrIn, family)] = u8(from.sin_family & 0xFF); - const u16& from_port = from.sin_port; - memcpy(to + offsetof(WiiSockAddrIn, port), &from_port, sizeof(from_port)); - const u32& from_addr = from.sin_addr.s_addr; - memcpy(to + offsetof(WiiSockAddrIn, addr.addr), &from_addr, sizeof(from_addr)); + WiiSockAddrIn result; + + result.len = u8(addrlen > sizeof(WiiSockAddrIn) ? sizeof(WiiSockAddrIn) : addrlen); + result.family = u8(from.sin_family & 0xFF); + result.port = from.sin_port; + result.addr.addr = from.sin_addr.s_addr; + + return result; } void WiiSockMan::DoState(PointerWrap& p) diff --git a/Source/Core/Core/IOS/Network/Socket.h b/Source/Core/Core/IOS/Network/Socket.h index afbd3b210f2d..abfc752afa59 100644 --- a/Source/Core/Core/IOS/Network/Socket.h +++ b/Source/Core/Core/IOS/Network/Socket.h @@ -266,9 +266,9 @@ class WiiSockMan s32 GetNetErrorCode(s32 ret, std::string_view caller, bool is_rw); void Update(); - static void ToNativeAddrIn(const u8* from, sockaddr_in* to); - static void ToWiiAddrIn(const sockaddr_in& from, u8* to, - socklen_t addrlen = sizeof(WiiSockAddrIn)); + static sockaddr_in ToNativeAddrIn(WiiSockAddrIn from); + static WiiSockAddrIn ToWiiAddrIn(const sockaddr_in& from, + socklen_t addrlen = sizeof(WiiSockAddrIn)); static s32 ConvertEvents(s32 events, ConvertDirection dir); void DoState(PointerWrap& p); diff --git a/Source/Core/Core/IOS/Network/WD/Command.cpp b/Source/Core/Core/IOS/Network/WD/Command.cpp index 5489f310ed07..d86ee5f39fc8 100644 --- a/Source/Core/Core/IOS/Network/WD/Command.cpp +++ b/Source/Core/Core/IOS/Network/WD/Command.cpp @@ -346,7 +346,8 @@ std::optional NetWDCommandDevice::IOCtlV(const IOCtlVRequest& request) auto& system = GetSystem(); auto& memory = system.GetMemory(); - u16* results = (u16*)memory.GetPointer(request.io_vectors.at(0).address); + u16* results = (u16*)memory.GetPointerForRange(request.io_vectors.at(0).address, + sizeof(u16) + sizeof(BSSInfo)); // first u16 indicates number of BSSInfo following results[0] = Common::swap16(1); diff --git a/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp b/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp index 6339ec087a5e..5edff3a556c5 100644 --- a/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp +++ b/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp @@ -287,7 +287,7 @@ s32 SDIOSlot0Device::ExecuteCommand(const Request& request, u32 buffer_in, u32 b if (!m_card.Seek(address, File::SeekOrigin::Begin)) ERROR_LOG_FMT(IOS_SD, "Seek failed"); - if (m_card.ReadBytes(memory.GetPointer(req.addr), size)) + if (m_card.ReadBytes(memory.GetPointerForRange(req.addr, size), size)) { DEBUG_LOG_FMT(IOS_SD, "Outbuffer size {} got {}", rw_buffer_size, size); } @@ -317,7 +317,7 @@ s32 SDIOSlot0Device::ExecuteCommand(const Request& request, u32 buffer_in, u32 b if (!m_card.Seek(address, File::SeekOrigin::Begin)) ERROR_LOG_FMT(IOS_SD, "Seek failed"); - if (!m_card.WriteBytes(memory.GetPointer(req.addr), size)) + if (!m_card.WriteBytes(memory.GetPointerForRange(req.addr, size), size)) { ERROR_LOG_FMT(IOS_SD, "Write Failed - error: {}, eof: {}", std::ferror(m_card.GetHandle()), std::feof(m_card.GetHandle())); diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp index 4896e678b82e..125036bd279c 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp @@ -168,14 +168,15 @@ std::optional BluetoothEmuDevice::IOCtlV(const IOCtlVRequest& request) auto& memory = system.GetMemory(); // This is the ACL datapath from CPU to Wii Remote - const auto* acl_header = - reinterpret_cast(memory.GetPointer(ctrl.data_address)); + const auto* acl_header = reinterpret_cast( + memory.GetPointerForRange(ctrl.data_address, sizeof(hci_acldata_hdr_t))); DEBUG_ASSERT(HCI_BC_FLAG(acl_header->con_handle) == HCI_POINT2POINT); DEBUG_ASSERT(HCI_PB_FLAG(acl_header->con_handle) == HCI_PACKET_START); SendToDevice(HCI_CON_HANDLE(acl_header->con_handle), - memory.GetPointer(ctrl.data_address + sizeof(hci_acldata_hdr_t)), + memory.GetPointerForRange(ctrl.data_address + sizeof(hci_acldata_hdr_t), + acl_header->length), acl_header->length); break; } @@ -250,8 +251,8 @@ void BluetoothEmuDevice::SendACLPacket(const bdaddr_t& source, const u8* data, u auto& system = GetSystem(); auto& memory = system.GetMemory(); - hci_acldata_hdr_t* header = - reinterpret_cast(memory.GetPointer(m_acl_endpoint->data_address)); + hci_acldata_hdr_t* header = reinterpret_cast( + memory.GetPointerForRange(m_acl_endpoint->data_address, sizeof(hci_acldata_hdr_t))); header->con_handle = HCI_MK_CON_HANDLE(connection_handle, HCI_PACKET_START, HCI_POINT2POINT); header->length = size; @@ -431,7 +432,8 @@ void BluetoothEmuDevice::ACLPool::WriteToEndpoint(const USB::V0BulkMessage& endp auto& system = m_ios.GetSystem(); auto& memory = system.GetMemory(); - hci_acldata_hdr_t* header = (hci_acldata_hdr_t*)memory.GetPointer(endpoint.data_address); + hci_acldata_hdr_t* header = (hci_acldata_hdr_t*)memory.GetPointerForRange( + endpoint.data_address, sizeof(hci_acldata_hdr_t)); header->con_handle = HCI_MK_CON_HANDLE(conn_handle, HCI_PACKET_START, HCI_POINT2POINT); header->length = size; @@ -973,7 +975,7 @@ void BluetoothEmuDevice::ExecuteHCICommandMessage(const USB::V0CtrlMessage& ctrl const u8* input = memory.GetPointer(ctrl_message.data_address + 3); SCommandMessage msg; - std::memcpy(&msg, memory.GetPointer(ctrl_message.data_address), sizeof(msg)); + memory.CopyFromEmu(&msg, ctrl_message.data_address, sizeof(msg)); const u16 ocf = HCI_OCF(msg.Opcode); const u16 ogf = HCI_OGF(msg.Opcode); diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index 04bebfee0088..d362c3d312bc 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -230,8 +230,8 @@ std::optional WFSIDevice::IOCtl(const IOCtlRequest& request) input_size, input_ptr, content_id); std::vector decrypted(input_size); - m_aes_ctx->Crypt(m_aes_iv, m_aes_iv, memory.GetPointer(input_ptr), decrypted.data(), - input_size); + m_aes_ctx->Crypt(m_aes_iv, m_aes_iv, memory.GetPointerForRange(input_ptr, input_size), + decrypted.data(), input_size); m_arc_unpacker.AddBytes(decrypted); break; @@ -519,7 +519,7 @@ std::optional WFSIDevice::IOCtl(const IOCtlRequest& request) } else { - fp.ReadBytes(memory.GetPointer(dol_addr), max_dol_size); + fp.ReadBytes(memory.GetPointerForRange(dol_addr, max_dol_size), max_dol_size); } memory.Write_U32(real_dol_size, request.buffer_out); break; @@ -565,13 +565,13 @@ u32 WFSIDevice::GetTmd(u16 group_id, u32 title_id, u64 subtitle_id, u32 address, WARN_LOG_FMT(IOS_WFS, "GetTmd: no such file or directory: {}", path); return WFS_ENOENT; } + *size = static_cast(fp.GetSize()); if (address) { auto& system = GetSystem(); auto& memory = system.GetMemory(); - fp.ReadBytes(memory.GetPointer(address), fp.GetSize()); + fp.ReadBytes(memory.GetPointerForRange(address, *size), *size); } - *size = fp.GetSize(); return IPC_SUCCESS; } diff --git a/Source/Core/Core/IOS/WFS/WFSSRV.cpp b/Source/Core/Core/IOS/WFS/WFSSRV.cpp index db1a71658163..3bc36f5fcd6d 100644 --- a/Source/Core/Core/IOS/WFS/WFSSRV.cpp +++ b/Source/Core/Core/IOS/WFS/WFSSRV.cpp @@ -297,7 +297,7 @@ std::optional WFSSRVDevice::IOCtl(const IOCtlRequest& request) fd_obj->file.Seek(position, File::SeekOrigin::Begin); } size_t read_bytes; - fd_obj->file.ReadArray(memory.GetPointer(addr), size, &read_bytes); + fd_obj->file.ReadArray(memory.GetPointerForRange(addr, size), size, &read_bytes); // TODO(wfs): Handle read errors. if (absolute) { @@ -337,7 +337,7 @@ std::optional WFSSRVDevice::IOCtl(const IOCtlRequest& request) { fd_obj->file.Seek(position, File::SeekOrigin::Begin); } - fd_obj->file.WriteArray(memory.GetPointer(addr), size); + fd_obj->file.WriteArray(memory.GetPointerForRange(addr, size), size); // TODO(wfs): Handle write errors. if (absolute) { From ad43b032534094b1acfa1e4a9c0717ecc75e0f47 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 31 Mar 2024 21:53:51 +0200 Subject: [PATCH 143/223] HW: Remove calls to GetPointer Typically when someone uses GetPointer, it's because they want to read from a range of memory. GetPointer is unsafe to use for this. While it does check that the passed-in address is valid, it doesn't know the size of the range that will be accessed, so it can't check that the end address is valid. The safer alternative GetPointerForRange should be used instead. Note that there is still the problem of many callers not checking for nullptr. This is part 2 of a series of changes removing the use of GetPointer throughout the code base. After this, VideoCommon is the one major part of Dolphin that remains. --- Source/Core/Core/HW/AddressSpace.cpp | 6 ++--- Source/Core/Core/HW/DSP.cpp | 2 +- Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp | 5 +++-- Source/Core/Core/HW/DSPLLE/DSPHost.cpp | 2 +- .../Core/Core/HW/EXI/EXI_DeviceEthernet.cpp | 2 +- .../Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp | 4 ++-- Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp | 4 ++-- Source/Core/Core/HW/GPFifo.cpp | 10 ++------- Source/Core/Core/HW/Memmap.cpp | 22 ++++++++++++++----- Source/Core/Core/PowerPC/GDBStub.cpp | 4 ++-- Source/Core/Core/PowerPC/MMU.cpp | 15 +++---------- 11 files changed, 36 insertions(+), 40 deletions(-) diff --git a/Source/Core/Core/HW/AddressSpace.cpp b/Source/Core/Core/HW/AddressSpace.cpp index 4ced120a5026..e98ce0f104aa 100644 --- a/Source/Core/Core/HW/AddressSpace.cpp +++ b/Source/Core/Core/HW/AddressSpace.cpp @@ -150,14 +150,14 @@ struct EffectiveAddressSpaceAccessors : Accessors return false; } - u8* page_ptr = memory.GetPointer(*page_physical_address); + std::size_t chunk_size = std::min(0x1000 - offset, needle_size); + u8* page_ptr = memory.GetPointerForRange(*page_physical_address + offset, chunk_size); if (page_ptr == nullptr) { return false; } - std::size_t chunk_size = std::min(0x1000 - offset, needle_size); - if (memcmp(needle_start, page_ptr + offset, chunk_size) != 0) + if (memcmp(needle_start, page_ptr, chunk_size) != 0) { return false; } diff --git a/Source/Core/Core/HW/DSP.cpp b/Source/Core/Core/HW/DSP.cpp index 30064953a8c7..869c0f42b5f6 100644 --- a/Source/Core/Core/HW/DSP.cpp +++ b/Source/Core/Core/HW/DSP.cpp @@ -430,7 +430,7 @@ void DSPManager::UpdateAudioDMA() // external audio fifo in the emulator, to be mixed with the disc // streaming output. auto& memory = m_system.GetMemory(); - void* address = memory.GetPointer(m_audio_dma.current_source_address); + void* address = memory.GetPointerForRange(m_audio_dma.current_source_address, 32); AudioCommon::SendAIBuffer(m_system, reinterpret_cast(address), 8); if (m_audio_dma.remaining_blocks_count != 0) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp index 7617c0088b1f..b3d2afd30e8e 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp @@ -190,8 +190,9 @@ void UCodeInterface::PrepareBootUCode(u32 mail) if (Config::Get(Config::MAIN_DUMP_UCODE)) { - DSP::DumpDSPCode(memory.GetPointer(m_next_ucode.iram_mram_addr), m_next_ucode.iram_size, - ector_crc); + const u8* pointer = + memory.GetPointerForRange(m_next_ucode.iram_mram_addr, m_next_ucode.iram_size); + DSP::DumpDSPCode(pointer, m_next_ucode.iram_size, ector_crc); } DEBUG_LOG_FMT(DSPHLE, "PrepareBootUCode {:#010x}", ector_crc); diff --git a/Source/Core/Core/HW/DSPLLE/DSPHost.cpp b/Source/Core/Core/HW/DSPLLE/DSPHost.cpp index 7ba08a57ecb3..39507c98fe96 100644 --- a/Source/Core/Core/HW/DSPLLE/DSPHost.cpp +++ b/Source/Core/Core/HW/DSPLLE/DSPHost.cpp @@ -76,7 +76,7 @@ void CodeLoaded(DSPCore& dsp, u32 addr, size_t size) { auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); - CodeLoaded(dsp, memory.GetPointer(addr), size); + CodeLoaded(dsp, memory.GetPointerForRange(addr, size), size); } void CodeLoaded(DSPCore& dsp, const u8* ptr, size_t size) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp index fb2660ed0468..202dc557f889 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp @@ -231,7 +231,7 @@ void CEXIETHERNET::DMAWrite(u32 addr, u32 size) transfer.address == BBA_WRTXFIFOD) { auto& memory = m_system.GetMemory(); - DirectFIFOWrite(memory.GetPointer(addr), size); + DirectFIFOWrite(memory.GetPointerForRange(addr, size), size); } else { diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp index cfc76f27db58..13a06da652e7 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp @@ -525,7 +525,7 @@ void CEXIMemoryCard::DoState(PointerWrap& p) void CEXIMemoryCard::DMARead(u32 addr, u32 size) { auto& memory = m_system.GetMemory(); - m_memory_card->Read(m_address, size, memory.GetPointer(addr)); + m_memory_card->Read(m_address, size, memory.GetPointerForRange(addr, size)); if ((m_address + size) % Memcard::BLOCK_SIZE == 0) { @@ -543,7 +543,7 @@ void CEXIMemoryCard::DMARead(u32 addr, u32 size) void CEXIMemoryCard::DMAWrite(u32 addr, u32 size) { auto& memory = m_system.GetMemory(); - m_memory_card->Write(m_address, size, memory.GetPointer(addr)); + m_memory_card->Write(m_address, size, memory.GetPointerForRange(addr, size)); if (((m_address + size) % Memcard::BLOCK_SIZE) == 0) { diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp index 17d4a7c48416..fbe75e7a841e 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceModem.cpp @@ -127,7 +127,7 @@ void CEXIModem::DMAWrite(u32 addr, u32 size) else { auto& memory = m_system.GetMemory(); - HandleWriteModemTransfer(memory.GetPointer(addr), size); + HandleWriteModemTransfer(memory.GetPointerForRange(addr, size), size); } } @@ -195,7 +195,7 @@ void CEXIModem::DMARead(u32 addr, u32 size) else { auto& memory = m_system.GetMemory(); - HandleReadModemTransfer(memory.GetPointer(addr), size); + HandleReadModemTransfer(memory.GetPointerForRange(addr, size), size); } } diff --git a/Source/Core/Core/HW/GPFifo.cpp b/Source/Core/Core/HW/GPFifo.cpp index dc2d6e2f602b..0de434b93dcb 100644 --- a/Source/Core/Core/HW/GPFifo.cpp +++ b/Source/Core/Core/HW/GPFifo.cpp @@ -90,24 +90,18 @@ void GPFifoManager::UpdateGatherPipe() size_t pipe_count = GetGatherPipeCount(); size_t processed; - u8* cur_mem = memory.GetPointer(processor_interface.m_fifo_cpu_write_pointer); for (processed = 0; pipe_count >= GATHER_PIPE_SIZE; processed += GATHER_PIPE_SIZE) { // copy the GatherPipe - memcpy(cur_mem, m_gather_pipe + processed, GATHER_PIPE_SIZE); + memory.CopyToEmu(processor_interface.m_fifo_cpu_write_pointer, m_gather_pipe + processed, + GATHER_PIPE_SIZE); pipe_count -= GATHER_PIPE_SIZE; // increase the CPUWritePointer if (processor_interface.m_fifo_cpu_write_pointer == processor_interface.m_fifo_cpu_end) - { processor_interface.m_fifo_cpu_write_pointer = processor_interface.m_fifo_cpu_base; - cur_mem = memory.GetPointer(processor_interface.m_fifo_cpu_write_pointer); - } else - { - cur_mem += GATHER_PIPE_SIZE; processor_interface.m_fifo_cpu_write_pointer += GATHER_PIPE_SIZE; - } system.GetCommandProcessor().GatherPipeBursted(); } diff --git a/Source/Core/Core/HW/Memmap.cpp b/Source/Core/Core/HW/Memmap.cpp index 02d31c827218..9950fb5200ad 100644 --- a/Source/Core/Core/HW/Memmap.cpp +++ b/Source/Core/Core/HW/Memmap.cpp @@ -462,18 +462,28 @@ void MemoryManager::Memset(u32 address, u8 value, size_t size) std::string MemoryManager::GetString(u32 em_address, size_t size) { - const char* ptr = reinterpret_cast(GetPointer(em_address)); - if (ptr == nullptr) - return ""; + std::string result; if (size == 0) // Null terminated string. { - return std::string(ptr); + while (true) + { + const u8 value = Read_U8(em_address); + if (value == 0) + break; + + result.push_back(value); + ++em_address; + } + return result; } else // Fixed size string, potentially null terminated or null padded. { - size_t length = strnlen(ptr, size); - return std::string(ptr, length); + result.resize(size); + CopyFromEmu(result.data(), em_address, size); + size_t length = strnlen(result.data(), size); + result.resize(length); + return result; } } diff --git a/Source/Core/Core/PowerPC/GDBStub.cpp b/Source/Core/Core/PowerPC/GDBStub.cpp index 5ab058ef82fe..a0d658eb1f4f 100644 --- a/Source/Core/Core/PowerPC/GDBStub.cpp +++ b/Source/Core/Core/PowerPC/GDBStub.cpp @@ -831,7 +831,7 @@ static void ReadMemory(const Core::CPUThreadGuard& guard) auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); - u8* data = memory.GetPointer(addr); + u8* data = memory.GetPointerForRange(addr, len); Mem2hex(reply, data, len); reply[len * 2] = '\0'; SendReply((char*)reply); @@ -858,7 +858,7 @@ static void WriteMemory(const Core::CPUThreadGuard& guard) auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); - u8* dst = memory.GetPointer(addr); + u8* dst = memory.GetPointerForRange(addr, len); Hex2mem(dst, s_cmd_bfr + i + 1, len); SendReply("OK"); } diff --git a/Source/Core/Core/PowerPC/MMU.cpp b/Source/Core/Core/PowerPC/MMU.cpp index 59f574ad655c..0291010bad43 100644 --- a/Source/Core/Core/PowerPC/MMU.cpp +++ b/Source/Core/Core/PowerPC/MMU.cpp @@ -1044,18 +1044,11 @@ void MMU::DMA_LCToMemory(const u32 mem_address, const u32 cache_address, const u } const u8* src = m_memory.GetL1Cache() + (cache_address & 0x3FFFF); - u8* dst = m_memory.GetPointer(mem_address); - if (dst == nullptr) - return; - - memcpy(dst, src, 32 * num_blocks); + m_memory.CopyToEmu(mem_address, src, 32 * num_blocks); } void MMU::DMA_MemoryToLC(const u32 cache_address, const u32 mem_address, const u32 num_blocks) { - const u8* src = m_memory.GetPointer(mem_address); - u8* dst = m_memory.GetL1Cache() + (cache_address & 0x3FFFF); - // No known game uses this; here for completeness. // TODO: Refactor. if ((mem_address & 0x0F000000) == 0x08000000) @@ -1081,10 +1074,8 @@ void MMU::DMA_MemoryToLC(const u32 cache_address, const u32 mem_address, const u return; } - if (src == nullptr) - return; - - memcpy(dst, src, 32 * num_blocks); + u8* dst = m_memory.GetL1Cache() + (cache_address & 0x3FFFF); + m_memory.CopyFromEmu(dst, mem_address, 32 * num_blocks); } static bool TranslateBatAddress(const BatTable& bat_table, u32* address, bool* wi) From ac4fd2297fda3b1e560b40e3e2e27fb9e5eb4d2e Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 31 Mar 2024 12:54:47 -0700 Subject: [PATCH 144/223] CheatsManager: Allow making the window smaller Move CheatManager's child widgets into scroll areas to allow making the window smaller than the default. In CheatSearchWidget, enable word wrapping for the label describing the address space and search type to help it fit better inside a narrower window. --- Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp | 3 ++- Source/Core/DolphinQt/CheatSearchWidget.cpp | 5 ++++- Source/Core/DolphinQt/Config/ARCodeWidget.cpp | 3 ++- Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp | 3 ++- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp index bbe262c4699f..3c51e3681241 100644 --- a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/CheatSearchFactoryWidget.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -124,7 +125,7 @@ void CheatSearchFactoryWidget::CreateWidgets() layout->addStretch(); - setLayout(layout); + WrapInScrollArea(this, layout); } void CheatSearchFactoryWidget::ConnectWidgets() diff --git a/Source/Core/DolphinQt/CheatSearchWidget.cpp b/Source/Core/DolphinQt/CheatSearchWidget.cpp index 73bf6df95fe7..196a93ed3283 100644 --- a/Source/Core/DolphinQt/CheatSearchWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchWidget.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/CheatSearchWidget.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -174,6 +175,7 @@ void CheatSearchWidget::CreateWidgets() } QString aligned = m_session->GetAligned() ? tr("aligned") : tr("unaligned"); session_info_label->setText(tr("%1, %2, %3, %4").arg(ranges).arg(space).arg(type).arg(aligned)); + session_info_label->setWordWrap(true); } // i18n: This label is followed by a dropdown where the user can select things like "is equal to" @@ -256,7 +258,8 @@ void CheatSearchWidget::CreateWidgets() layout->addWidget(m_info_label_1); layout->addWidget(m_info_label_2); layout->addWidget(m_address_table); - setLayout(layout); + + WrapInScrollArea(this, layout); } void CheatSearchWidget::ConnectWidgets() diff --git a/Source/Core/DolphinQt/Config/ARCodeWidget.cpp b/Source/Core/DolphinQt/Config/ARCodeWidget.cpp index 276318f57319..93f0d7e589d9 100644 --- a/Source/Core/DolphinQt/Config/ARCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/ARCodeWidget.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/Config/ARCodeWidget.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -86,7 +87,7 @@ void ARCodeWidget::CreateWidgets() layout->addWidget(m_code_list); layout->addLayout(button_layout); - setLayout(layout); + WrapInScrollArea(this, layout); } void ARCodeWidget::ConnectWidgets() diff --git a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp index 1aa6afb64375..7f37241ee620 100644 --- a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/Config/GeckoCodeWidget.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -138,7 +139,7 @@ void GeckoCodeWidget::CreateWidgets() layout->addLayout(btn_layout); - setLayout(layout); + WrapInScrollArea(this, layout); } void GeckoCodeWidget::ConnectWidgets() From d6230bbad83d1961e31c88cc2da4f2a6eb1edc35 Mon Sep 17 00:00:00 2001 From: Filoppi Date: Mon, 18 Dec 2023 00:52:31 +0200 Subject: [PATCH 145/223] Video: Change the frame dumper to actually use the raw emulation output resolution, avoiding any scaling if possible. This should make comparisons much more reliable as pixels wouldn't be smushed together or stretched. --- .../Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp | 5 ++--- Source/Core/VideoCommon/Present.cpp | 11 +++++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp index 9f86ea5ed177..34b6fde739ab 100644 --- a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp @@ -339,9 +339,8 @@ void AdvancedWidget::AddDescriptions() QT_TR_NOOP("Loads graphics mods from User/Load/GraphicsMods/.

If " "unsure, leave this unchecked."); static const char TR_INTERNAL_RESOLUTION_FRAME_DUMPING_DESCRIPTION[] = QT_TR_NOOP( - "Creates frame dumps and screenshots at the internal resolution of the renderer, rather than " - "the size of the window it is displayed within.

If the aspect ratio is widescreen, " - "the output image will be scaled horizontally to preserve the vertical resolution.

" + "Creates frame dumps and screenshots at the raw internal resolution of the renderer," + "rather than using the size it is displayed within the window.

" "If unsure, leave this unchecked."); #if defined(HAVE_FFMPEG) static const char TR_USE_FFV1_DESCRIPTION[] = diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index 0cc19d6e1470..322685084dd7 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -214,14 +214,17 @@ void Presenter::ProcessFrameDumping(u64 ticks) const MathUtil::Rectangle target_rect; if (!g_ActiveConfig.bInternalResolutionFrameDumps && !g_gfx->IsHeadless()) { + // This is already scaled by "VIDEO_ENCODER_LCM" target_rect = GetTargetRectangle(); } else { - int width, height; - std::tie(width, height) = - CalculateOutputDimensions(m_xfb_rect.GetWidth(), m_xfb_rect.GetHeight()); - target_rect = MathUtil::Rectangle(0, 0, width, height); + target_rect = m_xfb_rect; + ASSERT(target_rect.top == 0 && target_rect.left == 0); + // Scale positively to make sure the least amount of information is lost. + // TODO: this should be added as black padding on the edges by the frame dumper + target_rect.right += VIDEO_ENCODER_LCM - (target_rect.GetWidth() % VIDEO_ENCODER_LCM); + target_rect.bottom += VIDEO_ENCODER_LCM - (target_rect.GetHeight() % VIDEO_ENCODER_LCM); } g_frame_dumper->DumpCurrentFrame(m_xfb_entry->texture.get(), m_xfb_rect, target_rect, ticks, From 1f34adf216ae4638bf6d420e95513b9e7c56b94f Mon Sep 17 00:00:00 2001 From: Filoppi Date: Fri, 23 Feb 2024 04:09:49 +0200 Subject: [PATCH 146/223] Video: move all padding added for frame dumping to a single function, which also avoids the output window from being resized randomly to be a multiple of 4 --- Source/Core/VideoCommon/Present.cpp | 51 ++++++++++++----------------- 1 file changed, 21 insertions(+), 30 deletions(-) diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index 322685084dd7..d338821dd841 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -213,19 +213,29 @@ void Presenter::ProcessFrameDumping(u64 ticks) const { MathUtil::Rectangle target_rect; if (!g_ActiveConfig.bInternalResolutionFrameDumps && !g_gfx->IsHeadless()) - { - // This is already scaled by "VIDEO_ENCODER_LCM" target_rect = GetTargetRectangle(); - } else - { target_rect = m_xfb_rect; - ASSERT(target_rect.top == 0 && target_rect.left == 0); - // Scale positively to make sure the least amount of information is lost. - // TODO: this should be added as black padding on the edges by the frame dumper - target_rect.right += VIDEO_ENCODER_LCM - (target_rect.GetWidth() % VIDEO_ENCODER_LCM); - target_rect.bottom += VIDEO_ENCODER_LCM - (target_rect.GetHeight() % VIDEO_ENCODER_LCM); - } + + int width = target_rect.GetWidth(); + int height = target_rect.GetHeight(); + + // Ensure divisibility by "VIDEO_ENCODER_LCM" to make it compatible with all the video + // encoders. Note that this is theoretically only necessary when recording videos and not + // screenshots. + // We always scale positively to make sure the least amount of information is lost. + // + // TODO: this should be added as black padding on the edges by the frame dumper. + if ((width % VIDEO_ENCODER_LCM) != 0) + width += VIDEO_ENCODER_LCM - (width % VIDEO_ENCODER_LCM); + if ((height % VIDEO_ENCODER_LCM) != 0) + height += VIDEO_ENCODER_LCM - (height % VIDEO_ENCODER_LCM); + + // Remove any black borders, there would be no point in including them in the recording + target_rect.left = 0; + target_rect.top = 0; + target_rect.right = width; + target_rect.bottom = height; g_frame_dumper->DumpCurrentFrame(m_xfb_entry->texture.get(), m_xfb_rect, target_rect, ticks, m_frame_count); @@ -607,18 +617,7 @@ void Presenter::UpdateDrawRectangle() int int_draw_width; int int_draw_height; - if (g_frame_dumper->IsFrameDumping()) - { - // ensure divisibility by "VIDEO_ENCODER_LCM" to make it compatible with all the video encoders. - // Note that this is theoretically only necessary when recording videos and not screenshots. - draw_width = - std::ceil(draw_width) - static_cast(std::ceil(draw_width)) % VIDEO_ENCODER_LCM; - draw_height = - std::ceil(draw_height) - static_cast(std::ceil(draw_height)) % VIDEO_ENCODER_LCM; - int_draw_width = static_cast(draw_width); - int_draw_height = static_cast(draw_height); - } - else if (g_ActiveConfig.aspect_mode != AspectMode::Raw || !m_xfb_entry) + if (g_ActiveConfig.aspect_mode != AspectMode::Raw || !m_xfb_entry) { // Find the best integer resolution: the closest aspect ratio with the least black bars. // This should have no influence if "AspectMode::Stretch" is active. @@ -703,14 +702,6 @@ std::tuple Presenter::CalculateOutputDimensions(int width, int height, height = static_cast(std::ceil(scaled_height)); } - if (g_frame_dumper->IsFrameDumping()) - { - // UpdateDrawRectangle() makes sure that the rendered image is divisible by "VIDEO_ENCODER_LCM" - // for video encoders, so do that here too to match it - width -= width % VIDEO_ENCODER_LCM; - height -= height % VIDEO_ENCODER_LCM; - } - return std::make_tuple(width, height); } From 225a6da074d8cee2733c41a8494d5aa9b02c940a Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 1 Apr 2024 16:36:14 -0400 Subject: [PATCH 147/223] Update rcheevos submodule to newest master. --- Externals/rcheevos/CMakeLists.txt | 1 + Externals/rcheevos/rcheevos | 2 +- Externals/rcheevos/rcheevos.vcxproj | 2 +- Source/Core/Core/CMakeLists.txt | 1 + Source/VSProps/Base.Dolphin.props | 1 + 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Externals/rcheevos/CMakeLists.txt b/Externals/rcheevos/CMakeLists.txt index cd48ef5b29fa..634e46da85ec 100644 --- a/Externals/rcheevos/CMakeLists.txt +++ b/Externals/rcheevos/CMakeLists.txt @@ -59,6 +59,7 @@ add_library(rcheevos target_include_directories(rcheevos PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/rcheevos/include") target_include_directories(rcheevos INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}") target_compile_definitions(rcheevos PRIVATE "RC_DISABLE_LUA=1" "RCHEEVOS_URL_SSL") +target_compile_definitions(rcheevos PRIVATE "RC_CLIENT_SUPPORTS_HASH") if(CMAKE_SYSTEM_NAME MATCHES "Windows") target_compile_definitions(rcheevos PRIVATE "_CRT_SECURE_NO_WARNINGS") endif() diff --git a/Externals/rcheevos/rcheevos b/Externals/rcheevos/rcheevos index b64ac2b25038..a6cdbb4a529d 160000 --- a/Externals/rcheevos/rcheevos +++ b/Externals/rcheevos/rcheevos @@ -1 +1 @@ -Subproject commit b64ac2b25038bc9feb94ca759b5ba4d02642b3af +Subproject commit a6cdbb4a529d85b74777597fcff037dde7bef66b diff --git a/Externals/rcheevos/rcheevos.vcxproj b/Externals/rcheevos/rcheevos.vcxproj index 46b8921a7548..51a94c775074 100644 --- a/Externals/rcheevos/rcheevos.vcxproj +++ b/Externals/rcheevos/rcheevos.vcxproj @@ -76,7 +76,7 @@ - RC_DISABLE_LUA;RCHEEVOS_URL_SSL;%(PreprocessorDefinitions) + RC_DISABLE_LUA;RCHEEVOS_URL_SSL;RC_CLIENT_SUPPORTS_HASH;%(PreprocessorDefinitions) $(ProjectDir)rcheevos\include;%(AdditionalIncludeDirectories) diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index e87983e15b56..fb2c0c18fa70 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -776,4 +776,5 @@ 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) endif() diff --git a/Source/VSProps/Base.Dolphin.props b/Source/VSProps/Base.Dolphin.props index 5912d9d325e6..33da70013e96 100644 --- a/Source/VSProps/Base.Dolphin.props +++ b/Source/VSProps/Base.Dolphin.props @@ -46,6 +46,7 @@ HAVE_SDL2;%(PreprocessorDefinitions) STEAM;%(PreprocessorDefinitions) USE_RETRO_ACHIEVEMENTS;%(PreprocessorDefinitions) + RC_CLIENT_SUPPORTS_HASH;%(PreprocessorDefinitions) %1").arg(QString::fromStdString(debug_interface.GetDescription(branch_addr)))); + tr("--> %1").arg(QtUtils::FromStdString(debug_interface.GetDescription(branch_addr)))); param_item->setForeground(dark_theme ? QColor(255, 135, 255) : Qt::magenta); } diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp index 09f7771ba641..0140ff58d9dd 100644 --- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp @@ -17,6 +17,7 @@ #include "Core/PowerPC/PowerPC.h" #include "Core/System.h" #include "DolphinQt/Host.h" +#include "DolphinQt/QtUtils/FromStdString.h" #include "DolphinQt/Settings.h" ThreadWidget::ThreadWidget(QWidget* parent) : QDockWidget(parent) @@ -461,7 +462,7 @@ void ThreadWidget::UpdateThreadCallstack(const Core::CPUThreadGuard& guard, m_callstack_table->setItem(i, 2, new QTableWidgetItem(format_hex(lr_save))); m_callstack_table->setItem( i, 3, - new QTableWidgetItem(QString::fromStdString( + new QTableWidgetItem(QtUtils::FromStdString( guard.GetSystem().GetPowerPC().GetDebugInterface().GetDescription(lr_save)))); } else diff --git a/Source/Core/DolphinQt/DolphinQt.vcxproj b/Source/Core/DolphinQt/DolphinQt.vcxproj index 4cdb14fb3342..cbcd07bfad0d 100644 --- a/Source/Core/DolphinQt/DolphinQt.vcxproj +++ b/Source/Core/DolphinQt/DolphinQt.vcxproj @@ -396,6 +396,7 @@ + diff --git a/Source/Core/DolphinQt/QtUtils/FromStdString.h b/Source/Core/DolphinQt/QtUtils/FromStdString.h new file mode 100644 index 000000000000..945d422f3f77 --- /dev/null +++ b/Source/Core/DolphinQt/QtUtils/FromStdString.h @@ -0,0 +1,23 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +namespace QtUtils +{ +inline QString FromStdString(std::string_view s) +{ + return QString::fromUtf8(s.data(), s.size()); +} +inline QString FromStdString(std::u8string_view s) +{ + return QString::fromUtf8(s.data(), s.size()); +} +inline QString FromStdString(std::u16string_view s) +{ + return QString::fromUtf16(s.data(), s.size()); +} +} // namespace QtUtils From 5456d990d16bee5a03796e5230ffc1117a981393 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 13 Apr 2024 22:39:10 +0200 Subject: [PATCH 188/223] Android/ControllerInterface: Run the init code This was broken by a9a9fdd9e9. Because Init didn't run, the Android input backend would crash whenever it tried to call into JVM code. --- .../Core/InputCommon/ControllerInterface/Android/Android.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp index 69f0e5b5ec4f..c60679daf03b 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp @@ -448,7 +448,7 @@ namespace ciface::Android class InputBackend final : public ciface::InputBackend { public: - using ciface::InputBackend::InputBackend; + InputBackend(ControllerInterface* controller_interface); ~InputBackend(); void PopulateDevices() override; @@ -797,7 +797,8 @@ static jintArray CreateKeyCodesArray(JNIEnv* env) return keycodes_array; } -void Init() +InputBackend::InputBackend(ControllerInterface* controller_interface) + : ciface::InputBackend(controller_interface) { JNIEnv* env = IDCache::GetEnvForThread(); From 37b89d5b711d33db0a462d820cbbeebb6cd70c73 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 11 Apr 2024 16:35:18 -0700 Subject: [PATCH 189/223] GameList: Show (Disc 1) for first disc of two-disc games Append disc label to the first disc of two-disc games too, rather than only labelling the second disc. --- .../Core/DolphinQt/GameList/GameListModel.cpp | 10 +-- Source/Core/UICommon/GameFile.cpp | 73 +++++++++++++++++++ Source/Core/UICommon/GameFile.h | 3 + Source/Core/UICommon/GameFileCache.cpp | 2 +- 4 files changed, 82 insertions(+), 6 deletions(-) diff --git a/Source/Core/DolphinQt/GameList/GameListModel.cpp b/Source/Core/DolphinQt/GameList/GameListModel.cpp index a930d6660755..c70a870c2310 100644 --- a/Source/Core/DolphinQt/GameList/GameListModel.cpp +++ b/Source/Core/DolphinQt/GameList/GameListModel.cpp @@ -92,14 +92,14 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const { QString name = QString::fromStdString(game.GetName(m_title_database)); - // Add disc numbers > 1 to title if not present. - const int disc_nr = game.GetDiscNumber() + 1; - if (disc_nr > 1) + const int disc_number = game.GetDiscNumber() + 1; + if (disc_number > 1 || game.IsTwoDiscGame()) { - if (!name.contains(QRegularExpression(QStringLiteral("disc ?%1").arg(disc_nr), + // Add disc number to title if not present. + if (!name.contains(QRegularExpression(QStringLiteral("disc ?%1").arg(disc_number), QRegularExpression::CaseInsensitiveOption))) { - name.append(tr(" (Disc %1)").arg(disc_nr)); + name.append(tr(" (Disc %1)").arg(disc_number)); } } diff --git a/Source/Core/UICommon/GameFile.cpp b/Source/Core/UICommon/GameFile.cpp index 470016d1bd54..760346313851 100644 --- a/Source/Core/UICommon/GameFile.cpp +++ b/Source/Core/UICommon/GameFile.cpp @@ -135,6 +135,7 @@ GameFile::GameFile(std::string path) : m_file_path(std::move(path)) m_maker_id = volume->GetMakerID(); m_revision = volume->GetRevision().value_or(0); m_disc_number = volume->GetDiscNumber().value_or(0); + m_is_two_disc_game = CheckIfTwoDiscGame(m_game_id); m_apploader_date = volume->GetApploaderDate(); m_volume_banner.buffer = volume->GetBanner(&m_volume_banner.width, &m_volume_banner.height); @@ -321,6 +322,7 @@ void GameFile::DoState(PointerWrap& p) p.Do(m_compression_method); p.Do(m_revision); p.Do(m_disc_number); + p.Do(m_is_two_disc_game); p.Do(m_apploader_date); p.Do(m_custom_name); @@ -547,6 +549,77 @@ std::vector GameFile::GetLanguages() const return languages; } +bool GameFile::CheckIfTwoDiscGame(const std::string& game_id) const +{ + constexpr size_t GAME_ID_PREFIX_SIZE = 3; + if (game_id.size() < GAME_ID_PREFIX_SIZE) + return false; + + static constexpr std::array two_disc_game_id_prefixes = { + // Resident Evil + "DBJ", + // The Lord of the Rings: The Third Age + "G3A", + // Teenage Mutant Ninja Turtles 3: Mutant Nightmare + "G3Q", + // Resident Evil 4 + "G4B", + // Tiger Woods PGA Tour 2005 + "G5T", + // Resident Evil + "GBI", + // Resident Evil Zero + "GBZ", + // Conan + "GC9", + // Resident Evil Code: Veronica X + "GCD", + // Tom Clancy's Splinter Cell: Chaos Theory + "GCJ", + // Freaky Flyers + "GFF", + // GoldenEye: Rogue Agent + "GGI", + // Metal Gear Solid: The Twin Snakes + "GGS", + // Baten Kaitos Origins + "GK4", + // Killer7 + "GK7", + // Baten Kaitos: Eternal Wings and the Lost Ocean + "GKB", + // Lupin the 3rd: Lost Treasure by the Sea + "GL3", + // Enter the Matrix + "GMX", + // Teenage Mutant Ninja Turtles 2: Battle Nexus + "GNI", + // GoldenEye: Rogue Agent + "GOY", + // Tales of Symphonia + "GQS", + // Medal of Honor: Rising Sun + "GR8", + "GRZ", + // Tales of Symphonia + "GTO", + // Tiger Woods PGA Tour 2004 + "GW4", + // Tom Clancy's Splinter Cell: Double Agent (GC) + "GWY", + // Dragon Quest X: Mezameshi Itsutsu no Shuzoku Online + "S4M", + "S4S", + "S6T", + "SDQ", + }; + static_assert(std::is_sorted(two_disc_game_id_prefixes.begin(), two_disc_game_id_prefixes.end())); + + std::string_view game_id_prefix(game_id.data(), GAME_ID_PREFIX_SIZE); + return std::binary_search(two_disc_game_id_prefixes.begin(), two_disc_game_id_prefixes.end(), + game_id_prefix); +} + std::string GameFile::GetNetPlayName(const Core::TitleDatabase& title_database) const { std::vector info; diff --git a/Source/Core/UICommon/GameFile.h b/Source/Core/UICommon/GameFile.h index 32fb9278aaa9..e43950143b32 100644 --- a/Source/Core/UICommon/GameFile.h +++ b/Source/Core/UICommon/GameFile.h @@ -81,6 +81,7 @@ class GameFile final u16 GetRevision() const { return m_revision; } // 0 is the first disc, 1 is the second disc u8 GetDiscNumber() const { return m_disc_number; } + bool IsTwoDiscGame() const { return m_is_two_disc_game; } std::string GetNetPlayName(const Core::TitleDatabase& title_database) const; // This function is slow @@ -134,6 +135,7 @@ class GameFile final bool ReadXMLMetadata(const std::string& path); bool ReadPNGBanner(const std::string& path); bool TryLoadGameModDescriptorBanner(); + bool CheckIfTwoDiscGame(const std::string& game_id) const; // IMPORTANT: Nearly all data members must be save/restored in DoState. // If anything is changed, make sure DoState handles it properly and @@ -168,6 +170,7 @@ class GameFile final std::string m_compression_method{}; u16 m_revision{}; u8 m_disc_number{}; + bool m_is_two_disc_game{}; std::string m_apploader_date; std::string m_custom_name; diff --git a/Source/Core/UICommon/GameFileCache.cpp b/Source/Core/UICommon/GameFileCache.cpp index 2838d331d866..d5b970d29cb3 100644 --- a/Source/Core/UICommon/GameFileCache.cpp +++ b/Source/Core/UICommon/GameFileCache.cpp @@ -26,7 +26,7 @@ namespace UICommon { -static constexpr u32 CACHE_REVISION = 24; // Last changed in PR 11557 +static constexpr u32 CACHE_REVISION = 25; // Last changed in PR 12702 std::vector FindAllGamePaths(const std::vector& directories_to_scan, bool recursive_scan) From ba2ccf388977bd1503de5f0e9792816c253a4239 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sun, 14 Apr 2024 18:47:20 -0400 Subject: [PATCH 190/223] Set default sound backend on OpenBSD to cubeb Set the default sound backend to cubeb instead of the default being none. --- Source/Core/AudioCommon/AudioCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index ba317d28285b..b212859e2940 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -100,7 +100,7 @@ std::string GetDefaultSoundBackend() #elif defined __linux__ if (AlsaSound::IsValid()) backend = BACKEND_ALSA; -#elif defined(__APPLE__) || defined(_WIN32) +#elif defined(__APPLE__) || defined(_WIN32) || defined(__OpenBSD__) backend = BACKEND_CUBEB; #endif return backend; From 48b38f6e9befd3b5ae2fd405d1943e91afee34a1 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 14 Apr 2024 21:47:41 -0700 Subject: [PATCH 191/223] RetroAchievements: Put "RetroAchievements.ini" in the correct config location for POSIX --- Source/Core/Common/FileUtil.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index a93db638df8c..34350c920753 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -918,6 +918,8 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[F_DUALSHOCKUDPCLIENTCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DUALSHOCKUDPCLIENT_CONFIG; s_user_paths[F_FREELOOKCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + FREELOOK_CONFIG; + s_user_paths[F_RETROACHIEVEMENTSCONFIG_IDX] = + s_user_paths[D_CONFIG_IDX] + RETROACHIEVEMENTS_CONFIG; break; case D_CACHE_IDX: From 31dc3477ad9cdcc4ba3259f8c7373e2981c13ff3 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 15 Apr 2024 14:51:06 -0500 Subject: [PATCH 192/223] DolphinQt/Mapping: Disable relative input when "Mouse Controlled Pointing" button is pressed. --- Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp | 7 ++++++- .../Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp | 5 +++++ .../Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h | 2 ++ .../InputCommon/ControllerEmu/Setting/NumericSetting.h | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp index d1e09ac973b7..96a5040704b9 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp @@ -172,7 +172,9 @@ QGroupBox* MappingWidget::CreateGroupBox(const QString& name, ControllerEmu::Con { QPushButton* mouse_button = new QPushButton(tr("Use Mouse Controlled Pointing")); form_layout->insertRow(2, mouse_button); - connect(mouse_button, &QCheckBox::clicked, [this, group] { + + using ControllerEmu::Cursor; + connect(mouse_button, &QCheckBox::clicked, [this, group = static_cast(group)] { std::string default_device = g_controller_interface.GetDefaultDeviceString() + ":"; const std::string controller_device = GetController()->GetDefaultDevice().ToString() + ":"; if (default_device == controller_device) @@ -183,6 +185,9 @@ QGroupBox* MappingWidget::CreateGroupBox(const QString& name, ControllerEmu::Con group->SetControlExpression(1, fmt::format("`{}Cursor Y+`", default_device)); group->SetControlExpression(2, fmt::format("`{}Cursor X-`", default_device)); group->SetControlExpression(3, fmt::format("`{}Cursor X+`", default_device)); + + group->SetRelativeInput(false); + emit ConfigChanged(); GetController()->UpdateReferences(g_controller_interface); }); diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp index 98784c00ae9a..0ba4bfa3ea4d 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp @@ -181,6 +181,11 @@ ControlState Cursor::GetVerticalOffset() const return m_vertical_offset_setting.GetValue() / 100; } +void Cursor::SetRelativeInput(bool value) +{ + m_relative_setting.SetValue(value); +} + bool Cursor::StateData::IsVisible() const { return !std::isnan(x); diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h index 3710a40d92e6..7b2e5f581c25 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h @@ -40,6 +40,8 @@ class Cursor : public ReshapableInput // Vertical offset in meters. ControlState GetVerticalOffset() const; + void SetRelativeInput(bool enabled); + private: Cursor::StateData UpdateState(Cursor::ReshapeData input); diff --git a/Source/Core/InputCommon/ControllerEmu/Setting/NumericSetting.h b/Source/Core/InputCommon/ControllerEmu/Setting/NumericSetting.h index b102b062e7f2..863e211caee4 100644 --- a/Source/Core/InputCommon/ControllerEmu/Setting/NumericSetting.h +++ b/Source/Core/InputCommon/ControllerEmu/Setting/NumericSetting.h @@ -186,7 +186,6 @@ class SettingValue bool IsSimpleValue() const { return m_input.GetExpression().empty(); } -private: void SetValue(ValueType value) { m_value = value; @@ -195,6 +194,7 @@ class SettingValue m_input.SetExpression(""); } +private: // Values are R/W by both UI and CPU threads. mutable std::atomic m_value = {}; From 9c5605a59cf16aabd592a21cbee59c2bee227df4 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 15 Apr 2024 17:05:04 -0700 Subject: [PATCH 193/223] AudioCommon: When ALSA is absent on Linux, default to Cubeb backend Default to Cubeb instead of the NULL backend on Linux when ALSA isn't valid. --- Source/Core/AudioCommon/AudioCommon.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index b212859e2940..d9fee4ef72c3 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -100,6 +100,8 @@ std::string GetDefaultSoundBackend() #elif defined __linux__ if (AlsaSound::IsValid()) backend = BACKEND_ALSA; + else + backend = BACKEND_CUBEB; #elif defined(__APPLE__) || defined(_WIN32) || defined(__OpenBSD__) backend = BACKEND_CUBEB; #endif From 859ac40ca2b5856d2291b256c2487507de81f959 Mon Sep 17 00:00:00 2001 From: Jonas Kalsvik Date: Thu, 18 Apr 2024 12:08:45 +0200 Subject: [PATCH 194/223] DolphinTool: Add an image extract command --- .gitignore | 2 + Readme.md | 21 +- Source/Core/DolphinTool/CMakeLists.txt | 2 + Source/Core/DolphinTool/DolphinTool.filters | 2 + Source/Core/DolphinTool/DolphinTool.vcxproj | 2 + Source/Core/DolphinTool/ExtractCommand.cpp | 361 ++++++++++++++++++++ Source/Core/DolphinTool/ExtractCommand.h | 12 + Source/Core/DolphinTool/ToolMain.cpp | 7 +- 8 files changed, 405 insertions(+), 4 deletions(-) create mode 100644 Source/Core/DolphinTool/ExtractCommand.cpp create mode 100644 Source/Core/DolphinTool/ExtractCommand.h diff --git a/.gitignore b/.gitignore index cebabd2c39e0..8e58ace16a62 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ Thumbs.db Externals/mGBA/version.c Source/Core/Common/scmrev.h # Ignore files output by build +/cmake-build-debug +/cmake-build-release /[Bb]uild*/ /[Bb]inary*/ /obj/ diff --git a/Readme.md b/Readme.md index 7fecf65cfd9d..3c9dc84730c3 100644 --- a/Readme.md +++ b/Readme.md @@ -193,7 +193,7 @@ is intended for debugging purposes only. ``` usage: dolphin-tool COMMAND -h -commands supported: [convert, verify, header] +commands supported: [convert, verify, header, extract] ``` ``` @@ -252,3 +252,22 @@ then exit. Optional. Print the level of compression for WIA/RVZ formats, then exit. ``` + +``` +Usage: extract [options]... + +Options: + -h, --help show this help message and exit + -i FILE, --input=FILE + Path to disc image FILE. + -o FOLDER, --output=FOLDER + Path to the destination FOLDER. + -p PARTITION, --partition=PARTITION + Which specific partition you want to extract. + -s SINGLE, --single=SINGLE + Which specific file/directory you want to extract. + -l, --list List all files in volume/partition. Will print the + directory/file specified with --single if defined. + -q, --quiet Mute all messages except for errors. + -g, --gameonly Only extracts the DATA partition. +``` diff --git a/Source/Core/DolphinTool/CMakeLists.txt b/Source/Core/DolphinTool/CMakeLists.txt index e2c8c8cdd1b9..e907fb9bbdd0 100644 --- a/Source/Core/DolphinTool/CMakeLists.txt +++ b/Source/Core/DolphinTool/CMakeLists.txt @@ -1,5 +1,7 @@ add_executable(dolphin-tool ToolHeadlessPlatform.cpp + ExtractCommand.cpp + ExtractCommand.h ConvertCommand.cpp ConvertCommand.h VerifyCommand.cpp diff --git a/Source/Core/DolphinTool/DolphinTool.filters b/Source/Core/DolphinTool/DolphinTool.filters index caa654146d2b..0ee07add9f01 100644 --- a/Source/Core/DolphinTool/DolphinTool.filters +++ b/Source/Core/DolphinTool/DolphinTool.filters @@ -4,10 +4,12 @@ + + diff --git a/Source/Core/DolphinTool/DolphinTool.vcxproj b/Source/Core/DolphinTool/DolphinTool.vcxproj index 9fcfd32020f5..8bfc2ee295f1 100644 --- a/Source/Core/DolphinTool/DolphinTool.vcxproj +++ b/Source/Core/DolphinTool/DolphinTool.vcxproj @@ -30,6 +30,7 @@ + @@ -52,6 +53,7 @@ + diff --git a/Source/Core/DolphinTool/ExtractCommand.cpp b/Source/Core/DolphinTool/ExtractCommand.cpp new file mode 100644 index 000000000000..1d9d24b8d4b9 --- /dev/null +++ b/Source/Core/DolphinTool/ExtractCommand.cpp @@ -0,0 +1,361 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "DolphinTool/ExtractCommand.h" + +#include +#include +#include + +#include +#include + +#include + +#include "Common/FileUtil.h" + +#include "DiscIO/DiscExtractor.h" +#include "DiscIO/DiscUtils.h" +#include "DiscIO/Filesystem.h" +#include "DiscIO/Volume.h" + +namespace DolphinTool +{ +static void ExtractFile(const DiscIO::Volume& disc_volume, const DiscIO::Partition& partition, + const std::string& path, const std::string& out) +{ + const DiscIO::FileSystem* filesystem = disc_volume.GetFileSystem(partition); + if (!filesystem) + return; + + ExportFile(disc_volume, partition, filesystem->FindFileInfo(path).get(), out); +} + +static std::unique_ptr GetFileInfo(const DiscIO::Volume& disc_volume, + const DiscIO::Partition& partition, + const std::string& path) +{ + const DiscIO::FileSystem* filesystem = disc_volume.GetFileSystem(partition); + if (!filesystem) + return nullptr; + + std::unique_ptr info = filesystem->FindFileInfo(path); + return info; +} + +static bool VolumeSupported(const DiscIO::Volume& disc_volume) +{ + switch (disc_volume.GetVolumeType()) + { + case DiscIO::Platform::WiiWAD: + fmt::println(std::cerr, "Error: Wii WADs are not supported."); + return false; + case DiscIO::Platform::ELFOrDOL: + fmt::println(std::cerr, + "Error: *.elf or *.dol have no filesystem and are therefore not supported."); + return false; + case DiscIO::Platform::WiiDisc: + case DiscIO::Platform::GameCubeDisc: + return true; + default: + fmt::println(std::cerr, "Error: Unknown volume type."); + return false; + } +} + +static void ExtractDirectory(const DiscIO::Volume& disc_volume, const DiscIO::Partition& partition, + const std::string& path, const std::string& out, bool quiet) +{ + const DiscIO::FileSystem* filesystem = disc_volume.GetFileSystem(partition); + if (!filesystem) + return; + + const std::unique_ptr info = filesystem->FindFileInfo(path); + u32 size = info->GetTotalChildren(); + u32 files = 0; + ExportDirectory( + disc_volume, partition, *info, true, "", out, + [&files, &size, &quiet](const std::string& current) { + files++; + const float progress = static_cast(files) / static_cast(size) * 100; + if (!quiet) + fmt::println(std::cerr, "Extracting: {} | {}%", current, static_cast(progress)); + return false; + }); +} + +static bool ExtractSystemData(const DiscIO::Volume& disc_volume, const DiscIO::Partition& partition, + const std::string& out) +{ + return ExportSystemData(disc_volume, partition, out); +} + +static void ExtractPartition(const DiscIO::Volume& disc_volume, const DiscIO::Partition& partition, + const std::string& out, bool quiet) +{ + ExtractDirectory(disc_volume, partition, "", out + "/files", quiet); + ExtractSystemData(disc_volume, partition, out); +} + +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) +{ + const DiscIO::FileSystem* filesystem = disc_volume.GetFileSystem(partition); + const std::unique_ptr info = filesystem->FindFileInfo(path); + + if (!info) + { + if (!partition_name.empty()) + { + fmt::println(std::cerr, "Warning: {} does not exist in this partition.", path); + } + 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); + } + return true; +} + +static bool ListVolume(const DiscIO::Volume& disc_volume, const std::string& path, + const std::string& specific_partition_name, bool quiet, + std::string* result_text) +{ + if (disc_volume.GetPartitions().empty()) + { + return ListPartition(disc_volume, DiscIO::PARTITION_NONE, specific_partition_name, path, + result_text); + } + + bool success = false; + for (DiscIO::Partition& p : disc_volume.GetPartitions()) + { + const std::optional partition_type = disc_volume.GetPartitionType(p); + if (!partition_type) + { + fmt::println(std::cerr, "Error: Could not get partition type."); + return false; + } + const std::string partition_name = DiscIO::NameForPartitionType(*partition_type, true); + + if (!specific_partition_name.empty() && + !Common::CaseInsensitiveEquals(partition_name, specific_partition_name)) + { + continue; + } + + const std::string partition_start = + fmt::format("/// PARTITION: {} <{}> ///\n", partition_name, path); + fmt::print(std::cout, "{}", partition_start); + result_text->append(partition_start); + + success |= ListPartition(disc_volume, p, specific_partition_name, path, result_text); + } + + return success; +} + +static bool HandleExtractPartition(const std::string& output, const std::string& single_file_path, + const std::string& partition_name, DiscIO::Volume& disc_volume, + const DiscIO::Partition& partition, bool quiet, bool single) +{ + std::string file; + file.append(output).append("/"); + file.append(partition_name).append("/"); + if (!single) + { + ExtractPartition(disc_volume, partition, file, quiet); + return true; + } + + if (auto file_info = GetFileInfo(disc_volume, partition, single_file_path); file_info != nullptr) + { + file.append("files/").append(single_file_path); + File::CreateFullPath(file); + if (file_info->IsDirectory()) + { + file = PathToString(StringToPath(file).remove_filename()); + ExtractDirectory(disc_volume, partition, single_file_path, file, quiet); + } + else + { + ExtractFile(disc_volume, partition, single_file_path, file); + } + + return true; + } + return false; +} + +int Extract(const std::vector& args) +{ + optparse::OptionParser parser; + + parser.usage("usage: extract [options]..."); + + parser.add_option("-i", "--input") + .type("string") + .action("store") + .help("Path to disc image FILE.") + .metavar("FILE"); + parser.add_option("-o", "--output") + .type("string") + .action("store") + .help("Path to the destination FOLDER.") + .metavar("FOLDER"); + parser.add_option("-p", "--partition") + .type("string") + .action("store") + .help("Which specific partition you want to extract."); + parser.add_option("-s", "--single") + .type("string") + .action("store") + .help("Which specific file/directory you want to extract."); + parser.add_option("-l", "--list") + .action("store_true") + .help("List all files in volume/partition. Will print the directory/file specified with " + "--single if defined."); + parser.add_option("-q", "--quiet") + .action("store_true") + .help("Mute all messages except for errors."); + parser.add_option("-g", "--gameonly") + .action("store_true") + .help("Only extracts the DATA partition."); + + const optparse::Values& options = parser.parse_args(args); + + const bool quiet = options.is_set("quiet"); + const bool gameonly = options.is_set("gameonly"); + + if (!options.is_set("input")) + { + fmt::println(std::cerr, "Error: No input image set"); + return EXIT_FAILURE; + } + const std::string& input_file_path = options["input"]; + + const std::string& output_folder_path = options["output"]; + + if (!options.is_set("output") && !options.is_set("list")) + { + fmt::println(std::cerr, "Error: No output folder set"); + return EXIT_FAILURE; + } + + const std::string& single_file_path = options["single"]; + std::string specific_partition = options["partition"]; + + if (options.is_set("output") && !options.is_set("list")) + File::CreateDirs(output_folder_path); + + if (gameonly) + specific_partition = std::string("data"); + + if (const std::unique_ptr blob_reader = + DiscIO::CreateBlobReader(input_file_path); + !blob_reader) + { + fmt::println(std::cerr, "Error: Unable to open disc image"); + return EXIT_FAILURE; + } + + const std::unique_ptr disc_volume = DiscIO::CreateVolume(input_file_path); + + if (!disc_volume) + { + fmt::println(std::cerr, "Error: Unable to open volume"); + return EXIT_FAILURE; + } + + if (!VolumeSupported(*disc_volume)) + return EXIT_FAILURE; + + if (options.is_set("list")) + { + std::string list_path = options.is_set("single") ? single_file_path : "/"; + if (quiet && !options.is_set("output")) + { + fmt::println(std::cerr, "Error: --quiet is set but no output file provided. Please either " + "remove the --quiet flag or specify --output"); + return EXIT_FAILURE; + } + + std::string text; + if (!ListVolume(*disc_volume, list_path, specific_partition, quiet, &text)) + { + fmt::println(std::cerr, "Error: Found nothing to list"); + return EXIT_FAILURE; + } + + if (options.is_set("output")) + { + File::CreateFullPath(output_folder_path); + std::ofstream output_file; + output_file.open(output_folder_path); + if (!output_file.is_open()) + { + fmt::println(std::cerr, "Error: Unable to open output file"); + return EXIT_FAILURE; + } + output_file << text; + } + + return EXIT_SUCCESS; + } + + bool extracted_one = false; + + if (disc_volume->GetPartitions().empty()) + { + if (options.is_set("partition")) + { + fmt::println( + std::cerr, + "Warning: --partition has a value even though this image doesn't have any partitions."); + } + + extracted_one = HandleExtractPartition(output_folder_path, single_file_path, "", *disc_volume, + DiscIO::PARTITION_NONE, quiet, options.is_set("single")); + } + else + { + for (DiscIO::Partition& p : disc_volume->GetPartitions()) + { + if (const std::optional partition_type = disc_volume->GetPartitionType(p)) + { + const std::string partition_name = DiscIO::NameForPartitionType(*partition_type, true); + + if (!specific_partition.empty() && + !Common::CaseInsensitiveEquals(specific_partition, partition_name)) + { + continue; + } + + extracted_one |= + HandleExtractPartition(output_folder_path, single_file_path, partition_name, + *disc_volume, p, quiet, options.is_set("single")); + } + } + } + + if (!extracted_one) + { + if (options.is_set("single")) + fmt::print(std::cerr, "Error: No file/folder was extracted."); + else + fmt::print(std::cerr, "Error: No partitions were extracted."); + if (options.is_set("partition")) + fmt::println(std::cerr, " Maybe you misspelled your specified partition?"); + fmt::println(std::cerr, "\n"); + return EXIT_FAILURE; + } + + fmt::println(std::cerr, "Finished Successfully!"); + return EXIT_SUCCESS; +} +} // namespace DolphinTool diff --git a/Source/Core/DolphinTool/ExtractCommand.h b/Source/Core/DolphinTool/ExtractCommand.h new file mode 100644 index 000000000000..c69ffdf386c4 --- /dev/null +++ b/Source/Core/DolphinTool/ExtractCommand.h @@ -0,0 +1,12 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +namespace DolphinTool +{ +int Extract(const std::vector& args); +} // namespace DolphinTool diff --git a/Source/Core/DolphinTool/ToolMain.cpp b/Source/Core/DolphinTool/ToolMain.cpp index 63bfdb63426c..224ead3d7b22 100644 --- a/Source/Core/DolphinTool/ToolMain.cpp +++ b/Source/Core/DolphinTool/ToolMain.cpp @@ -3,7 +3,6 @@ #include #include -#include #include #include #include @@ -13,10 +12,10 @@ #include #include "Common/StringUtil.h" -#include "Common/Version.h" #include "Core/Core.h" #include "DolphinTool/ConvertCommand.h" +#include "DolphinTool/ExtractCommand.h" #include "DolphinTool/HeaderCommand.h" #include "DolphinTool/VerifyCommand.h" @@ -24,7 +23,7 @@ static void PrintUsage() { fmt::print(std::cerr, "usage: dolphin-tool COMMAND -h\n" "\n" - "commands supported: [convert, verify, header]\n"); + "commands supported: [convert, verify, header, extract]\n"); } #ifdef _WIN32 @@ -51,6 +50,8 @@ int main(int argc, char* argv[]) return DolphinTool::VerifyCommand(args); else if (command_str == "header") return DolphinTool::HeaderCommand(args); + else if (command_str == "extract") + return DolphinTool::Extract(args); PrintUsage(); return EXIT_FAILURE; } From 1e27183dff95ece6301b7171d2cd573a36a2dd65 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Tue, 5 Sep 2023 15:34:43 -0500 Subject: [PATCH 195/223] VideoCommon: Show the average projection to viewport ratio in statistics window. --- Source/Core/VideoCommon/Statistics.cpp | 3 +++ Source/Core/VideoCommon/Statistics.h | 4 ++++ Source/Core/VideoCommon/VertexManagerBase.cpp | 10 ++++++++-- Source/Core/VideoCommon/VertexManagerBase.h | 2 ++ Source/Core/VideoCommon/Widescreen.cpp | 4 ++++ 5 files changed, 21 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/Statistics.cpp b/Source/Core/VideoCommon/Statistics.cpp index aea3b0e957cf..6e6dedfc624b 100644 --- a/Source/Core/VideoCommon/Statistics.cpp +++ b/Source/Core/VideoCommon/Statistics.cpp @@ -147,6 +147,9 @@ void Statistics::DisplayProj() const ImGui::Text("Projection 13: %f (%f)", gproj[13], g2proj[13]); ImGui::Text("Projection 14: %f (%f)", gproj[14], g2proj[14]); ImGui::Text("Projection 15: %f (%f)", gproj[15], g2proj[15]); + ImGui::NewLine(); + ImGui::Text("Avg Projection Viewport Ratio Persp(3D): %f", avg_persp_proj_viewport_ratio); + ImGui::Text("Avg Projection Viewport Ratio Ortho(2D): %f", avg_ortho_proj_viewport_ratio); ImGui::End(); } diff --git a/Source/Core/VideoCommon/Statistics.h b/Source/Core/VideoCommon/Statistics.h index dac0404f1a34..7d4b367eade8 100644 --- a/Source/Core/VideoCommon/Statistics.h +++ b/Source/Core/VideoCommon/Statistics.h @@ -25,6 +25,10 @@ struct Statistics std::array gproj{}; std::array g2proj{}; + // For widescreen heuristic. + float avg_persp_proj_viewport_ratio = 0; + float avg_ortho_proj_viewport_ratio = 0; + std::vector scissors{}; size_t current_scissor = 0; // 0 => all, otherwise index + 1 int scissor_scale = 10; diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index 94d609c23f8d..b51cfa19e00e 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -520,15 +520,21 @@ void VertexManagerBase::Flush() auto& counts = is_perspective ? m_flush_statistics.perspective : m_flush_statistics.orthographic; + const auto& projection = xfmem.projection.rawProjection; // TODO: Potentially the viewport size could be used as weight for the flush count average. // This way a small minimap would have less effect than a fullscreen projection. + const auto& viewport = xfmem.viewport; - if (IsAnamorphicProjection(xfmem.projection.rawProjection, xfmem.viewport, g_ActiveConfig)) + // FYI: This average is based on flushes. + // It doesn't look at vertex counts like the heuristic does. + counts.average_ratio.Push(CalculateProjectionViewportRatio(projection, viewport)); + + if (IsAnamorphicProjection(projection, viewport, g_ActiveConfig)) { ++counts.anamorphic_flush_count; counts.anamorphic_vertex_count += m_index_generator.GetIndexLen(); } - else if (IsNormalProjection(xfmem.projection.rawProjection, xfmem.viewport, g_ActiveConfig)) + else if (IsNormalProjection(projection, viewport, g_ActiveConfig)) { ++counts.normal_flush_count; counts.normal_vertex_count += m_index_generator.GetIndexLen(); diff --git a/Source/Core/VideoCommon/VertexManagerBase.h b/Source/Core/VideoCommon/VertexManagerBase.h index c1248972da8b..af0f694a01e0 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.h +++ b/Source/Core/VideoCommon/VertexManagerBase.h @@ -79,6 +79,8 @@ class VertexManagerBase { return normal_vertex_count + anamorphic_vertex_count + other_vertex_count; } + + MathUtil::RunningMean average_ratio; }; ProjectionCounts perspective; diff --git a/Source/Core/VideoCommon/Widescreen.cpp b/Source/Core/VideoCommon/Widescreen.cpp index d35ba758ec2c..cfb10ad479b7 100644 --- a/Source/Core/VideoCommon/Widescreen.cpp +++ b/Source/Core/VideoCommon/Widescreen.cpp @@ -8,6 +8,7 @@ #include "Core/Config/SYSCONFSettings.h" #include "Core/System.h" +#include "VideoCommon/Statistics.h" #include "VideoCommon/VertexManagerBase.h" std::unique_ptr g_widescreen; @@ -117,6 +118,9 @@ void WidescreenManager::UpdateWidescreenHeuristic() const auto& persp = flush_statistics.perspective; const auto& ortho = flush_statistics.orthographic; + g_stats.avg_persp_proj_viewport_ratio = persp.average_ratio.Mean(); + g_stats.avg_ortho_proj_viewport_ratio = ortho.average_ratio.Mean(); + const auto ortho_looks_anamorphic = looks_anamorphic(ortho); const auto persp_looks_normal = looks_normal(persp); From df7dd5d36a4e817c1c555a869a2752d61f4318e6 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 9 Sep 2023 13:33:43 -0500 Subject: [PATCH 196/223] Config: Expose GFX_OVERLAY_PROJ_STATS setting in UI. --- Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp | 9 ++++++++- Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.h | 1 + Source/Core/VideoCommon/Statistics.cpp | 1 - 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp index bad83a694758..0d936140214f 100644 --- a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp @@ -86,6 +86,8 @@ void AdvancedWidget::CreateWidgets() m_enable_wireframe = new ConfigBool(tr("Enable Wireframe"), Config::GFX_ENABLE_WIREFRAME); m_show_statistics = new ConfigBool(tr("Show Statistics"), Config::GFX_OVERLAY_STATS); + m_show_proj_statistics = + new ConfigBool(tr("Show Projection Statistics"), Config::GFX_OVERLAY_PROJ_STATS); m_enable_format_overlay = new ConfigBool(tr("Texture Format Overlay"), Config::GFX_TEXFMT_OVERLAY_ENABLE); m_enable_api_validation = @@ -94,7 +96,8 @@ void AdvancedWidget::CreateWidgets() debugging_layout->addWidget(m_enable_wireframe, 0, 0); debugging_layout->addWidget(m_show_statistics, 0, 1); debugging_layout->addWidget(m_enable_format_overlay, 1, 0); - debugging_layout->addWidget(m_enable_api_validation, 1, 1); + debugging_layout->addWidget(m_show_proj_statistics, 1, 1); + debugging_layout->addWidget(m_enable_api_validation, 2, 0); // Utility auto* utility_box = new QGroupBox(tr("Utility")); @@ -299,6 +302,9 @@ void AdvancedWidget::AddDescriptions() static const char TR_SHOW_STATS_DESCRIPTION[] = QT_TR_NOOP("Shows various rendering statistics.

If unsure, " "leave this unchecked."); + static const char TR_SHOW_PROJ_STATS_DESCRIPTION[] = + QT_TR_NOOP("Shows various projection statistics.

If unsure, " + "leave this unchecked."); static const char TR_TEXTURE_FORMAT_DESCRIPTION[] = QT_TR_NOOP("Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -436,6 +442,7 @@ void AdvancedWidget::AddDescriptions() m_enable_wireframe->SetDescription(tr(TR_WIREFRAME_DESCRIPTION)); m_show_statistics->SetDescription(tr(TR_SHOW_STATS_DESCRIPTION)); + m_show_proj_statistics->SetDescription(tr(TR_SHOW_PROJ_STATS_DESCRIPTION)); m_enable_format_overlay->SetDescription(tr(TR_TEXTURE_FORMAT_DESCRIPTION)); m_enable_api_validation->SetDescription(tr(TR_VALIDATION_LAYER_DESCRIPTION)); m_perf_samp_window->SetDescription(tr(TR_PERF_SAMP_WINDOW_DESCRIPTION)); diff --git a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.h b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.h index 6cd0e18fdb67..da7504955ccb 100644 --- a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.h +++ b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.h @@ -33,6 +33,7 @@ class AdvancedWidget final : public QWidget // Debugging ConfigBool* m_enable_wireframe; ConfigBool* m_show_statistics; + ConfigBool* m_show_proj_statistics; ConfigBool* m_enable_format_overlay; ConfigBool* m_enable_api_validation; ConfigBool* m_show_fps; diff --git a/Source/Core/VideoCommon/Statistics.cpp b/Source/Core/VideoCommon/Statistics.cpp index 6e6dedfc624b..378bffcd2a42 100644 --- a/Source/Core/VideoCommon/Statistics.cpp +++ b/Source/Core/VideoCommon/Statistics.cpp @@ -120,7 +120,6 @@ void Statistics::Display() const ImGui::End(); } -// Is this really needed? void Statistics::DisplayProj() const { if (!ImGui::Begin("Projection Statistics", nullptr, ImGuiWindowFlags_NoNavInputs)) From 65ff0146b924a8bafa85e864ab41d1ce89bbb393 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 19 Apr 2024 04:08:34 -0700 Subject: [PATCH 197/223] Change JitState::downcountAmount to u32 --- Source/Core/Core/PatchEngine.cpp | 6 +++--- Source/Core/Core/PatchEngine.h | 2 +- Source/Core/Core/PowerPC/JitCommon/JitBase.h | 2 +- Source/Core/Core/PowerPC/JitCommon/JitCache.cpp | 2 +- Source/Core/Core/PowerPC/JitCommon/JitCache.h | 2 +- Source/Core/Core/PowerPC/PPCAnalyst.h | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index b1477aa8e5ce..fd26595eb822 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -48,7 +48,7 @@ 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; +static std::map s_speed_hacks; const char* PatchTypeAsString(PatchType type) { @@ -192,13 +192,13 @@ static void LoadSpeedhacks(const std::string& section, Common::IniFile& ini) success &= TryParse(value, &cycles); if (success) { - s_speed_hacks[address] = static_cast(cycles); + s_speed_hacks[address] = cycles; } } } } -int GetSpeedhackCycles(const u32 addr) +u32 GetSpeedhackCycles(const u32 addr) { const auto iter = s_speed_hacks.find(addr); if (iter == s_speed_hacks.end()) diff --git a/Source/Core/Core/PatchEngine.h b/Source/Core/Core/PatchEngine.h index 95c379957a20..128eda26c915 100644 --- a/Source/Core/Core/PatchEngine.h +++ b/Source/Core/Core/PatchEngine.h @@ -49,7 +49,7 @@ struct Patch const char* PatchTypeAsString(PatchType type); -int GetSpeedhackCycles(const u32 addr); +u32 GetSpeedhackCycles(const u32 addr); std::optional DeserializeLine(std::string line); std::string SerializeLine(const PatchEntry& entry); diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.h b/Source/Core/Core/PowerPC/JitCommon/JitBase.h index cf0ce78dbc6c..273751cf3736 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.h @@ -93,7 +93,7 @@ class JitBase : public CPUCoreBase u32 blockStart; int instructionNumber; int instructionsLeft; - int downcountAmount; + u32 downcountAmount; u32 numLoadStoreInst; u32 numFloatingPointInst; // If this is set, we need to generate an exception handler for the fastmem load. diff --git a/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp b/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp index 8029d06c2d36..890e9975a4ab 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp @@ -38,7 +38,7 @@ void JitBlock::ProfileData::BeginProfiling(ProfileData* data) data->time_start = Clock::now(); } -void JitBlock::ProfileData::EndProfiling(ProfileData* data, int downcount_amount) +void JitBlock::ProfileData::EndProfiling(ProfileData* data, u32 downcount_amount) { data->cycles_spent += downcount_amount; data->time_spent += Clock::now() - data->time_start; diff --git a/Source/Core/Core/PowerPC/JitCommon/JitCache.h b/Source/Core/Core/PowerPC/JitCommon/JitCache.h index d44cc097d3eb..15e8c99e433d 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitCache.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitCache.h @@ -71,7 +71,7 @@ struct JitBlock : public JitBlockData using Clock = std::chrono::steady_clock; static void BeginProfiling(ProfileData* data); - static void EndProfiling(ProfileData* data, int downcount_amount); + static void EndProfiling(ProfileData* data, u32 downcount_amount); std::size_t run_count = 0; u64 cycles_spent = 0; diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.h b/Source/Core/Core/PowerPC/PPCAnalyst.h index 1bd25ae47619..4e665d8d4277 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.h +++ b/Source/Core/Core/PowerPC/PPCAnalyst.h @@ -88,7 +88,7 @@ struct CodeOp // 16B struct BlockStats { - int numCycles; + u32 numCycles; }; struct BlockRegStats From 932645f2453472ed8a89702b641299c2817e52da Mon Sep 17 00:00:00 2001 From: Nicolas van Kempen Date: Fri, 19 Apr 2024 14:24:34 -0400 Subject: [PATCH 198/223] Apply modernize-use-starts-ends-with --- Source/Core/Core/IOS/ES/ES.cpp | 6 +++--- Source/Core/Core/IOS/FS/HostBackend/FS.cpp | 2 +- Source/Core/Core/IOS/IOS.cpp | 6 +++--- Source/Core/UICommon/ResourcePack/ResourcePack.cpp | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 810353a893a9..216821cfbdaa 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -1017,11 +1017,11 @@ bool ESCore::IsIssuerCorrect(VerifyContainerType type, const ES::CertReader& iss switch (type) { case VerifyContainerType::TMD: - return issuer_cert.GetName().compare(0, 2, "CP") == 0; + return issuer_cert.GetName().starts_with("CP"); case VerifyContainerType::Ticket: - return issuer_cert.GetName().compare(0, 2, "XS") == 0; + return issuer_cert.GetName().starts_with("XS"); case VerifyContainerType::Device: - return issuer_cert.GetName().compare(0, 2, "MS") == 0; + return issuer_cert.GetName().starts_with("MS"); default: return false; } diff --git a/Source/Core/Core/IOS/FS/HostBackend/FS.cpp b/Source/Core/Core/IOS/FS/HostBackend/FS.cpp index 699e333db165..8ef5af6f7145 100644 --- a/Source/Core/Core/IOS/FS/HostBackend/FS.cpp +++ b/Source/Core/Core/IOS/FS/HostBackend/FS.cpp @@ -43,7 +43,7 @@ HostFileSystem::HostFilename HostFileSystem::BuildFilename(const std::string& wi } } - if (wii_path.compare(0, 1, "/") == 0) + if (wii_path.starts_with("/")) return HostFilename{m_root_path + Common::EscapePath(wii_path), false}; ASSERT_MSG(IOS_FS, false, "Invalid Wii path '{}' given to BuildFilename()", wii_path); diff --git a/Source/Core/Core/IOS/IOS.cpp b/Source/Core/Core/IOS/IOS.cpp index 2f96cc99bba0..b2a0a25b05c2 100644 --- a/Source/Core/Core/IOS/IOS.cpp +++ b/Source/Core/Core/IOS/IOS.cpp @@ -673,16 +673,16 @@ std::optional EmulationKernel::OpenDevice(OpenRequest& request) request.fd = new_fd; std::shared_ptr device; - if (request.path.find("/dev/usb/oh0/") == 0 && !GetDeviceByName(request.path) && + if (request.path.starts_with("/dev/usb/oh0/") && !GetDeviceByName(request.path) && !HasFeature(GetVersion(), Feature::NewUSB)) { device = std::make_shared(*this, request.path); } - else if (request.path.find("/dev/") == 0) + else if (request.path.starts_with("/dev/")) { device = GetDeviceByName(request.path); } - else if (request.path.find('/') == 0) + else if (request.path.starts_with('/')) { device = GetDeviceByName("/dev/fs"); } diff --git a/Source/Core/UICommon/ResourcePack/ResourcePack.cpp b/Source/Core/UICommon/ResourcePack/ResourcePack.cpp index 7f670e774828..223c33e0ea9b 100644 --- a/Source/Core/UICommon/ResourcePack/ResourcePack.cpp +++ b/Source/Core/UICommon/ResourcePack/ResourcePack.cpp @@ -88,7 +88,7 @@ ResourcePack::ResourcePack(const std::string& path) : m_path(path) unzGetCurrentFileInfo64(file, &texture_info, filename.data(), static_cast(filename.size()), nullptr, 0, nullptr, 0); - if (filename.compare(0, 9, "textures/") != 0 || texture_info.uncompressed_size == 0) + if (!filename.starts_with("textures/") || texture_info.uncompressed_size == 0) continue; // If a texture is compressed and the manifest doesn't state that, abort. From 93b29cb8b2fd76cfbf8d87541b37397f7bf1f9fe Mon Sep 17 00:00:00 2001 From: Pablo Stebler Date: Fri, 19 Apr 2024 21:56:12 +0200 Subject: [PATCH 199/223] HIDv4: Fix racy device change behavior This prevents the device changes happening between 2 GETDEVICECHANGE calls from being missed by the application. Same as 7e7b0971ab014467ce6c2fccdd29bc9070eb333c. --- Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp | 12 ++++++++---- Source/Core/Core/IOS/USB/USB_HID/HIDv4.h | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp index 1118599c4d70..288c4490fcc1 100644 --- a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp +++ b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp @@ -94,11 +94,12 @@ std::optional USB_HIDv4::GetDeviceChange(const IOCtlRequest& request) return IPCReply(IPC_EINVAL); m_devicechange_hook_request = std::make_unique(GetSystem(), request.address); - // On the first call, the reply is sent immediately (instead of on device insertion/removal) - if (m_devicechange_first_call) + // If there are pending changes, the reply is sent immediately (instead of on device + // insertion/removal). + if (m_has_pending_changes) { TriggerDeviceChangeReply(); - m_devicechange_first_call = false; + m_has_pending_changes = false; } return std::nullopt; } @@ -138,7 +139,7 @@ s32 USB_HIDv4::SubmitTransfer(USB::Device& device, const IOCtlRequest& request) void USB_HIDv4::DoState(PointerWrap& p) { - p.Do(m_devicechange_first_call); + p.Do(m_has_pending_changes); u32 hook_address = m_devicechange_hook_request ? m_devicechange_hook_request->address : 0; p.Do(hook_address); if (hook_address != 0) @@ -199,7 +200,10 @@ bool USB_HIDv4::ShouldAddDevice(const USB::Device& device) const void USB_HIDv4::TriggerDeviceChangeReply() { if (!m_devicechange_hook_request) + { + m_has_pending_changes = true; return; + } auto& system = GetSystem(); auto& memory = system.GetMemory(); diff --git a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h index 3fdd02fbab98..44c8213ae062 100644 --- a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h +++ b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h @@ -44,7 +44,7 @@ class USB_HIDv4 final : public USBHost static constexpr u32 VERSION = 0x40001; static constexpr u8 HID_CLASS = 0x03; - bool m_devicechange_first_call = true; + bool m_has_pending_changes = true; std::mutex m_devicechange_hook_address_mutex; std::unique_ptr m_devicechange_hook_request; From 8ed41e7264f6b00576344d27cc3e1e61db728f0b Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 20 Apr 2024 12:02:05 +0100 Subject: [PATCH 200/223] TAPServerConnection: drop unused enum class ReadState This also fixes a -Wshadow warning because there is a function-local equivalent in ReadThreadHandler(). --- Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h index 42c2020ffa44..dbb8c6ee7a5e 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.h @@ -31,14 +31,6 @@ class TAPServerConnection bool SendFrame(const u8* frame, u32 size); private: - enum class ReadState - { - Size, - SizeHigh, - Data, - Skip, - }; - const std::string m_destination; const RecvCallback m_recv_cb; const std::size_t m_max_frame_size; From f32d9427a10e424dfadfe008d887a2d5be9b2f83 Mon Sep 17 00:00:00 2001 From: nassau-tk Date: Sat, 20 Apr 2024 20:54:28 +0900 Subject: [PATCH 201/223] Fix wiitdb-ja.txt --- Data/Sys/wiitdb-ja.txt | 1813 ++++++++++++++++++++++++++-------------- 1 file changed, 1195 insertions(+), 618 deletions(-) diff --git a/Data/Sys/wiitdb-ja.txt b/Data/Sys/wiitdb-ja.txt index e5458b55e3a9..bd15a17d317e 100644 --- a/Data/Sys/wiitdb-ja.txt +++ b/Data/Sys/wiitdb-ja.txt @@ -1,10 +1,14 @@ -TITLES = https://www.gametdb.com (type: Wii language: JA_unique version: 20230727194203) -D2AJAF = みんなで冒険!ファミリートレーナー 体験版 -DCHJAF = WE CHEER: おはスタプロデュース! 限定コラボゲームディスク +TITLES = https://www.gametdb.com (type: Wii language: JA_unique version: 20240420135206) +D2AJAF = みんなで冒険!ファミリートレーナー 体験版 +DCHJAF = WE CHEER: おはスタプロデュース!限定コラボゲームディスク DHHJ8J = 平野綾 Premiumムービーディスク from 涼宮ハルヒの激動 DK6J18 = コロリンパ2 -アンソニーと黃金のひまわりのタネ- -DQAJK2 = アクエリアスベースボール 〜限界の、その先へ〜 +DMHJ08 = モンスターハンター 3 -tri- (Demo) +DQAJK2 = アクエリアスベースボール 〜限界の、その先へ〜 DSRJ8P = ソニックと秘密のリング (Demo) +DTOJ8P = 428 ~封鎖された渋谷で~ 体験版 +DTZJ08 = 宝島Z バルバロスの秘宝 (Demo) +DWEJA4 = ウイニングイレブン プレーメーカー 2008 (Demo) R22J01 = たたいて弾む スーパースマッシュボール・プラス R24J01 = Wiiであそぶ ちびロボ! R2DJEP = ドカポンキングダム for Wii @@ -12,26 +16,26 @@ R2EJ99 = フィッシュアイズWii R2GJAF = FRAGILE 〜さよなら月の廃墟〜 R2JJAF = 太鼓の達人Wii R2LJMS = Hula Wii フラで始める 美と健康!! -R2PJ9B = スイングゴルフ パンヤ 2ndショット! -R2QJC0 = クッキングママ2 たいへん!ママは おおいそがし!! -R2SJ18 = Deca Sporta 2: Wiiでスポーツ"10"種目! +R2PJ9B = スイングゴルフ パンヤ 2ndショット! +R2QJC0 = クッキングママ 2 たいへん!!ママはおおいそがし! +R2SJ18 = DECA SPORTA 2 Wiiでスポーツ”10”種目! R2UJ8P = レッツタップ R2VJ01 = 罪と罰 宇宙の後継者 R2WJA4 = ウイニングイレブン プレーメーカー 2009 R32J01 = Wiiであそぶ メトロイドプライム2 ダークエコーズ -R35JC8 = 三國志 11 With パワーアップキット +R35JC8 = 三國志11 With パワーアップキット R3BJ8P = サンバDEアミーゴ -R3FJA4 = 実況パワフルメジャーリーグ3 +R3FJA4 = 実況パワフルメジャーリーグ 3 R3IJ01 = Wiiであそぶ メトロイドプライム R3ME01 = メトロイドプライム トリロジー R3OJ01 = メトロイド アザーエム R3PJ52 = スピード・レーサー -R3TJG9 = トップスピン3 +R3TJG9 = トップスピン 3 R3UJGD = おやこであそぼ ミッフィーのおもちゃばこ R43J13 = EA Sports アクティブ パーソナルトレーナー: Wii30日生活改善プログラム R44J8P = 涼宮ハルヒの並列 R46JKB = ファントム・ブレイブWii -R49J01 = Wiiであそぶ ドンキーコングジャングルビート +R49J01 = Wiiであそぶ ドンキーコング ジャングルビート R4AJ13 = シムアニマル R4CJ13 = シムシティ クリエイター R4EJ01 = FOREVER BLUE 海の呼び声 @@ -41,11 +45,12 @@ R4RJ13 = FIFA 10 ワールドクラス サッカー R4VJA4 = テレしばい Wii R4WJA4 = 実況パワフルメジャーリーグ2009 R4YJ2M = 女番社長レナWii 貓社長、つかえる社員大募集。 -R4ZJ01 = 零~月蝕の仮面~ +R4ZJ01 = 零 ~月蝕の仮面~ R5MJAF = ことばのパズル もじぴったんWii デラックス R5NJN9 = ドアラでWii R5PJ13 = ハリー・ポッターと不死鳥の騎士団 R5TJ13 = グランドスラムテニス +R5WJA4 = SILENT HILL SHATTERED MEMORIES R5XJ13 = ぼくとシムのまち エージェント R64J01 = Wiiミュージック R6BJ78 = ブロブ カラフルなきぼう @@ -62,10 +67,10 @@ R7XJ13 = ニード・フォー・スピード ナイトロ R82JG0 = ダーツWii DX R83JA4 = ポップンミュージック R84J99 = 牧場物語 やすらぎの樹 -R88J2L = アンパンマン にこにこパーティ +R88J2L = アンパンマン にこにこパーティ R89JEL = 東京フレンドパークⅡ R8AJ01 = ポケパークWii ピカチュウの大冒険 -R8DJA4 = 遊戯王ファイブディーズ デュエルトランサー +R8DJA4 = 遊戯王5D's デュエルトランサー R8EJQC = アースシーカー R8FJHA = 匠レストランは大繁盛! R8GJC8 = ジーワンジョッキー Wii 2008 @@ -76,15 +81,15 @@ R96JAF = 風のクロノア -door to phantomile- R9IJ01 = Wiiであそぶ ピクミン R9TJ13 = タイガー・ウッズ PGA TOUR 09 ALL-PLAY RB2J2K = レインボーポップ -RB4J08 = バイオハザード4 Wii edition +RB4J08 = バイオハザード 4 Wii edition RB6J18 = ボンバーマン RBBJ18 = ボンバーマンランドWii -RBHJ08 = バイオハザード0 +RBHJ08 = バイオハザード 0 RBIJ99 = 牧場物語 わくわくアニマルマーチ RBKJ13 = ブーム ブロックス RBLJ8P = BLEACH Wii 白刃きらめく輪舞曲 -RBSJ08 = 戦国BASARA2 英雄外伝 ダブルパック -RBTJ8P = ウチ釣りっ! バスフィッシング +RBSJ08 = 戦国BASARA 2 英雄外伝 ダブルパック +RBTJ8P = ウチ釣りっ! バスフィッシング RBUJ08 = バイオハザード アンブレラ・クロニクルズ RBWJ01 = 突撃!! ファミコンウォーズ VS RBXJ8P = BLEACH バーサス・クルセイド @@ -99,9 +104,9 @@ RCHJAF = WE CHEER RCOJ99 = 名探偵コナン -追憶の幻想- RCPJ18 = コロリンパ RCQJDA = チョロQ Wii -RD2J41 = レッドスティール2 +RD2J41 = レッドスティール 2 RD4JA4 = ダンスダンスレボリューション フルフル♪パーティー -RD6J8N = どうぶつ奇想天外!〜謎の楽園でスクープ寫真を激寫せよ! +RD6J8N = どうぶつ奇想天外! 謎の楽園でスクープ写真を激写せよ! RD9J18 = パズルシリーズVol.1 SUDOKU 数独 RDBJAF = ドラゴンボールZ Sparking! NEO RDDJA4 = ダンスダンスレボリューション ホッテストパーティー @@ -114,18 +119,18 @@ RDOJ41 = わんこと魔法のぼうし RDQJGD = ドラゴンクエストソード -仮面の女王と鏡の塔- RDRJA4 = Dewys Adventure 水精デューイの大冒険 !! RDSJAF = ドラゴンボールZ Sparking! METEOR -RDTJAF = たまごっちのピカピカだいとーりょー! +RDTJAF = たまごっちのピカピカだいとーりょー! RDUJDQ = スゴロクロニクル 〜右手に剣を左手にサイコロを〜 RDWJG9 = ドラゴンブレイド -RDXJ18 = Deca Sporta: Wiiでスポーツ"10"種目! +RDXJ18 = DECA SPORTA Wiiでスポーツ”10”種目! RDZJ01 = ディザスター デイ オブ クライシス RE4J08 = バイオハザード RE8J99 = 家庭教師ヒットマンREBORN! 禁斷の闇のデルタ REDJ41 = レッドスティール -REJJAF = ファミリートレーナー2 +REJJAF = ファミリートレーナー 2 REKJ2N = シェイプボクシング Wiiでエンジョイダイエット! RELJA4 = エレビッツ -REMJ8P = ドラえもんWii -ひみつ道具王決定戦!- +REMJ8P = ドラえもんWii ひみつ道具王決定戦! RENJ8P = ソニックと暗黒の騎士 RETJAF = 縁日の達人 REVJ8P = 忌火起草 -解明編- @@ -134,10 +139,10 @@ RF7J08 = タツノコ VS.カプコン クロス・ジェネレーション・オ RF8J13 = FIFA 08 ワールドクラス サッカー RF9J13 = FIFA 09 オールプレイ RFAJAF = ファミリートレーナー -RFBJ01 = FOREVER BLUE(フォーエバーブルー) -RFCJGD = FFCCクリスタルベアラー +RFBJ01 = FOREVER BLUE -フォーエバーブルー- +RFCJGD = FINAL FANTASY CRYSTAL CHRONICLES クリスタルベアラー RFEJ01 = ファイアーエムブレム 暁の女神 -RFFJGD = FFCCエコーズ・オブ・タイム +RFFJGD = FINAL FANTASY CRYSTAL CHRONICLES エコーズ・オブ・タイム RFJJAF = ファミリージョッキー RFMJAF = プロ野球 ファミリースタジアム RFNJ01 = Wiiフィット @@ -146,7 +151,7 @@ RFPJ01 = Wiiフィット プラス RFPW01 = Wiiフィット プラス RFQJ13 = フェイスブレイカー K.O. パーティー RFRJC0 = ふるふるぱーく -RFSJ8P = 不思議のダンジョン 風来のシレン3 -からくり屋敷の眠り姫- +RFSJ8P = 不思議のダンジョン 風来のシレン3 からくり屋敷の眠り姫 RFUJA4 = 麻雀格闘倶楽部Wii Wi-Fi対応 RG2JJF = ギルティギア イグゼクス アクセントコア RG4JC0 = 電車でGO! 新幹線EX 山陽新幹線編 @@ -163,9 +168,9 @@ RGTJBL = ジーティー プロ シリーズ RGVJ52 = ギターヒーロー エアロスミス RGWJ41 = ラビッツ・ゴー・ホーム RH3J4Q = ハイスクール・ミュージカル DANCE! -RH7J8P = 実戦パチスロ・パチンコ必勝法!Sammy's Collection 北斗の拳 Wii +RH7J8P = 実戦パチスロ・パチンコ必勝法! Sammy's Collection 北斗の拳 Wii RH8JEL = トゥームレイダー アンダーワールド -RH9JC8 = 遥かなる時空の中で4 +RH9JC8 = 遥かなる時空の中で 4 RHAJ01 = はじめてのWii RHAW01 = はじめてのWii(繁体中国語) RHDJ8P = ザ ハウス オブ ザ デッド 2&3 リターン @@ -174,15 +179,15 @@ RHIJJ9 = はじめの一歩 Revolution RHJJ13 = 銀星テーブルゲームズWii RHKJ18 = はたらくヒト RHOJ8P = ザ ハウス オブ ザ デッド: オーバーキル -RHPJ8N = アッコでポン!〜イカサマ放浪記〜 -RHRJ99 = 家庭教師ヒットマンREBORN! ドリームハイパーバトル! Wii +RHPJ8N = アッコでポン! 〜イカサマ放浪記〜 +RHRJ99 = 家庭教師ヒットマンREBORN! ドリームハイパーバトル! Wii RHYJAF = はねるのトびらWii ギリギリッス RILJ18 = パズルシリーズVol.2 イラストロジック+からふるロジック RINJ08 = デッドライジング ゾンビのいけにえ RIPJAF = ワンピース アンリミテッドアドベンチャー RIUJAF = ワンピース アンリミテッドクルーズ エピソード2 目覚める勇者 -RIVJAF = アイビィ・ザ・キウィ? -RJ2JGD = 007/慰めの報酬 +RIVJAF = IVY THE KIWI? -アイビィ・ザ・キウィ?- +RJ2JGD = 007 慰めの報酬 RJAE52 = コール オブ デューティ モダン・ウォーフェア リフレックス エディション RJBJAF = 大怪獣バトル ウルトラコロシアム RJGJDA = 人生ゲームWii @@ -190,12 +195,12 @@ RJOJJ9 = 恐怖体感 呪怨 RJPJA4 = 実況パワフルプロ野球Wii RJRJA4 = ダンスダンスレボリューション ミュージックフィット RJTJ01 = みんなの常識力テレビ -RJWJEL = JAWA〜マンモスとヒミツの石〜 +RJWJEL = JAWA 〜マンモスとヒミツの石〜 RK2JEB = カドゥケウス -NEWBLOOD- RK3J01 = 安藤ケンサク RK4JAF = 結界師 -黒芒楼の影- RK5J01 = 毛糸のカービィ -RK6J18 = コロリンパ2 -アンソニーと黃金のひまわりのタネ- +RK6J18 = コロリンパ 2 -アンソニーと黃金のひまわりのタネ- RK7J0A = 黄金の絆 RKAJMS = マイルストーン シューティングコレクション カラスWii RKDJEB = カドゥケウスZ -2つの超執刀- @@ -209,7 +214,7 @@ RKZJA4 = サバイバルキッズWii RLGJ52 = レゴ スター・ウォーズ コンプリート サーガ RLRJEL = トゥームレイダー アニバーサリー RLWJ78 = レミーのおいしいレストラン -RM2J13 = メダル オブ オナー ヒーローズ2 +RM2J13 = メダル オブ オナー ヒーローズ 2 RM3J01 = メトロイドプライム3 コラプション RM4J41 = モンスター4×4 ワールドサーキット RM8E01 = マリオパーティ 8 @@ -219,30 +224,30 @@ RM8P01 = マリオパーティ 8 RMAJ01 = Wiiであそぶ マリオテニスGC RMBJ01 = スーパーマリオスタジアム ファミリーベースボール RMCJ01 = マリオカートWii -RMEJDA = メジャーWii 投げろ!ジャイロボール!! +RMEJDA = メジャーWii 投げろ!ジャイロボール!! RMGJ01 = スーパーマリオギャラクシー -RMHJ08 = モンスターハンター3 +RMHJ08 = モンスターハンター 3 -tri- RMJJC8 = 麻雀大会Wii RMKJ01 = マリオスポーツミックス RMLJH4 = メタルスラッグ コンプリート RMMJ7U = たまらん Tama-run -RMTJ18 = 桃太郎電鉄16 北海道大移動の巻! +RMTJ18 = 桃太郎電鉄16 北海道大移動の巻! RMUJ2K = マーベル アルティメット アライアンス RN3J78 = スポンジ・ボブとなかまたち トイボッツのこうげき RN8JC8 = 信長の野望・革新 withパワーアップキット RN9JEL = ネクロネシア RNDJAF = のだめカンタービレ ドリーム☆オーケストラ -RNEJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX3 +RNEJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX3 RNGJ99 = ネギま!? ネオ・パクティオーファイト!! RNHJ99 = ノーモア★ヒーローズ -RNNJ4Q = ナルニア国物語/第2章:カスピアン王子の角笛 +RNNJ4Q = ナルニア国物語 第2章 カスピアン王子の角笛 RNOJ01 = アナザーコード:R 記憶の扉 RNPJ13 = ニード・フォー・スピード プロストリート RNRJ41 = ニトロバイク RNSJ13 = ニード・フォー・スピード カーボン -RNWJAF = みんなで遊ぼう!ナムコカーニバル -RNXJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX -RNYJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX2 +RNWJAF = みんなで遊ぼう! ナムコカーニバル +RNXJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX +RNYJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦!EX2 RNZJ13 = ニンジャ リフレックス RO3J99 = 王様物語 RO4JDA = 闘真伝 @@ -250,7 +255,7 @@ RODJ01 = おどる メイドインワリオ ROHJAF = ハッピーダンスコレクション ROKJ18 = カラオケJOYSOUND Wii ROLJ01 = マリオ&ソニック AT バンクーバーオリンピック -ROMJ08 = モンスターハンターG +ROMJ08 = モンスターハンター G RONJG9 = お姉チャンバラ Revolution ROQJEP = バロック for Wii ROSJ01 = タクトオブマジック @@ -258,13 +263,13 @@ ROUJAF = ワンピース アンリミテッドクルーズ エピソード1 波 ROWJ08 = 大神 RP3JAF = プロゴルファー猿 RP4J13 = ぼくとシムのまち パーティー -RP5JA4 = 実況パワフルプロ野球15 +RP5JA4 = 実況パワフルプロ野球 15 RPBJ01 = ポケモンバトルレボリューション RPJJ99 = アークライズファンタジア -RPMJA4 = 実況パワフルメジャーリーグ2 +RPMJA4 = 実況パワフルメジャーリーグ 2 RPOJC8 = オプーナ RPSJ4Q = ディズニープリンセス 魔法の世界へ -RPUJ8P = ぷよぷよ! Puyopuyo 15th Anniversary +RPUJ8P = ぷよぷよ! Puyopuyo 15th Anniversary RPXJ13 = プレイグラウンド ~公園であそぼう!~ RPYJ9B = スイングゴルフ パンヤ RPZJA4 = 実況パワフルプロ野球Wii 決定版 @@ -280,9 +285,9 @@ RRBJ41 = ラビッツ・パーティー RRSJ4Q = ルイスと未来泥棒 ウィルバーの危険な時間旅行 RRTE52 = 블록 파티! 20 게임들 RRUJJF = WINTER SPORTS 2009 - THE NEXT CHALLENGE -RRWJAF = スーパーロボット大戦NEO -RS3J52 = スパイダーマン3 -RS4JJF = 式神の城III +RRWJAF = スーパーロボット大戦 NEO +RS3J52 = スパイダーマン 3 +RS4JJF = 式神の城Ⅲ RS5JC8 = 戦国無双 KATANA RS7J01 = アイシールド21 フィールド最強の戦士たち RS8J8N = 上海 @@ -302,13 +307,14 @@ RSRJ8P = ソニックと秘密のリング RSSJH4 = サムライスピリッツ 六番勝負 RSTJ52 = スター・ウォーズ フォース・アンリーシュド RSVJ8P = ソニック ワールドアドベンチャー -RSXJ13 = SSXブラー +RSXJ13 = SSX BLUR RSZJES = 雪ん娘大旋風 RT3JEL = Rockstar Games presents Table Tennis RT4JAF = テイルズ オブ シンフォニア ラタトスクの騎士 +RT8J13 = タイガー・ウッズ PGA TOUR 08 RTDJES = 新・中華大仙 マイケルとメイメイの冒険 RTFJ52 = トランスフォーマー THE GAME -RTGJ18 = 厳選テーブルゲーム Wii +RTGJ18 = Wi-Fi対応 厳選テーブルゲームWii RTIJ8P = 珍スポーツ RTKJDQ = しゃるうぃ〜☆たころん RTLJ18 = めざせ!!釣りマスター -世界にチャレンジ編- @@ -320,11 +326,11 @@ RTYP01 = 通信対局 ワールドチェス RTZJ08 = 宝島Z バルバロスの秘宝 RUFJ99 = ルーンファクトリー フロンティア RUNJ0Q = NEW 右脳キッズWii -RUPJC8 = ウイニングポスト7 マキシマム2008 +RUPJC8 = ウイニングポスト 7 マキシマム 2008 RUQJJE = カールじいさんの空飛ぶ家 RUUJ01 = 街へいこうよ どうぶつの森 RUWJC8 = ウイニングポストワールド -RUYJ99 = ノーモア★ヒーローズ2 デスパレート・ストラグル +RUYJ99 = ノーモア★ヒーローズ 2 デスパレート・ストラグル RVKJ99 = ヴァルハラナイツ エルダールサーガ RVSJ13 = スケート イット RVYE52 = コール オブ デューティ ワールド・アット・ウォー @@ -339,7 +345,7 @@ RWSJ01 = マリオ&ソニック AT 北京オリンピック RWWJ78 = WWE 2008 SmackDown vs. Raw RX3J01 = エキサイト猛マシン RX7JGD = メジャマジ・マーチ -RX8JA4 = 実況パワフルプロ野球NEXT +RX8JA4 = 実況パワフルプロ野球 NEXT RX9J13 = ニード・フォー・スピード アンダーカバー RXDJ4Q = ディズニー・シンク 早押しクイズ RXEJDA = メジャーWii パーフェクトクローザー @@ -350,22 +356,22 @@ RXPJJF = バスフィッシングWii 〜ロクマル伝説〜 RXXJ4Q = 化石モンスター スペクトロブス RY2J41 = ラビッツ・パーティー リターンズ RY3J41 = ラビッツ・パーティー TV Party -RY4J8P = ぷよぷよ7 +RY4J8P = ぷよぷよ 7 RYAJDA = ヤッターマンWii ビックリドッキリマシンで猛レースだコロン RYGJ9B = アルゴスの戦士 マッスルインパクト RYKJAF = ファミリースキー ワールドスキー&スノーボード -RYOJA4 = 遊戯王 5D's ウィーリーブレイカーズ +RYOJA4 = 遊戯王5D's ウィーリーブレイカーズ RYVJMS = イルベロWii RYWJ01 = Wiiでやわらかあたま塾 RZ2JG9 = SIMPLE Wiiシリーズ Vol.1 THE みんなでカート・レース RZ3JG9 = SIMPLE Wiiシリーズ Vol.2 THE みんなでバス釣り大会 RZ4JG9 = SIMPLE Wiiシリーズ Vol.3 遊んで覚える THE パーティー・カジノ -RZ5JG9 = SIMPLE WiiシリーズVol.4 THEシューティング・アクション +RZ5JG9 = SIMPLE Wiiシリーズ Vol.4 THE シューティング・アクション RZ6JG9 = SIMPLE Wiiシリーズ Vol.5 THE ブロックくずし RZ7JG9 = SIMPLE Wiiシリーズ Vol.6 THE ワイワイ・コンバット -RZ8JG9 = SIMPLE 2000シリーズWiiVol.1 THEテーブルゲーム +RZ8JG9 = SIMPLE 2000シリーズWii Vol.1 THE テーブルゲーム RZ9JG9 = SIMPLE 2000シリーズWii Vol.2 THEパーティーゲーム -RZDJ01 = ゼルダの伝説 トワイライトプリンセス +RZDJ01 = ゼルダの伝説 トワイライトプリンセス [Wii] RZJJ13 = デッドスペース エクストラクション RZNJ01 = 斬撃のレギンレイヴ RZPJ01 = リンクのボウガントレーニング @@ -374,33 +380,33 @@ RZTW01 = Wiiスポーツ リゾート RZZJEL = マッドワールド S22JAF = ファミリーフィッシング S25JGD = ファミコン&スーパーファミコン ドラゴンクエストⅠ・Ⅱ・Ⅲ -S2AJAF = みんなで冒険!ファミリートレーナー -S2LJ01 = ポケパーク2 ビヨンド・ザ・ワールド +S2AJAF = みんなで冒険!ファミリートレーナー +S2LJ01 = ポケパーク 2 ビヨンド・ザ・ワールド S2PJA4 = ウイニングイレブン プレーメーカー 2012 -S2TJAF = 太鼓の達人Wii ドドーンと2代目! -S3DJ18 = Deca Sporta 3: Wiiでスポーツ -S3HJ08 = 戦国BASARA3 宴 +S2TJAF = 太鼓の達人Wii ドドーンと2代目! +S3DJ18 = DECA SPORTA 3 Wiiでスポーツ”10”種目! +S3HJ08 = 戦国BASARA 3 宴 S3RJMS = トウィンクルクイーン S3SJ18 = カラオケJOYSOUND Wii SUPER DX S3TJAF = 太鼓の達人Wii みんなでパーティ☆3代目! S4MJGD = ドラゴンクエストX 目覚めし五つの種族 オンライン S4SJGD = ドラゴンクエストX 眠れる勇者と導きの盟友 オンライン -S59JC8 = 戦国無双3 +S59JC8 = 戦国無双 3 S5KJAF = 太鼓の達人Wii 超ごうか版 -S5QJC8 = 戦国無双3 猛将伝 +S5QJC8 = 戦国無双 3 猛将伝 S5SJHF = イナズマイレブンGO ストライカーズ 2013 S6TJGD = ドラゴンクエストX オールインワンパッケージ S72J01 = 星のカービィ 20周年スペシャルコレクション S7CJAF = 仮面ライダー クライマックスヒーローズ フォーゼ -SAAJA4 = ウイニングイレブン プレーメーカー2013 +SAAJA4 = ウイニングイレブン プレーメーカー 2013 SAUJ8P = ぷよぷよ!! Puyopuyo 20th anniversary -SB3J08 = 戦国BASARA3 -SB4J01 = スーパーマリオギャラクシー2 +SB3J08 = 戦国BASARA 3 +SB4J01 = スーパーマリオギャラクシー 2 SB4W01 = スーパーマリオギャラクシー2 SBAJGD = ドラゴンクエスト モンスターバトルロード ビクトリー SBBJ18 = メタルファイト ベイブレード ガチンコスタジアム -SBCJ2N = ビリーズブートキャンプ Wiiでエンジョイダイエット! -SBDJ08 = バイオハザード/ダークサイド・クロニクルズ +SBCJ2N = ビリーズブートキャンプ Wiiでエンジョイダイエット! +SBDJ08 = バイオハザード ダークサイド・クロニクルズ SBWJRA = ベビーシッターママ SC7E52 = コール オブ デューティ ブラック・オプス SC8J01 = Wiiリモコンプラス バラエティ @@ -413,10 +419,10 @@ SDQJGD = ドラゴンクエストX いにしえの竜の伝承 オンライン SDWJ18 = 影の塔 SEAJ13 = EA Sports アクティブ パーソナルトレーナー: Wii 6週間集中ひきしめプログラム SEKJ99 = イケニエノヨル -SEMJ01 = ディズニー エピックミッキー ~ミッキーマウスと魔法の筆~ +SEMJ01 = ディズニー エピックミッキー ミッキーマウスと魔法の筆 SEPE41 = ブラック・アイド・ピーズ・エクスペリエンス スペシャル・エディション SEPZ41 = ブラック・アイド・ピーズ・エクスペリエンス スペシャル・エディション -SERJ91 = ディズニー エピックミッキー2:二つの力 +SERJ91 = ディズニー エピックミッキー2 二つの力 SEZJHF = イナズマイレブン ストライカーズ 2012エクストリーム SF5J41 = フィット・イン・シックス カラダを鍛える6つの要素 SF8J01 = ドンキーコング リターンズ @@ -428,7 +434,7 @@ SGIJA4 = GTI Club ワールド シティ レース SGKJC8 = チャンピオンジョッキー:ギャロップレーサー&ジーワンジョッキー SGVJAF = ゴーバケーション SH2JMS = Hula Wii 楽しくフラを踴ろう!! -SHIJ2N = シェイプボクシング2 Wiiでエンジョイダイエット! +SHIJ2N = シェイプボクシング 2 Wiiでエンジョイダイエット! SIIE8P = マリオ&ソニック AT ロンドンオリンピック SIIJ01 = マリオ&ソニック AT ロンドンオリンピック SIIP8P = マリオ&ソニック AT ロンドンオリンピック @@ -436,12 +442,13 @@ SISJ0Q = Wiiで骨盤Fitness SJ3JDA = 人生ゲーム ハッピーファミリー SJ5JDA = 人生ゲーム ハッピーファミリー ご当地ネタ 増量仕上げ SJBJ01 = ゴールデンアイ 007 +SJDJ01 = ジャストダンス Wii 2 SJWJA4 = ウイニングイレブン プレーメーカー 2010 蒼き侍の挑戦 SKDJ18 = カラオケJOYSOUND Wii デュエット曲編 SKEJ18 = カラオケJOYSOUND Wii 演歌・歌謡曲編 -SKHJAF = 仮面ライダー超クライマックスヒーローズ +SKHJAF = 仮面ライダー 超クライマックスヒーローズ SKMJAF = 仮面ライダー クライマックスヒーローズW -SL2J01 = 零~真紅の蝶~ +SL2J01 = 零 ~真紅の蝶~ SL2P01 = 零~真紅の蝶~ SL3ENR = ドラゴンズレアトリロジー SLSJ01 = ラストストーリー @@ -460,10 +467,10 @@ SMOJ41 = マイケル・ジャクソン ザ・エクスペリエンス SMTJ18 = 桃太郎電鉄2010 戦国・維新のヒーロー大集合!の巻 SMUJAF = 大怪獣バトル ウルトラコロシアムDX SN4JDA = NARUTO -ナルト- 疾風伝 龍刃記 -SNCJ8P = ソニック カラーズ +SNCJ8P = ソニックカラーズ SNHJ13 = ニード・フォー・スピード ホット・パースート SNVJ13 = ニード・フォー・スピード ザ・ラン -SNXJDA = NARUTO 疾風伝 激闘忍者大戦! Special +SNXJDA = NARUTO -ナルト- 疾風伝 激闘忍者大戦! Special SO3J99 = ルーンファクトリー オーシャンズ SOKJ18 = カラオケJOYSOUND Wii DX SOMJ01 = みんなのリズム天国 @@ -478,12 +485,12 @@ SRJJAF = スーパー戦隊バトル レンジャークロス SRMJ18 = Rooms 不思議な動く部屋 SROJQC = 天空の機士ロデア SRYJAF = フィットネス パーティ -SS9JMS = マイルストーン シューティングコレクション2 +SS9JMS = マイルストーン シューティングコレクション 2 SSPJGD = スカイランダーズ スパイロの大冒険 SSQE01 = マリオパーティ 9 -SSQJ01 = マリオパーティ9 +SSQJ01 = マリオパーティ 9 SSQP01 = マリオパーティ 9 -SSQW01 = マリオパーティ9 +SSQW01 = マリオパーティ 9 ST3J01 = キキトリック ST7JGD = いただきストリート Wii STEJ18 = テトリスパーティー プレミアム @@ -494,30 +501,35 @@ STQJHF = イナズマイレブン ストライカーズ SUKE01 = 星のカービィWii SUKJ01 = 星のカービィWii SUMJC8 = ウイニングポストワールド 2010 -SUPJ01 = Wii パーティー +SUPJ01 = Wiiパーティー SUXJA4 = ウイニングイレブン プレーメーカー 2010 SVMJ01 = スーパーマリオコレクション SW4JA4 = ウイニングイレブン プレーメーカー 2011 SX3J01 = パンドラの塔 君のもとへ帰るまで SX4J01 = ゼノブレイド -SX6JAF = プリキュア オールスターズ: ぜんいんしゅうごう☆レッツダンス! +SX6JAF = プリキュア オールスターズ ぜんいんしゅうごう☆レッツダンス! +CGHJ52 = ギターヒーロー3 カスタム Jumapa DBSBT3 = Dragon ball z SparkingMeteor DQAJSC = アクエリアスベースボール 限界の、その先へ G2MK01 = メトロイドプライム2 ダークエコーズ G4NEDA = カンタン操作で、超爽快忍者アクションが楽しめる! -G4SK01 = ゼルダの伝説 4つの剣+ +G4SK01 = ゼルダの伝説 4つの剣+ GBIK08 = バイオハザード GCDK08 = バイオハザード コード:ベロニカ完全版 +GCRJBM = ゼノ・クライシス GEAK8P = エターナルアルカディア レジェンド GFEK01 = ファイアーエムブレム 蒼炎の軌跡 +GFZJ8P = F-ZERO AX GGPE01 = マリオカート アーケードグランプリ GGPE02 = マリオカート アーケードグランプリ2 +GGPJ02 = マリオカート アーケード GP2 GLMK01 = ルイージマンション GM8K01 = メトロイドプライム GMSE02 = Multiplayer Sunshine Super Mario GMSK01 = スーパーマリオサンシャイン GVS32J = バーチャストライカー3 Ver.2002 (トライフォース) GVS45J = バーチャストライカー4 +GVSJ9P = VIRTUA STRIKER4 Ver.2006 GZ2K01 = ゼルダの伝説 トワイライトプリンセス GZBEB2 = 金色のガッシュベル!! ゴー!ゴー!魔物ファイト!! GZLK01 = ゼルダの伝説 風のタクト @@ -531,496 +543,1058 @@ RMCJ86 = マリオカートクリス3,500CT RMCJBR = マリオカート Brown RMCJYP = ヨッシーレーシングリゾートプラス RMCKYP = ヨッシーレーシングリゾートプラス -RMCPCA = マリオカートWii(カタルーニャ語版) RMCPYP = ヨッシーレーシングリゾートプラス ROSE01 = タクトオブマジック RYAJSC = ヤッターマンWii ビックリドッキリマシンで猛レースだコロン RZNE01 = 斬撃のレギンレイヴ -SEKE99 = Ikenie no Yoru SMNEXE = 強化されたスーパーマリオブラザーズ.Wiiデラックス SNBE66 = マグマスーパーマリオブラザーズWii黙示録 -W2OJ = Blue Oasis: 미지의 심해 +HDMJ = Dr.MARIO&細菌撲滅 (Beta Ver.) +W2CJ = ブレインチャレンジ +W2GJ = 逆転裁判 2 +W2KJ = レッツキャッチ +W2OJ = BLUE OASIS ~未知なる深海~ W2TJ = オニトレ~教官は鬼軍曹~ W34J = @SIMPLEシリーズ Vol.4 THE 密室からの脱出 -W3DJ = 3° C -W42J = F・O・R・T・U・N・E フォーチュン~星のふりそそぐ丘~ -W4KJ = Shikagari -W4OJ = Shikakui Atama wo Marukusuru Challenge -W82J = Jintori Action Taikokenchi Karakuri Shiro no Nazo -W8CJ = BIT.TRIP CORE: Rhythm Seijin no Gyakushuu -W8DJ = Mebius Drive -W8IJ = Hachi-One Diver Wii -W8PJ = Ouchi de Mugen Puchi Puchi Wii +W3DJ = 3℃ +W3GJ = 逆転裁判 3 +W3KJ = すりぬけアナトウス +W42J = F・O・R・T・U・N・E フォーチュン ~星のふりそそぐ丘~ +W4KJ = 鹿狩 +W4OJ = シカクいアタマをマルくする。 毎日みんなでチャレンジ編 +W6BJ = 530 エコシューター +W82J = 陣取りアクション! 太閤検地 ~からくり城のナゾ~ +W8CJ = BIT. TRIP CORE ~リズム星人の逆襲~ +W8DJ = メビウス・ドライブ +W8IJ = ハチワンダイバー -81diver- Wii +W8PJ = おうちで∞プチプチWii W9IJ = 危険空域 WA2J = みんなでパズループ -WA4J = WarioWare: D.I.Y. Showcase -WA8J = Art Style: Penta Tentacles -WALJ = Art Style: Lightstream -WAQJ = 役満 Wii 井出洋介 の 健康 麻将 -WARJ = Tsuushin Taikyoku Igo Doujou 2700 Mon -WASJ = Tsuushin Taikyoku: Hayazashi Syogi Sandan -WAUJ = Tsūshin Taikyoku: World Chess -WBJJ = Bokujou Monogatari Series: Makiba no Omise -WBMJ = Minna no Pokémon Bokujou -WCKJ = chick chick BOOM -WCSJ = Cue Sports: Wi-Fi Taisen Billiards -WCUJ = Atsui 12-Game: FuriFuri Party! -WD2J = Simple Wii Series Vol. 2: The Number Puzzle Neo +WA4J = あそぶメインドイン俺 -アソブ メド イン オレ- +WA8J = ART STYLE: PENTA TENTACLES +WALJ = ART STYLE: Lightstream +WAOJ = はらぺこあおむしのABC +WAQJ = 役満Wii 井出洋介の健康麻将 +WARJ = 通信対局 囲碁道場 2700問 +WASJ = 通信対局 早指 将棋 三段 +WAUJ = 通信対局 World Chess ワールドチェス +WB4J = ワイルドウエストガンズ +WB5J = ブロックブレーカー デラックス +WB6J = TVショーキング +WB7J = ハマる★ビリヤード +WB8J = ハマる★ボウリング +WBAJ = バクたん +WBBJ = ボードウォリアーズ +WBJJ = 牧場物語シリーズ まきばのおみせ +WBKJ = ARKANOID Plus! +WBLJ = BUBBLE BOBBLE Wii +WBMJ = みんなのポケモン牧場 プラチナ対応版 +WBNJ = 盆栽バーバー +WBSJ = POP ~ポップ~ +WBWJ = サクサク アニマルパニック +WC2J = クリスタル・ディフェンダーズ R2 +WC8J = ラインアタックヒーローズ +WCIJ = クリスタル・ディフェンダーズ R1 +WCKJ = チキンバトル!チクチクブーン +WCNJ = 東京シティー★ナイツ +WCSJ = キュースポーツ Wi-Fi対戦ビリヤード +WCUJ = あつい12ゲーム フリフリパーティー! +WCZJ = ColorZ -カラーズ- +WD2J = @SIMPLEシリーズ Vol.2 THE ナンバーパズル neo WD9J = ドラキュラ伝説 ReBirth +WDAJ = ダーツWii WDBJ = ダービードッグ -WDHJ = Art Style: Dialhex -WDIJ = Simple Wii Series Vol. 1: The Block Kuzushi Neo +WDDJ = DINER DASH -ダイナーダッシュ- +WDHJ = ART STYLE: DIALHEX +WDIJ = @SIMPLEシリーズ Vol.1 THE ブロックくずしneo WDMJ = Dr.MARIO&細菌撲滅 -WDNJ = Discipline Teikoku no Tanjyou -WDPJ = Dr. Mario Online Rx (Friend Battle Demo) -WE6J = Sea Farm: Iruka to Watashi no Showtime -WEMJ = 1 Nuke! Dasshutsu Game * My Home Hen -WERJ = Blue Oasis: The Healing Space of Fish -WETJ = Asoberu Ehon: Tobida Sugoroku -WF2J = Final Fantasy Crystal Chronicles: Hikari to Yami no Himegimi to Sekai Seifuku no Tou -WF4J = Final Fantasy IV: The After Years - Tsuki no Kikan -WF5J = Okiraku Daifugou Wii -WFBJ = Beach e Oki o Tsukuccha Wow! -WFCJ = Final Fantasy Crystal Chronicles: Chiisana Ousama to Yakusoku no Kuni +WDNJ = ディシプリン*帝国の誕生 +WDPJ = Dr.MARIO フレンドタイセン限定版 +WDRJ = ミスタードリラーワールド +WE6J = SEA FARM イルカとわたしのショータイム +WE9J = エイリアンクラッシュ・リターンズ +WEMJ = 1抜け!脱出ゲーム★マイホーム編 +WEQJ = かたむきスピリッツ +WERJ = BLUE OASIS ~魚の癒し空間~ +WETJ = あそべる絵本 とびだスゴロク! +WEVJ = peakvox escape virus -エスケープ ウイルス- +WF2J = 光と闇の姫君と世界征服の塔 -FINAL FANTASY CRYSTAL CHRONICLES- +WF4J = FINAL FANTASY Ⅳ THE AFTER YEARS 月の帰還 +WF5J = おきらく大富豪Wii 本格Wi-Fiネット対戦 +WFBJ = ビーチde お城をつくっちゃWow! +WFCJ = 小さな王様と約束の国 -FINAL FANTASY CRYSTAL CHRONICLES- +WFFJ = FUN! FUN! MINIGOLF +WFGJ = Frogger Returns -フロッガー リターンズ- +WFIJ = フィッシュアイズ チャレンジ +WFKJ = おきらくカートWii WFPJ = ひらめきカードバトル メクルカ WFSJ = みんなのシアターWii -WG2J = Sugar Bunnies Wii: Youkoso * Bunnies Field e -WGDJ = Gradius Rebirth: Updated -WGGJ = Ushimitsu Monstruo Puchi: Fushigi na Oshiro no Dance Party -WGMJ = Game SoundStation -WGOJ = World of Goo -WGPJ = Aqua Living: TV de Nagameru Uotachi -WGSJ = Gyakuten Saiban: Yomigaeru Gyakuten +WG2J = シュガーバニーズWii ようこそ☆バニーズフィールドへ +WGDJ = グラディウス REBIRTH [更新版] +WGGJ = うしみつモンストルオぷち 不思議なお城のダンスパーティー +WGMJ = ゲームサウンドステーション +WGOJ = グーの惑星 +WGPJ = アクアリビング テレビでながめる魚たち +WGSJ = 逆転裁判 蘇る逆転 +WGTJ = 世界の面白パーティゲーム +WGUJ = Aero Guitar -エアロ・ギター- WHHJ = Let's 全力ヒッチハイク!!!!!!!!! -WIKJ = Ivy the Kiwi? Mini -WINJ = Chokkan! Balance * Labyrinth -WJ2J = Jinsei Game: Happy Step -WK2J = Kappa-kun to Asobou: Kappa-kun to Ota no Shimikai -WK3J = Kappa-kun to Asobou: Kappa-kun to Mori no Nakamatachi -WK9J = Minna de Asobou Koinu de Kururin -WKEJ = RakuRaku Kinen Apori Wii: Kinenka no Isha ga Osheru Nanoka de yameru Houhou -WKKJ = Kurohige Kiki Ippatsu -WKNJ = Kanken Minna de Waiwai Kanji Nou -WKPJ = Kappa Kun to Mori no Nakama Tachi -WKQJ = Kentei! TV Wii Minna de Gotouchi Quiz Battle -WKWJ = Item Sagashi * Yousei to Fushigi no Shima -WLDJ = Boku mo Sekai o Sukuitai: Battle Tournament -WLEJ = Pooyoo to Asobou Episode 1 -WLJJ = Boku mo Sekai o Sukuitai: Battle Tournament +WHUJ = ゴーストマンションパーティ +WICJ = ニックスクエスト +WIKJ = IVY THE KIWI? mini -アイビィ・ザ・キウィ? ミニ- +WINJ = 直感!ばらんす★らびりんす +WITJ = ああっ!見つけた!★アイテム探しゲ~ム★ +WIVJ = SPACE INVADERS GET EVEN ~逆襲のスペースインベーダー~ +WJ2J = 人生ゲーム ハッピーステップ +WJGJ = 人生ゲーム +WJPJ = ジャンケンパーティぱらだいす +WK2J = かっぱくんとあそぼう かっぱくんのおたのしみかい +WK3J = かっぱくんとあそぼう かっぱくんと3びきのこねこ +WK9J = みんなであそぼう! 仔犬でくるりん +WKBJ = きみとぼくと立体。 +WKEJ = らくらく禁煙アプリWii -禁煙科の医者が教える7日でやめる方法- +WKKJ = 黒ひげ危機一発Wii +WKNJ = 漢検 みんなでわいわい漢字脳 +WKPJ = かっぱくんとあそぼう かっぱくんともりのなかまたち +WKQJ = ケンテイ!TV Wii 〜めざせ全国制覇!みんなでご当地クイズバトル!〜 +WKTJ = 魂斗羅 ReBirth +WKUJ = ダウンタウン熱血どっじぼーる +WKWJ = アイテム探し★妖精とふしぎの島 +WLCJ = わいわいビンゴ★デラックス +WLDJ = ボクも世界を救いたい +WLEJ = プーヨーとあそぼう エピソード 1 +WLJJ = ボクも世界を救いたい BATTLE TOURNAMENT WLKJ = リカちゃんおしゃれハウス -WLMJ = La Mulana -WLOJ = LostWinds: Winter of the Melodias -WM8J = Wi-Fi 8-Nin Battle Bomberman +WLMJ = LA-MULANA -ラ・ムラーナ- +WLOJ = ロストウィンズ ウィンター オブ メロディアス +WLPJ = LONPOS -ロンポス- +WLTJ = スクール オブ ダークネス +WLWJ = ロストウィンズ +WLXJ = PHALANX -ファランクス- +WM8J = Wi-Fi8人バトル ボンバーマン WM9J = たたいて!モグポン -WMBJ = Katachi no Game: Marubou Shikaku -WMLJ = Major League Eating: The Game -WMOJ = Antaga Mawashite Sukuu Puzzle: Mochimochi Q -WMPJ = ことばのパズル もじぴったんWii -WMXJ = Max & the Magic Marker -WN9J = NECTARIS(ネクタリス) -WNPJ = すぐスロDUO「ニューパルサーR&V」 -WNVJ = ハメコミ  LUCKY PUZZLE Wii リターン -WNWJ = Hamekomi Lucky Puzzle Wii Return -WOBJ = Art Style: Orbital +WMBJ = カタチのゲーム まるぼうしかく +WMLJ = メジャーリーグ・イーティング +WMMJ = マッスル行進曲 +WMOJ = ~あなたが回して救うパズル~ もちもちQ +WMPJ = ことばのパズル もじぴったんWii +WMXJ = らくがき★ヒーロー +WN9J = ネクタリス -Military Madness- +WNPJ = すぐスロDUO「ニューパルサーR&V」 +WNVJ = ハメコミ LUCKY PUZZLE Wii +WNWJ = ハメコミ LUCKY PUZZLE Wii リターン +WO6J = おきらくすごろくWii +WOAJ = おきらくエアホッケーWii +WOBJ = ART STYLE: ORBITAL WODJ = 王だぁ! +WOEJ = お絵かきロジック +WOGJ = おきらくパターゴルフWii WOKJ = カラオケJOYSOUND Wii -WOXJ = Osu! Exercise Dojo -WOYJ = Bit Man -WOZJ = Kodomo Kyouiku Telebi Wii: Aiue-Oumuzu +WOLJ = Othello -オセロ- +WOMJ = 世界の面白パーティゲーム 2 +WOSJ = おきらくスロットカーレーシングWii +WOTJ = オーバーターン +WOXJ = 押忍! エクササイズ道場 +WOYJ = ビットマン +WOZJ = こども教育テレビWii アイウエ・オームズ WP5J = ポコスカれーしんぐ -WP6J = Boku wa Plarail Untenshi: Shinkansen Joukikikansha-Hen -WP9J = Po-Ka-Zu Wii -WPAJ = ポケモン不思議のダンジョン いくぞ!嵐の冒険団 +WP6J = ぼくはプラレール運転士 新幹線&蒸気機関車編 +WP7J = PLANETARIUM -プラネタリウム- +WP9J = ぽーかーずWii +WPAJ = ポケモン不思議のダンジョン いくぞ!嵐の冒険団 WPDJ = 珍道中!!ポールの大冒険 -WPFJ = ポケモン不思議のダンジョン すすめ!炎の冒険団 -WPGJ = Penguin Life -WPHJ = ポケモン不思議のダンジョン めざせ!光の冒険団 -WPIJ = Pit Crew Panic -WPNJ = Ponjan -WPPJ = Okiraku Ping Pong -WPRJ = Art Style: Cubeleo -WPSJ = Ransen Pokémon Scramble -WPTJ = FANTASIC CUBE ファンタジックキューブ -WPVJ = Kumanage Battle-Hen: Kiina no Kirai na Aoi Hoseki -WPXJ = Minna de Tobikome Penguin Diving Hooper Looper -WQ4J = Kentoushi FuriFuri Boxing -WR9J = ロックマン9 野望の復活!! -WRIJ = Rainbow Islands: Towering Adventure! -WRNJ = BIT.TRIP RUNNER -WRXJ = 宇宙からの脅威!! -WS8J = Minna de Taisen Puzzle Shanghai -WSAJ = MadSecta -WSCJ = Out of Galaxy: Gin no Koshika -WSGJ = さめがめ Wii -WSLJ = Shadow Walker -WSNJ = Sonic the Hedgehog 4: Episode I -WSUJ = シュータント過去編 -WT8J = はじいて! ブロック ラッシュ +WPFJ = ポケモン不思議のダンジョン すすめ!炎の冒険団 +WPGJ = ペンギン生活 +WPHJ = ポケモン不思議のダンジョン めざせ!光の冒険団 +WPIJ = ピットクルーパニック! +WPNJ = ポンジャンWii +WPOJ = ポップルと魔法のクレヨン +WPPJ = おきらくピンポンWii +WPRJ = ART STYLE: CUBELEO +WPSJ = 乱戦!ポケモンスクランブル +WPTJ = FANTASIC CUBE -ファンタジックキューブ- +WPUJ = パズルボブルWii +WPVJ = くまなげ ~キイナの嫌いな青いホウセキ バトル編~ +WPXJ = みんなでとびこめ! ペンギンダイビング フーパールーパー +WQ4J = 拳闘士 フリフリボクシング +WR9J = ロックマン 9 -野望の復活!!- +WRIJ = レインボーアイランド タワーリング アドベンチャー +WRNJ = BIT.TRIP RUNNER ~リズム星人の激走~ +WRXJ = ロックマン10 -宇宙からの脅威!!- +WS2J = 最強銀星囲碁 +WS3J = 最強銀星チェス +WS4J = 最強銀星麻雀 +WS5J = 最強銀星五目並べ +WS6J = 最強銀星リバーシ +WS8J = みんなで対戦パズル 上海Wii +WSAJ = MADSECTA -マッドセクタ- +WSBJ = ソーサリーブレイド +WSCJ = Out of Galaxy 銀のコーシカ 〜松本零士〜 +WSEJ = プリンセス・アイ物語 +WSGJ = さめがめWii +WSIJ = 最強銀星将棋 +WSLJ = Shadow Walker 影の少年と光の妖精 +WSMJ = つっぱり大相撲 Wii部屋 +WSNJ = ソニック・ザ・ヘッジホッグ 4 エピソードⅠ +WSTJ = 天使のソリティア +WSUJ = SHOOTANTO ~過去編~ +WT3J = トメナサンナーWii +WT8J = はじいて!ブロックラッシュ WTBJ = ファンタジックタンバリン FANTASIC TAMBOURINE -WTDJ = Tomica Drive +WTDJ = トミカドライブ しゅつどう! 緊急車両編 +WTHJ = かく!うごく!つかまえる!せんせいWii +WTMJ = 高橋名人の冒険島Wii +WTNJ = おきらくテニスWii +WTPJ = テトリスパーティ WTRJ = BIT.TRIP BEAT WUHJ = Wiiでウルトラハンド -WUKJ = Unou Kids Okigaru Unou Training -WUNJ = Uno +WUKJ = 右脳キッズ おきがる右脳トレーニング WVBJ = BIT.TRIP VOID -WVDJ = Kodomo Kyouiku TV Wii: Aiue-O-Chan -WVOJ = Rock n' Roll Climber -WWRJ = Excitebike: World Race -WYKJ = Yomi Kiku Asobi -WZHJ = Animal Life: Doubutsu Fureai Seikatsu -WZJJ = @ SIMPLEシリーズ Vol.5 THE 柔道 -WZMJ = Simple Wii Series Vol. 3: The Mahjong -WZPJ = ゾンビ イン ワンダーランド -WZZJ = Kumanage Puzzle-Hen: Piina no Suki na Akai Candy -FA5J = Fire Emblem: Ankoku Ryu to Hikari no Tsurugi -FA6J = Donkey Kong Jr. no Sansuu Asobi -FA8J = Hoshi no Kirby: Yume no Izumi no Monogatari -FA9J = The Legend of Zelda 2: Link no Bouken -FAQJ = Ninja Jajamaru-kun -FB2J = スーパーマリオブラザーズ2 -FB3J = Valkyrie no Bouken: Toki no Kagi Densetsu -FBDJ = Hikari Shinwa: Palutena no Kagami -FBNJ = Ninja Ryuukenden -FBOJ = Gradius II -FBSJ = Meikyuu Kumikyoku: Milon no Daibouken -FC5J = Ganbare Goemon Karakuki Douchuu -FC8J = Dracula II: Noroi no Fuuin -FCFJ = Yie Ar Kung Fu -FCIJ = Volguard 2 -FCJJ = SD Gundam World: Gachapon Senshi 2 - Capsule Senki -FCRJ = Takahashi Meijin no Boukenjima -FCTJ = RockMan -FCZJ = Kings Knight -FD3J = Nekketsu Koukou Dodgeball-bu Soccer-hen -FD7J = RockMan 3: Dr. Wily no Saigo?! -FDBJ = Famicom Mukashi Banashi: Shin Onigashima - Kouhen -FDGJ = Makai-Mura -FDNJ = RockMan 2 -FDSJ = Famicom Tantei Club: Kieta Koukeisha (Kouhen) -FDTJ = Renegade -FDUJ = Nekketsu Koukou Dodge Ball Bu -FDWJ = Downtown Special: Kunio-kun no Jidaigeki Dayo Zenin Shuugou! -FDXJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo (Kouhen) -FDZJ = Downtown Nekketsu Koushinkyoku -FE5J = Toukaidou Gojuusan Tsugi -FE6J = Ninja kun Majyou no Bouken -FE7J = Ninja kun Ashura no Shou -FE9J = Ike Ike! Nekketsu Hockey-bu: Subette Koronde Dairantou -FEEJ = Tantei Jingūji Saburō: Shinjuku Chūō Kōen Satsujin Jiken -FEFJ = Detective Saburo Jinguji 2: Yokohama-Ko Renzoku Satsujin Jiken -FEHJ = Tantei Jinguuji Saburo: Toki no Sugiyuku Mama ni -FEJJ = Nazo no Murasame Jou -FELJ = Transformers: Convoy no Nazo -FEMJ = Bio-Miracle Bokutte Upa -FEOJ = Zoids: Mokushiroku -FEQJ = Akumajo Densetsu -FESJ = Clu Clu Land -FEXJ = Wagyan Land -FF2J = Sugoro Quest: Dice no Senshi Tachi -FF5J = Double Dragon 2: The Revenge -FF7J = Ganbare Goemon Gaiden: Kieta Ougon Kiseru -FFGJ = SD Gundam World: Gachapon Senshi - Scramble Wars -FFLJ = Salad no Kuni no Tomato Hime -FFMJ = Chou-Wakusei Senki MetaFight -FFNJ = RockMan 4: Aratanaru Yabou!! -FFOJ = Moero TwinBee: Cinnamon Hakase o Sukue! -FFPJ = Furu Furu Park -FFUJ = Takahashi Meijin no Bouken Jima II -FFXJ = 25th スーパーマリオブラザーズ -FFYJ = RockMan 5: Blues no Wana!? -JA4J = Chou-Makai-Mura -JA5J = Heracles no Eikou III: Kamigami no Chinmoku -JA7J = Actraiser -JADJ = Zelda no Densetsu: Kamigami no Triforce -JAFJ = SimCity -JAGJ = Fire Emblem: Monshou no Nazo -JAHJ = R-Type III: The Third Lightning -JAJJ = Street Fighter II -JAPJ = Fire Emblem: Seisen no Keifu -JAUJ = Famicom Bunko: Hajimari no Mori -JAWJ = San Goku Shi IV -JAZJ = Ganbare Goemon: Yukihime Kyuushutsu Emaki -JB7J = Front Mission: Gun Hazard -JBBJ = Super Street Fighter II: The New Challengers -JBDJ = Super Donkey Kong 2: Dixie & Diddy -JBGJ = Mystery Dungeon: Shiren the Wanderer -JBHJ = Heracles no Eikou IV: Kamigami-kara no Okurimono -JBIJ = Street Fighter II Turbo: Hyper Fighting -JBKJ = Breath of Fire II: Shimei no Ko -JBPJ = Super Donkey Kong 3: Nazo no Krems Shima -JBVJ = Der Langrisser -JBWJ = Assault Suits Valken -JCAJ = DoReMi Fantasy: Milon no DokiDoki Daibouken -JCEJ = Fire Emblem: Thracia 776 -JCGJ = Ganbare Goemon 2: Kiteretsu Shougun Magginesu -JCHJ = Ganbare Goemon 3 -JCIJ = Famicom Tantei Club Part II: Ushiro ni Tatsu Shoujo -JCKJ = Space Invaders: The Original Game -JCMJ = Super Wagyan Land -JCTJ = Densetsu no Ogre Battle: The March of the Black Queen -JCUJ = Tactics Ogre: Let Us Cling Together -JCXJ = Super Nobunaga no Yabou: Zengokuban -JCZJ = Super Aoki Ookami to Shiroki Meshika: Genchou Hishi -JD3J = Super E.D.F. Earth Defense Force -JD5J = Rushing Beat Ran: Fukusei Toshi -JD9J = Chou-Genjin -JDOJ = Heisei Shin Onigashima: Zenpen -JDPJ = Heisei Shin Onigashima: Kouhen -JDQJ = Romancing Sa-Ga 3 -JDTJ = Shin Megami Tensei if... -JDYJ = Rudra no Hihou -JDZJ = Final Fantasy USA: Mystic Quest -JEBJ = RockMan X -JEDJ = Kunio-Kun no Dodge Ball Dayo Zenin Shuugo! -JEFJ = Majin Tensei II: Spiral Nemesis -JEGJ = Gouketuji Ichizoku -JEHJ = RockMan X2 -JEKJ = Kyūyaku Megami Tensei: Megami Tensei I・II -NA3J = Bomberman Hero -NACJ = Zelda no Densetsu: Toki no Ocarina -NAIJ = Wave Race 64: Kawasaki Jet Ski -NAJJ = Tsumi to Batsu -NALJ = Nintendo All-Star Dairantou Smash Brothers -NAOJ = 1080° Snowboarding -NARJ = Zelda no Densetsu: Majora no Kamen -NAYJ = Ogre Battle 64: Person of Lordly Caliber -LAEJ = Alex Kidd in Miracle World -LAGJ = Sonic the Hedgehog -LAJJ = Sonic the Hedgehog 2 -LAKJ = Super Wonder Boy: Monster World -LALJ = Fantasy Zone II: The Tears of Opa-Opa -LANJ = Alex Kidd: The Lost Stars -MA3J = Puyo Puyo Tsuu -MA6J = Bare Knuckle II: Shitou no Chinkon Uta -MA7J = Shining and the Darkness -MAAJ = Juuouki -MAEJ = Golden Axe -MAHJ = Sonic the Hedgehog -MAKJ = Shadow Dancer: The Secret of Shinobi -MALJ = Bonanza Bros. -MAMJ = Vermilion -MAOJ = Crying: Aseimei Sensou -MAQJ = Bare Knuckle: Ikari no Tekken -MARJ = The Story of Thor: Hikari o Tsugu Mono -MAUJ = Puzzle & Action: Tant-R -MAVJ = Wonder Boy V: Monster World III -MAXJ = Alex Kidd: Tenkuu Mashiro -MB5J = Rangurissah II -MB6J = Shining Force II: Inishie no Fuuin -MB8J = Phantasy Star II: Kaerazaru Toki no Owari ni -MB9J = Pepenga Pengo -MBBJ = Sonic the Hedgehog 2 -MBDJ = Golden Axe II -MBEJ = Shining Force: Kamigami no Isan -MBFJ = The Super Soldier II -MBHJ = Puzzle & Action: Ichidant-R +WVDJ = こども教育テレビWii あいうえ・おーちゃん +WVKJ = バンバン★キッズ +WVOJ = ロックンロールクライマー +WWRJ = エキサイトバイク ワールドレース +WYKJ = 読み聞かせあそびWii +WZHJ = アニマルライフ ~動物ふれあい生活~ +WZJJ = @SIMPLEシリーズ Vol.5 THE 柔道 +WZMJ = @SIMPLEシリーズ Vol.3 THE 麻雀 +WZPJ = ゾンビ イン ワンダーランド +WZZJ = くまなげ ~ピイナの好きな赤いキャンディ パズル編~ +XHCJ = 光と闇の姫君と世界征服の塔 -FINAL FANTASY CHRISTAL CHRONICLES- (Demo) +XHEJ = BIT. TRIP BEAT (Demo) +XHFJ = グーの惑星 (Demo) +XHHJ = ポケモン不思議のダンジョン めざせ!光の冒険団 (Demo) +XHJJ = すりぬけアナトウス (Demo) +XIEJ = チキンバトル!チクチクブーン (Demo) +FA2J = エクセリオン +FA3J = フォーメーションZ +FA4J = デビルワールド +FA5J = ファイアーエムブレム 暗黒竜と光の剣 +FA6J = ドンキーコングJR.の算数遊び +FA7J = ヨッシーのたまご +FA8J = 星のカービィ 夢の泉の物語 +FA9J = リンクの冒険 +FAAJ = ドンキーコング +FABJ = ドンキーコングJR. +FACJ = ピンボール +FADJ = 五目ならべ 連珠 +FAFJ = マリオブラザーズ +FAGJ = スーパーマリオブラザーズ +FAHJ = テニス +FAIJ = サッカー +FAJJ = アイスホッケー +FAKJ = ゼルダの伝説 +FALJ = ベースボール +FAMJ = ワリオの森 +FANJ = アーバンチャンピオン +FAOJ = ソロモンの鍵 (FC版) +FAPJ = マリオオープンゴルフ +FAQJ = 忍者じゃじゃ丸くん +FARJ = グラディウス +FASJ = ゼビウス (FC版) +FATJ = 影の伝説 +FAVJ = テクモボウル +FAWJ = エレベーターアクション +FAXJ = パックマン +FAYJ = いっき (FC版) +FAZJ = フィールドコンバット +FB2J = スーパーマリオブラザーズ 2 +FB3J = ワルキューレの冒険 時の鍵伝説 +FB4J = ルナーボール +FB5J = ザナック +FB6J = フロントライン +FB7J = ナッツ&ミルク +FB8J = チャレンジャー +FB9J = プーヤン +FBAJ = スマッシュピンポン +FBBJ = マッハライダー +FBCJ = エキサイトバイク +FBDJ = 光神話 パルテナの鏡 +FBEJ = アイスクライマー +FBHJ = 悪魔城ドラキュラ (FC版) +FBIJ = パンチアウト!! +FBJJ = マイティボンジャック +FBKJ = 激亀忍者伝 +FBLJ = ロードランナー +FBNJ = 忍者龍剣伝 (FC版) +FBOJ = グラディウスⅡ -GOFERの野望- (FC版) +FBQJ = ドルアーガの塔 (FC版) +FBRJ = ギャラガ (FC版) +FBSJ = 迷宮組曲 ミロンの大冒険 +FBUJ = アドベンチャーズ オブ ロロ +FBVJ = つっぱり大相撲 +FBWJ = ジョイメカファイト +FBXJ = ファミコンウォーズ +FBYJ = スーパーマリオUSA +FBZJ = メトロイド +FC2J = 半熟英雄 +FC3J = バブルボブル +FC4J = チャックンポップ +FC5J = がんばれゴエモン! からくり道中 +FC6J = スタートロピクス +FC7J = プレイアクションフットボール +FC8J = ドラキュラII 呪いの封印 +FC9J = メタルスレイダーグローリー +FCAJ = スターソルジャー +FCEJ = エスパードリーム +FCFJ = イー・アル・カンフー +FCGJ = ツインビー +FCHJ = フラッピー +FCIJ = ヴォルガードⅡ +FCJJ = SDガンダムワールド ガチャポン戦士2 カプセル戦記 +FCNJ = けっきょく南極大冒険 +FCOJ = バトルシティー +FCPJ = バルーンファイト +FCQJ = 忍者龍剣伝Ⅱ 暗黒の邪心剣 +FCRJ = 高橋名人の冒険島 +FCSJ = スーパー魂斗羅 +FCTJ = ロックマン +FCUJ = バレーボール +FCVJ = レッキングクルー +FCWJ = スーパーマリオブラザーズ 3 +FCYJ = ヨッシーのクッキー +FCZJ = キングスナイト +FD2J = ダブルドラゴン +FD3J = 熱血高校ドッジボール部 サッカー編 +FD7J = ロックマン 3 -Dr.ワイリーの最期!?- +FDAJ = スペランカー +FDBJ = ふぁみこんむかし話 新・鬼ヶ島 (前後編) +FDCJ = スターラスター +FDEJ = マッピー (FC版) +FDFJ = 燃えろ!! プロ野球 +FDGJ = 魔界村 (FC版) +FDIJ = ボコスカウォーズ +FDLJ = 忍者龍剣伝Ⅲ 黄泉の方船 +FDNJ = ロックマン 2 -Dr.ワイリーの謎- +FDOJ = オペレーションウルフ +FDSJ = ファミコン探偵倶楽部 消えた後継者 (前後編) +FDTJ = 熱血硬派くにおくん (FC版) +FDUJ = 熱血高校ドッジボール部 +FDVJ = ダウンタウン熱血物語 +FDWJ = ダウンタウンスペシャル くにおくんの時代劇だよ全員集合! +FDXJ = ファミコン探偵倶楽部PARTⅡ うしろに立つ少女 (前後編) +FDYJ = ファイアーエムブレム外伝 +FDZJ = ダウンタウン熱血行進曲 それゆけ大運動会 +FE5J = かんしゃく玉なげカン太郎の東海道五十三次 +FE6J = 忍者くん 魔城の冒険 +FE7J = 忍者くん 阿修羅の章 +FE8J = たけしの挑戦状 +FE9J = いけいけ!熱血ホッケー部「すべってころんで大乱闘」 +FECJ = スカイキッド (FC版) +FEDJ = ディグダグ (FC版) +FEEJ = 探偵神宮寺三郎 新宿中央公園殺人事件 +FEFJ = 探偵神宮寺三郎 横浜港連続殺人事件 +FEGJ = 探偵神宮寺三郎 危険な二人 (前後編) +FEHJ = 探偵神宮寺三郎 時の過ぎゆくままに… +FEIJ = シティコネクション +FEJJ = 謎の村雨城 +FELJ = トランスフォーマー コンボイの謎 +FEMJ = バイオミラクル ぼくってウパ +FENJ = 沙羅曼蛇 (FC版) +FEOJ = ZOIDS 黙示録 +FEPJ = 月風魔伝 +FEQJ = 悪魔城伝説 +FERJ = ゾーダズリベンジ スタートロピクスⅡ +FESJ = クルクルランド +FEUJ = ドンキーコング3 +FEVJ = アトランチスの謎 +FEWJ = ドラゴンバスター (FC版) +FEXJ = ワギャンランド +FF2J = すごろクエスト ダイスの戦士たち +FF4J = バーガータイム +FF5J = ダブルドラゴンⅡ The Revenge +FF6J = がんばれゴエモン2 +FF7J = がんばれゴエモン外伝 きえた黄金キセル +FFAJ = FINAL FANTASY +FFBJ = FINAL FANTASY Ⅱ +FFDJ = びっくり熱血新記録! はるかなる金メダル +FFFJ = FINAL FANTASY Ⅲ +FFGJ = SDガンダムワールド ガチャポン戦士 スクランブルウォーズ +FFJJ = メタルマックス +FFKJ = チャンピオンシップ・ロードランナー +FFLJ = サラダの国のトマト姫 +FFMJ = 超惑星戦記 メタファイト +FFNJ = ロックマン 4 -新たなる野望!!- +FFOJ = もえろツインビー シナモン博士を救え! +FFPJ = へべれけ +FFRJ = ファザナドゥ +FFTJ = バイナリィランド +FFUJ = 高橋名人の冒険島Ⅱ +FFXJ = スーパーマリオブラザーズ 25周年Ver. +FFYJ = ロックマン 5 -ブルースの罠!?- +FFZJ = セクロス +JA2J = 真・女神転生 +JA3J = かまいたちの夜 +JA4J = 超魔界村 +JA5J = ヘラクレスの栄光Ⅲ 神々の沈黙 +JA7J = アクトレイザー +JA8J = ファイナルファイト +JAAJ = スーパーマリオワールド +JABJ = マリオのスーパーピクロス +JACJ = F-ZERO +JADJ = ゼルダの伝説 ~神々のトライフォース~ +JAEJ = スーパードンキーコング +JAFJ = シムシティー +JAGJ = ファイアーエムブレム 紋章の謎 +JAHJ = R-TYPE Ⅲ -THE THIRD LIGHTNING- +JAIJ = 悪魔城ドラキュラ (SFC版) +JAJJ = STREET FIGHTER Ⅱ -The World Warrior- +JALJ = 魂斗羅スピリッツ +JAMJ = グラディウスⅢ +JAPJ = ファイアーエムブレム 聖戦の系譜 +JAUJ = ファミコン文庫 はじまりの森 +JAVJ = スーパーメトロイド +JAWJ = 三國志Ⅳ +JAZJ = がんばれゴエモン ~ゆき姫救出絵巻~ +JB3J = 牧場物語 +JB5J = すーぱーぐっすんおよよ +JB6J = トレジャーハンターG +JB7J = フロントミッション ガンハザード +JB9J = 学校であった怖い話 +JBAJ = ミリティア +JBBJ = SUPER STREET FIGHTER Ⅱ -The New Challengers- +JBCJ = カービィボウル +JBDJ = スーパードンキーコング2 ディクシー&ディディー +JBEJ = マジカルドロップ +JBFJ = 弟切草 +JBGJ = 不思議のダンジョン2 風来のシレン +JBHJ = ヘラクレスの栄光Ⅳ 神々からの贈り物 +JBIJ = STREET FIGHTER Ⅱ Turbo -HYPER FIGHTING- +JBKJ = ブレス オブ ファイアⅡ 使命の子 +JBLJ = コスモギャング ザ パズル (SFC版) +JBNJ = ダライアス ツイン +JBOJ = パネルでポン +JBPJ = スーパードンキーコング3 謎のクレミス島 +JBQJ = カービィズアバランチ +JBRJ = ラスベガスドリーム +JBSJ = アクスレイ +JBTJ = スーパータリカン +JBUJ = スーパータリカン 2 +JBVJ = デア ラングリッサー +JBWJ = 重装機兵ヴァルケン +JBYJ = SUPER R-TYPE +JC2J = 太閤立志伝 +JC3J = バハムートラグーン +JC4J = インディー・ジョーンズ Greatest Adventure +JC5J = ロマンシング Sa・Ga +JC6J = ロマンシング Sa・Ga 2 +JC7J = コンバットライブス +JC8J = FINAL FANATSY Ⅳ +JC9J = FINAL FANTASYⅤ +JCAJ = ドレミファンタジー ~ミロンのドキドキ大冒険~ +JCBJ = スーパーマリオRPG +JCCJ = 星のカービィ スーパーデラックス +JCDJ = 星のカービィ 3 +JCEJ = ファイアーエムブレム トラキア776 +JCGJ = がんばれゴエモン2 奇天烈将軍マッギネス +JCHJ = がんばれゴエモン3 獅子重禄兵衛のからくり卍固め +JCIJ = ファミコン探偵倶楽部PARTⅡ うしろに立つ少女 (SFC版) +JCJJ = スーパーパンチアウト!! +JCKJ = SPACE INVADERS The Original Game (SFC版) +JCLJ = 聖剣伝説2 シークレット オブ マナ +JCMJ = スーパーワギャンランド +JCNJ = プリンス オブ ペルシャ +JCTJ = 伝説のオウガバトル +JCUJ = タクティクスオウガ +JCVJ = パイロットウイングス +JCWJ = スーパーマリオカート +JCXJ = スーパー信長の野望・全国版 +JCYJ = 大航海時代Ⅱ +JCZJ = スーパー蒼き狼と白き牝鹿 元朝秘史 +JD2J = 美少女雀士 スーチーパイ +JD3J = SUPER E.D.F. EARTH DEFENSE FORCE +JD5J = ラッシング・ビート 乱 複製都市 +JD6J = ファイヤー・ファイティング +JD7J = 高橋名人の大冒険島 +JD8J = 高橋名人の大冒険島Ⅱ +JD9J = 超原人 +JDAJ = FINAL FANTASY Ⅵ +JDCJ = STREET FIGHTER ZERO2 +JDDJ = ファイナルファイト 2 +JDEJ = ファイナルファイト Tough +JDFJ = すってはっくん +JDHJ = スーパーファミコンウォーズ +JDIJ = スーパースター・ウォーズ +JDJJ = スーパースター・ウォーズ -帝国の逆襲- +JDKJ = メタルマックス 2 +JDLJ = スーパースター・ウォーズ -ジェダイの復讐- +JDMJ = カービィのきらきらきっず +JDNJ = グールパトロール +JDOJ = 平成 新・鬼ヶ島 (前編) +JDPJ = 平成 新・鬼ヶ島 (後編) +JDQJ = ロマンシング Sa・Ga 3 +JDRJ = クロックタワー +JDSJ = 真・女神転生Ⅱ +JDTJ = 真・女神転生 if... +JDUJ = アルバートオデッセイ +JDVJ = ワイルドガンズ +JDWJ = エアロ The Acrobat +JDXJ = エアロ The Acrobat 2 +JDYJ = ルドラの秘宝 +JDZJ = FINAL FANTASY USA MYSTIC QUEST +JEAJ = ナツメ チャンピンシップレスリング +JEBJ = ロックマンX +JECJ = クロノ・トリガー +JEDJ = くにおくんのドッジボールだよ全員集合! +JEEJ = 魔神転生 +JEFJ = 魔神転生Ⅱ SPIRAL NEMESIS +JEGJ = 豪血寺一族 +JEHJ = ロックマンX2 +JEIJ = メタルマックス リターンズ +JEJJ = 晦 - つきこもり +JEKJ = 旧約・女神転生 女神転生I・II +NA3J = ボンバーマンヒーロー ミリアン王女を救え! +NAAJ = スーパーマリオ64 +NABJ = マリオカート64 +NACJ = ゼルダの伝説 時のオカリナ +NADJ = スターフォックス64 +NAEJ = マリオストーリー +NAFJ = F-ZERO X +NAGJ = エアロゲイジ +NAHJ = ヨッシーストーリー +NAIJ = ウェーブレース64 +NAJJ = 罪と罰 ~地球の継承者~ +NAKJ = ポケモンスナップ +NALJ = ニンテンドウオールスター!大乱闘スマッシュブラザーズ +NAMJ = 星のカービィ64 +NANJ = ポケモンパズルリーグ +NAOJ = 1080° SNOW BOARDING +NAPJ = カスタムロボ V2 +NARJ = ゼルダの伝説 ムジュラの仮面 +NASJ = クルージンUSA +NATJ = マリオテニス64 +NAUJ = マリオゴルフ64 +NAYJ = オウガバトル64 Person of Lordly Caliber +NAZJ = マリオパーティ 2 +LAAJ = 北斗の拳 +LABJ = FANTASY ZONE +LACJ = スーパーワンダーボーイ +LADJ = PHANTASY STAR +LAEJ = アレックスキッドのミラクルワールド +LAFJ = 阿修羅 +LAGJ = ソニック・ザ・ヘッジホッグ (MS版) +LAHJ = スペースハリアー (MS版) +LAIJ = エンデューロレーサー +LAJJ = ソニック・ザ・ヘッジホッグ 2 (MS版) +LAKJ = スーパーワンダーボーイ モンスターワールド +LALJ = FANTASY ZONEⅡ オパオパの涙 +LAMJ = SONIC CHAOS (ソニック&テイルス) +LANJ = アレックスキッド ザ・ロストスターズ +LAOJ = R-TYPE +MA2J = ダイナブラザーズ +MA3J = ぷよぷよ通 (MD版) +MA4J = バハムート戦記 +MA5J = レンタヒーロー +MA6J = ベア・ナックルⅡ 死闘への鎮魂歌 +MA7J = シャイニング&ザ・ダクネス +MA8J = エコー・ザ・ドルフィン 2 +MA9J = ハイブリッド・フロント +MAAJ = 獣王記 (MD版) +MABJ = コラムス +MACJ = ぷよぷよ (MD版) +MADJ = エコー・ザ・ドルフィン +MAEJ = ゴールデンアックス (MD版) +MAFJ = ガンスターヒーローズ +MAGJ = リスター・ザ・シューティングスター +MAHJ = ソニック・ザ・ヘッジホッグ +MAIJ = スペースハリアーⅡ +MAJJ = トージャム&アール +MAKJ = シャドー・ダンサー +MALJ = ボナンザブラザーズ +MAMJ = ヴァーミリオン +MANJ = ゲイングランド +MAOJ = クライング 亜生命戦争 +MAPJ = コミックスゾーン +MAQJ = ベア・ナックル 怒りの鉄拳 +MARJ = ストーリー・オブ・トア 光を継ぐ者 +MASJ = ベクターマン +MATJ = ソニックスピンボール +MAUJ = タントアール +MAVJ = ワンダーボーイⅤ モンスターワールドⅢ +MAWJ = バーチャファイター 2 +MAXJ = アレックスキッド 天空魔城 +MAYJ = エイリアンストーム +MB2J = ラングリッサー +MB3J = モンスターワールドⅣ +MB4J = パーティクイズ MEGA Q +MB5J = ラングリッサーⅡ +MB6J = シャイニング・フォースⅡ 古えの封印 +MB8J = PHANTASY STAR Ⅱ 還帰らざる時の終わりに +MB9J = ぺぺんがペンゴ +MBAJ = パルスマン +MBBJ = ソニック・ザ・ヘッジホッグ 2 +MBCJ = カメレオン キッド +MBDJ = ゴールデンアックスⅡ +MBEJ = シャイニング・フォース ~神々の遺産~ +MBFJ = ザ・スーパー忍Ⅱ +MBGJ = ダイナマイトヘッディー +MBHJ = イチダントアール MBIJ = ランドストーカー 皇帝の財宝 -MBJJ = Dai Makai-Mura -MBLJ = ESWAT: Cyber Police -MBMJ = Sonic the Hedgehog 3 -MBOJ = Golden Axe III -MBQJ = Bare Knuckle III -MBVJ = Jusu Kihei Leynos -MBWJ = Columns III: Taiketsu! Columns World -MC3J = Super Street Fighter 2: The New Challengers -MCCJ = Toki no Keishousha: Phantasy Star III -MCFJ = フェリオス(メガドライブ版) -MCHJ = Musha Aleste -MCJJ = Splatterhouse Part 2 -MCKJ = Phantasy Star: Sennenki no Owari ni -MCLJ = Street Fighter II' Plus: Champion Edition -MCMJ = Lord Monarch: Tokoton Sentou Densetsu -MCNJ = Hokuto no Ken: Shin Seikimatu Kyuseisyu Densetsu -MCRJ = Senjou no Ookami II -MCSJ = Wonder Boy III: Monster Lair -MCUJ = Dragon Slayer: The Legend of Heroes -MCVJ = Pitfall: The Mayan Adventure -PA2J = Nekketsu Koukou Dodgeball Bu: CD Soccer Hen -PA6J = Narazumono Sentou Butai: Bloody Wolf -PABJ = PC Genjin -PADJ = R-Type I -PAFJ = Victory Run: Eikou no 13,000KM -PAJJ = Joshoken Necromancer -PAMJ = Neutopia: Frey no Shou -PARJ = Detana TwinBee -PATJ = Kiki Kaikai -PAUJ = Kaizou Chounin Shubibinman -PBFJ = Fire ProWrestling: Combination Tag -PBHJ = PC Genjin 2 -PBIJ = PC Genjin 3 -PBJJ = Genpei Toumaden: Kannoni -PBNJ = Saigou no Nindou: Ninja Spirit -PBUJ = Chouzetsu Rinjin Bravoman -PBWJ = PC Denjin: Punkic Cyborgs -PBXJ = Kaizou Chounin Shubibinman 2: Atanaru Teki -PC4J = Space Invaders: Fukkatsu no Hi -PCBJ = Dead Moon: Tsuki Sekai no Akumu -PCMC = Gokuraku! Chuuka Taisen -PCSJ = Digital Champ: Battle Boxing -PDAJ = 熱血高校ドッジボール部® PC番外編 -PDEJ = S.C.I.: Special Criminal Investigation -PDGJ = Fire ProWrestling 3: Legend Bout -PDIJ = チャンピオンレスラー® -PDJJ = Street Fighter II': Champion Edition -QA2J = Nekketsu Koukou Dodge Ball-Bu: CD Soccer-hen -QA4J = Super Darius II -QA5J = Space Invaders: The Original Game -QA7J = Legend of Xanadu: Kaze no Densetsu Xanadu -QA9J = Kaze no Densetsu: Xanadu II -QAAJ = CD Denjin: Rockabilly Tengoku -QABJ = Ys I + II -QADJ = Gradius II: Gofer no Yabou -QAEJ = A.III: A-Ressha de Ikou III -QAFJ = Chou Eiyuu Densetsu: Dynastic Hero -QAKJ = Ai Chou Aniki -QALJ = The Atlas: Renaissance Voyager -QAPJ = Akumajou Dracula X: Chi no Rondo -QAQJ = Dragon Slayer: Eiyuu Densetsu -QAUJ = Wonder Boy III: Monster Lair -QAVJ = Bomberman: Panic Bomber -QAZJ = Eikan wa Kimi ni: Kōkō Yakyū Zenkoku Taikai -QBAJ = L Dis -EA3J = Galaxy Fight: Universal Warriors -EA4J = Samurai Spirits Kibeniro Musouken -EA5J = Garou Densetsu 3: Road to the Final Victory -EA7J = Samurai Spirits: Amakusa Kourin -EA8J = Ironclad: Chotetsu Brikinger -EAAJ = Garou Densetsu: Shukumei no Takatai -EAEJ = Shin Samurai Spirits: Haohmaru Jigokuhen -EAIJ = Top Hunter -EANJ = Garou Densetsu 2: Aratanaru Tatakai -EASJ = Shin Samurai Spirits Haoumaru Jigokuhen -EAYJ = King of The Monsters 2 -EB4J = ASO II: Last Guardian -EB5J = The Last Blade -EBNJ = Fu'un Mokushiroku: Kakutou Sousei -EBSJ = Art of Fighting: Ryuuko no Ken Gaiden -ECAJ = Real Bout Garou Densetsu 2: The Newcomers -ECDJ = Stakes Winner: G1 Kanzen Seihahe no Michi -ECEJ = Bakumatsu Rouman Dai Ni Maku: Gekka no Kenshi -ECGJ = Shock Troopers: 2nd Squad -ECHJ = The King of Fighters '98: Dream Match Never Ends -ECMJ = Tokuten Oh: Honoo no Libero -E55J = Senji no Ookami -E56J = Exed Eyes -E5VJ = Renegade -E6JJ = Bakutotsu Kijuutei: BaRaDuKe II -E6LJ = Marchen Maze -E6NJ = Solomon no Kagi -E6OJ = Bomb Jack Arcade -E6PJ = Ninja Ryukenden Arcade -E6QJ = Argos no Senshi -E6XJ = 獣王記(アーケード版) -E72J = Starblade -E74J = Cosmo Gang the Puzzle -E77J = The Return of Ishtar -E7LJ = Cosmo Gang the Video -E7XJ = Youkai Douchuki -C9SP = 불가능한 임무 II -XADJ = Yie Ar Kung-Fu 2 -XAHJ = Penguin Adventure: Yume Tairiku Adventure -XAKJ = Parodius - Tako wa Chikyuu wo Sukuu -XAMJ = Knightmare: Majou Densetsu -XAOJ = Gofer no Yabou: Episode II -XAPJ = Metal Gear 2: Solid Snake +MBJJ = 大魔界村 (MD版) +MBKJ = クラックダウン +MBLJ = ESWAT:サイバーポリス +MBMJ = ソニック・ザ・ヘッジホッグ 3 +MBNJ = チェルノブ +MBOJ = ゴールデンアックスⅢ +MBPJ = スーパーサンダーブレード +MBQJ = ベア・ナックルⅢ +MBRJ = ローリングサンダー 2 (MD版) +MBSJ = ダイナブラザーズ2 スペシャル +MBTJ = エイリアンソルジャー +MBUJ = ソニック3Dブラスト +MBVJ = 重装機兵レイノス +MBWJ = コラムスⅢ 対決!コラムスワールド +MBXJ = エコーJr. +MBYJ = ライトクルセイダー +MBZJ = エターナルチャンピオンズ +MC2J = アースワームジム 2 +MC3J = SUPER STREET FIGHTER Ⅱ -The New Challengers- (MD版) +MC4J = ストライダー飛竜 +MCAJ = グレイランサー +MCBJ = レッスルボール +MCCJ = 時の継承者 PHANTASY STAR Ⅲ +MCDJ = ソニック&ナックルズ +MCEJ = SUPER FANTASY ZONE +MCFJ = フェリオス (MD版) +MCGJ = FORGOTTEN WORLDS +MCHJ = 武者アレスタ +MCIJ = ジノーグ +MCJJ = スプラッターハウス PART2 +MCKJ = PHANTASY STAR ~千年紀の終りに~ +MCLJ = STREET FIGHTER Ⅱ' Plus -Champion Edition- (MD版) +MCMJ = ロードモナーク とことん戦闘伝説 +MCNJ = 北斗の拳 新世紀末救世主伝説 +MCOJ = ソーサリアン +MCPJ = アースワームジム +MCRJ = 戦場の狼Ⅱ +MCSJ = ワンダーボーイⅢ モンスターレア (MD版) +MCUJ = ドラゴンスレイヤー 英雄伝説 (MD版) +MCWJ = ギャラクシーフォースⅡ +MCXJ = ドラゴンスレイヤー 英雄伝説Ⅱ (MD版) +MCYJ = ザ・スーパー忍 +PA2J = 妖怪道中記 (PCE版) +PA3J = 沙羅曼蛇 (PCE版) +PA4J = パラソルスター +PA6J = ならず者戦闘部隊 ブラッディウルフ +PA7J = エイリアンクラッシュ +PA8J = オーダイン (PCE版) +PA9J = スプラッターハウス (PCE版) +PABJ = PC原人 +PACJ = ダンジョンエクスプローラー +PADJ = R-TYPE Ⅰ (PCE版) +PAEJ = スーパースターソルジャー +PAFJ = ヴィクトリーラン -栄光の13,000キロ- +PAGJ = ボンバーマン'94 +PAHJ = バトルロードランナー +PAIJ = 高橋名人の新冒険島 +PAJJ = 邪聖剣ネクロマンサー +PAKJ = アドベンチャーアイランド +PALJ = ソルジャーブレード +PAMJ = ニュートピア フレイの章 +PANJ = ネクタリス (PCE版) +PAOJ = ファイナルソルジャー +PAPJ = R-TYPE Ⅱ (PCE版) +PAQJ = グラディウス (PCE版) +PARJ = でたな!! ツインビー +PASJ = カダッシュ +PATJ = 奇々怪々 +PAUJ = 改造町人シュビビンマン +PAVJ = ビジランテ +PAWJ = ギャラガ '88 (PCE版) +PAYJ = ワルキューレの伝説 (PCE版) +PAZJ = 源平討魔伝 (PCE版) +PB2J = ニュートピアⅡ +PB3J = デビルクラッシュ +PB5J = 忍者龍剣伝 (PCE版) +PB7J = 戦国麻雀 +PB8J = ブレイジングレーザ-ズ +PB9J = パワースポーツ +PBAJ = ドラゴンスピリット (PCE版) +PBCJ = ワンダーモモ (PCE版) +PBDJ = ダブルダンジョン +PBEJ = モトローダー +PBFJ = ファイヤープロレスリング コンビネーションタッグ +PBHJ = PC原人 2 +PBIJ = PC原人 3 +PBJJ = 源平討魔伝 巻ノ弐 +PBMJ = レジェンド・オブ・ヒーロー・トンマ +PBNJ = 最後の忍道 -NINJA SPIRIT- +PBSJ = BE BALL +PBTJ = THE 功夫 +PBUJ = 超絶倫人ベラボーマン (PCE版) +PBVJ = 弁慶外伝 +PBWJ = PC電人 +PBXJ = 改造町人シュビビンマン2 -新たなる敵- +PBYJ = アウトライブ +PC2J = CHASE H.Q. +PC3J = ダライアス プラス +PC4J = スペースインベーダーズ 復活の日 +PC5J = ドラゴンセイバー (PCE版) +PC6J = ファイナルブラスター +PC7J = ミズバク大冒険 +PC8J = ニンジャウォーリアーズ +PC9J = ニュージーランドストーリ +PCAJ = サイレントデバッガーズ +PCBJ = デッドムーン 月世界の悪夢 +PCCJ = 魔界八犬伝 SHADA +PCDJ = あっぱれ!ゲートボール +PCEJ = パワーゴルフ +PCHJ = ドロップロックほらホラ +PCJJ = オーバーライド +PCKJ = ガイフレーム +PCMC = 極楽! 中華大戦 +PCMJ = Mr.HELIの大冒険 +PCNJ = ウィニングショット +PCOJ = パラノイア +PCPJ = パワーイレブン +PCQJ = サイコチェイサー +PCRJ = ブレイクイン +PCSJ = デジタルチャンプ バトルボクシング +PCTJ = パワーテニス +PCUJ = ファイヤープロレスリング2nd Bout +PCWJ = イメージファイト +PCXJ = パワーリーグⅣ +PCYJ = うさぎの国のカンガルーレース ワラビー!! +PDAJ = 熱血高校ドッジボール部 PC番外編 +PDCJ = 大魔界村 (PCE版) +PDDJ = ヴォルフィード +PDEJ = S.C.I. Special Criminal Investigation +PDFJ = 地獄めぐり +PDGJ = ファイヤープロレスリング3 レジェンドバウト +PDHJ = ラスタンサーガⅡ +PDIJ = チャンピオンレスラー +PDJJ = STREET FIGHTER Ⅱ' -Champion Edition- (PCE版) +QA2J = 熱血高校ドッジボール部 CDサッカー編 +QA3J = シムアース +QA4J = スーパーダライアスⅡ +QA5J = SPACE INVADERS The Original Game (PCE版) +QA6J = スーパーダライアス +QA7J = 風の伝説ザナドゥ +QA8J = スプリガン mark2 +QA9J = 風の伝説ザナドゥⅡ +QAAJ = CD電人 ロカビリー天国 +QABJ = Ys Ⅰ・Ⅱ +QACJ = 超兄貴 +QADJ = グラディウスⅡ -GOFERの野望- +QAEJ = A.Ⅲ. A列車で行こうⅢ +QAFJ = 超英雄伝説 ダイナスティックヒーロー +QAGJ = ゲート オブ サンダー +QAHJ = 川のぬし釣り 自然派 +QAJJ = イメージファイトⅡ +QAKJ = 愛・超兄貴 +QALJ = アトラス Renaissance Voyager +QANJ = ネオ・ネクタリス +QAOJ = ダンジョンエクスプローラーⅡ +QAPJ = 悪魔城ドラキュラX 血の輪廻 +QAQJ = ドラゴンスレイヤー 英雄伝説 (PCE版) +QARJ = ブラッドギア +QASJ = ウインズ オブ サンダー +QATJ = 狼的紋章 -クレスト オブ ウルフ- +QAUJ = ワンダーボーイⅢ モンスターレア (PCE版) +QAVJ = ボンバーマン ぱにっくボンバー +QAWJ = スターパロジャー +QAXJ = マーシャルチャンピオン +QAYJ = 精霊戦士スプリガン +QAZJ = 栄冠は君に 高校野球全国大会 +QBAJ = L-Dis -エルディス- +QBBJ = FIGHTING STREET +EA2J = メタルスラッグ 2 +EA3J = ギャラクシーファイト ユニバーサル・ウォーリアーズ +EA4J = サムライスピリッツ 斬紅郎無双剣 +EA5J = 餓狼伝説3 遥かなる闘い +EA6J = ザ・キング・オブ・ファイターズ '96 +EA7J = サムライスピリッツ 天草降臨 +EA8J = 超鉄ブリキンガー +EA9J = わくわく7 +EAAJ = 餓狼伝説 宿命の闘い +EABJ = ワールドヒーローズ +EACJ = マジシャンロード +EADJ = 龍虎の拳 +EAEJ = サムライスピリッツ +EAFJ = ラギ +EAGJ = ザ・キング・オブ・ファイターズ '94 +EAHJ = ベースボールスターズ 2 +EAIJ = トップハンター ~ロディー&キャシー~ +EAJJ = メタルスラッグ +EAKJ = バーニングファイト +EALJ = 龍虎の拳 2 +EAMJ = ニンジャコンバット +EANJ = 餓狼伝説2 ~新たなる闘い~ +EAOJ = キング・オブ・ザ・モンスターズ +EAPJ = ニンジャコマンドー +EAQJ = ワールドヒーローズ2 +EARJ = NEO TURF MASTERS +EASJ = 真サムライスピリッツ 覇王丸地獄変 +EATJ = ワールドヒーローズ2 JET +EAUJ = ティンクルスタースプライツ +EAVJ = ザ・キング・オブ・ファイターズ '95 +EAWJ = 餓狼伝説 SPECIAL +EAYJ = キング・オブ・ザ・モンスターズ 2 +EAZJ = ワールドヒーローズパ-フェクト +EB2J = リアルバウト餓狼伝説 SPECIAL +EB3J = サッカーブロウル +EB4J = ASO Ⅱ 〜ラストガーディアン +EB5J = 幕末浪漫 月華の剣士 +EB6J = メタルスラッグ 3 +EB7J = ザ・スーパースパイ +EB8J = ショックトルーパーズ +EB9J = パルスター +EBAJ = マジカルドロップ 2 +EBBJ = ファイターズヒストリー ダイナマイト +EBCJ = フライングパワーディスク +EBDJ = マジカルドロップ 3 +EBEJ = ダンクドリーム +EBFJ = ミラクルアドベンチャー +EBGJ = ザ・キング・オブ・ファイターズ '97 +EBKJ = ラストリゾート +EBLJ = 痛快GANGAN行進曲 +EBMJ = ファイヤー・スープレックス +EBNJ = 風雲黙示録 ~格闘創世~ +EBOJ = 風雲スーパータッグバトル +EBPJ = リーグボウリング +EBQJ = NINJA MASTER'S ~覇王忍法帖~ +EBRJ = ジョイジョイキッド +EBSJ = ART OF FIGHTING 龍虎の拳 外伝 +EBTJ = クロスソード +EBUJ = スーパーベースボール 2020 +EBVJ = 神凰拳 +EBWJ = 戦国伝承 +EBXJ = 戦国伝承 2 +EBZJ = リアルバウト餓狼伝説 +ECAJ = リアルバウト餓狼伝説2 ~THE NEWCOMERS~ +ECCJ = メタルスラッグ X +ECDJ = ステークスウィナー +ECEJ = 幕末浪漫第二幕 月華の剣士 ~月に咲く華、散りゆく花 +ECFJ = ブレイジングスター +ECGJ = ショックトルーパーズ セカンドスカッド +ECHJ = ザ・キング・オブ・ファイターズ '98 +ECIJ = メタルスラッグ 4 +ECJJ = ザ・キング・オブ・ファイターズ '99 +ECLJ = ステークスウィナー 2 +ECMJ = 得点王 炎のリベロ +ECNJ = 戦国伝承 2001 +E53J = ブラックドラゴン +E54J = 魔界村 (AC版) +E55J = 戦場の狼 +E56J = エグゼドエグゼス +E57J = ソンソン +E58J = Mr. Do! +E59J = 空手道 +E5AJ = いっき (AC版) +E5BJ = 上海 (AC版) +E5VJ = 熱血硬派くにおくん (AC版) +E5WJ = ワンダーボーイ モンスターランド +E5XJ = ぷよぷよ通 (AC版) +E5YJ = ぷよぷよ (AC版) +E5ZJ = スーパーハングオン +E62J = スペースハリアー (AC版) +E63J = SHINOBI 忍 +E64J = ローリングサンダー 2 (AC版) +E65J = ワルキューレの伝説 (AC版) +E66J = オーダイン (AC版) +E67J = ディグダグ (AC版) +E68J = ギャラガ (AC版) +E69J = バラデューク +E6AJ = ムーンクレスタ +E6BJ = クレイジークライマー +E6CJ = ロンパーズ +E6DJ = トイポップ +E6EJ = リブルラブル +E6FJ = ギャラクシアン +E6GJ = ナムコクエスター +E6HJ = フェイスオフ +E6IJ = タンクフォース +E6JJ = 爆突機銃艇 BARADUKE Ⅱ +E6KJ = 超絶倫人ベラボーマン (AC版) +E6LJ = メルヘンメイズ +E6MJ = テクモボウル +E6NJ = ソロモンの鍵 (AC版) +E6OJ = ボンジャック +E6PJ = 忍者龍剣伝 (AC版) +E6QJ = アルゴスの戦士 +E6SJ = ニューラリーX +E6VJ = ザクソン +E6WJ = ゴールデンアックス (AC版) +E6XJ = 獣王記 (AC版) +E6YJ = SPACE INVADERS +E6ZJ = スターフォース +E72J = スターブレード +E73J = マッピー (AC版) +E74J = コスモギャング ザ パズル (AC版) +E75J = 源平討魔伝 (AC版) +E76J = エメラルディア +E77J = イシターの復活 +E78J = ソルバルウ +E79J = ギャプラス +E7AJ = グロブダー +E7BJ = ディグダグⅡ +E7CJ = ボスコニアン +E7EJ = ドラゴンバスター (AC版) +E7FJ = ドラゴンセイバー (AC版) +E7GJ = ドラゴンスピリット (AC版) +E7HJ = ゼビウス (AC版) +E7IJ = ファイネストアワ- +E7JJ = ナックルヘッズ +E7KJ = パックマニア +E7LJ = コスモギャング ザ ビデオ +E7MJ = フェリオス (AC版) +E7NJ = ローリングサンダー +E7OJ = バーニングフォース +E7PJ = マーベルランド +E7QJ = ギャラガ '88 (AC版) +E7RJ = ワンダーモモ (AC版) +E7SJ = アサルト +E7TJ = ホッピングマッピー +E7UJ = スプラッターハウス (AC版) +E7VJ = サイバースレッド +E7WJ = ニューマンアスレチックス +E7XJ = 妖怪道中記 (AC版) +E7YJ = スカイキッド (AC版) +E7ZJ = ドルアーガの塔 (AC版) +XAAJ = EGGY -エギー- +XABJ = ALESTE -アレスタ- +XADJ = イーガー皇帝の逆襲 イー・アル・カンフー2 +XAEJ = スペースマンボウ +XAFJ = メタルギア +XAGJ = ロードファイター +XAHJ = 夢大陸アドベンチャー +XAIJ = クォース +XAKJ = パロディウス -タコは地球を救う- +XALJ = 魂斗羅 +XAMJ = 魔城伝説 +XANJ = グラディウス 2 +XAOJ = ゴーファーの野望 エピソードⅡ +XAPJ = メタルギア2 ソリッドスネーク +XAQJ = 沙羅曼蛇 (MSX版) HAAA = 写真チヤンネル HABA = Wiiショッピングチャンネル HADE = インターネットチャンネル HADJ = インターネットチャンネル +HAFE = お天気チャンネル HAFJ = お天気チャンネル HAFP = お天気チャンネル HAGA = ニュースチャンネル HAGE = ニュースチャンネル HAGJ = ニュースチャンネル HAGP = ニュースチャンネル +HAJJ = みんなで投票チャンネル +HAJP = みんなで投票チャンネル +HAKJ = 利用規約 +HALJ = リージョンセレクト +HAPJ = Miiコンテストチャンネル HAPP = Miiコンテストチャンネル -HATJ = Nintendo Channel +HATJ = みんなのニンテンドーチャンネル HATP = みんなのニンテンドーチャンネル -HAVJ = Today and Tomorrow Fortune Teller +HAVJ = きょうとあしたの占いラッキーチャンネル HAVP = きょうとあしたの占いラッキーチャンネル HBNJ = テレビの友チャンネル Gガイド for Wii -HC3J = USB乄モリ一修復プ囗グラム -HCAJ = バンブラDXスピーカーチャンネル +HC3J = USB乄モリ一修復プログラム +HCAJ = 大合奏!バンドブラザーズDX 演奏 スピーカーチャンネル +HCBJ = 写真チャンネル1.0 復旧プログラム HCCJ = 住所情報 HCDJ = デジカメプリントチャンネル +HCFJ = Wiiスピークチャンネル HCFP = Wiiスピークチャンネル HCGJ = インターネットにつなぐとできること HCHJ = 出前チャンネル HCIJ = Wiiの間 -HCRE = ゼルダの伝説スカイウォードソード データ修復チャンネル -HCRJ = The Legend of Zelda Skyward Sword Update -HCRP = ゼルダの伝説スカイウォードソード データ修復チャンネル +HCRE = ゼルダの伝説 スカイウォードソード データ修復チャンネル +HCRJ = ゼルダの伝説 スカイウォードソード アップデートチャンネル +HCRP = ゼルダの伝説 スカイウォードソード データ修復チャンネル +HCUJ = Wiiメニュー電子説明書 HCYJ = Wii U本体更新 修復プログラム HFNJ = Wii Fit からだチェックチャンネル +RFNJ = Wii Fitチャンネル +RFPJ = Wii Fit Plusチャンネル +RFPW = Wii Fit Plusチャンネル +RGWJ = ラビッツチャンネル RMCJ = マリオカートチャンネル DSYA = 시스체크 -D29J01 = 月刊任天堂店頭デモ 5月号 -D32J01 = 月刊任天堂店頭デモ 6月号 -D33J01 = 月刊任天堂店頭デモ 7月号 -D34J01 = 月刊任天堂店頭デモ 7月増刊号 -D38J01 = 月刊任天堂店頭デモ 9月号 -D39J01 = 月刊任天堂店頭デモ 10月号 -D42J01 = 月刊任天堂店頭デモ 11月号 +D23J01 = 大乱闘スマッシュブラザーズDX ゲーム大会入賞記念 ムービーディスク +D24J01 = 大乱闘スマッシュブラザーズDX イベント用Disc +D28J01 = 月刊任天堂店頭デモ 2002年04月号 +D29J01 = 月刊任天堂店頭デモ 2002年05月号 +D32J01 = 月刊任天堂店頭デモ 2002年06月号 +D33J01 = 月刊任天堂店頭デモ 2002年07月号 +D34J01 = 月刊任天堂店頭デモ 2002年07月増刊号 +D38J01 = 月刊任天堂店頭デモ 2002年09月号 +D39J01 = 月刊任天堂店頭デモ 2002年10月号 +D42J01 = 月刊任天堂店頭デモ 2002年11月号 D43J01 = ゼルダの伝説 時のオカリナ GC -D44J01 = 月刊任天堂店頭デモ 12月号 -D46J01 = 月刊任天堂店頭デモ 1月号 -D47J01 = 月刊任天堂店頭デモ 2月号 -D48J01 = 月刊任天堂店頭デモ 3月号 -D49J01 = 月刊任天堂店頭デモ 4月号 -D52J01 = 月刊任天堂店頭デモ 5月号 +D44J01 = 月刊任天堂店頭デモ 2002年12月号 +D46J01 = 月刊任天堂店頭デモ 2003年01月号 +D47J01 = 月刊任天堂店頭デモ 2003年02月号 +D48J01 = 月刊任天堂店頭デモ 2003年03月号 +D49J01 = 月刊任天堂店頭デモ 2003年04月号 +D52J01 = 月刊任天堂店頭デモ 2003年05月号 D53J01 = ニンテンドーゲームキューブ ソフトeカタログ2003・春 -D54J01 = 月刊任天堂店頭デモ 6月号 -D59J01 = 月刊任天堂店頭デモ 7月号 -D62J01 = 月刊任天堂店頭デモ 8月号 -D64J01 = 月刊任天堂店頭デモ 10月号 -D65J01 = 月刊任天堂店頭デモ 11月号 -D67J01 = 月刊任天堂店頭デモ 12月号 -D68J01 = 月刊任天堂店頭デモ 1月号 -D73J01 = 月刊任天堂店頭デモ 2月号 -D75J01 = 月刊任天堂店頭デモ 3月号 -D77J01 = 月刊任天堂店頭デモ 4月号 -D78J01 = 月刊任天堂店頭デモ 5月号 -D79J01 = 月刊任天堂店頭デモ 6月号 -D82J01 = 月刊任天堂店頭デモ 7月号 -D84J01 = 月刊任天堂店頭デモ 8月号 -D85J01 = 月刊任天堂店頭デモ 9月号 -D86J01 = 月刊任天堂店頭デモ 10月号 -D87J01 = 月刊任天堂店頭デモ 11月号 -D88J01 = 月刊任天堂店頭デモ 12月号 -D89J01 = クラブニンテンドー オリジナルeカタログ 2004 -D92J01 = 月刊任天堂店頭デモ 2004‐2005年末年始号 -D93J01 = 月刊任天堂店頭デモ 1月号 -D94J01 = 月刊任天堂店頭デモ 2月号 -D97J01 = 月刊任天堂店頭デモ 5月号 -E23J01 = 月刊任天堂店頭デモ 9月号 -E24J01 = 月刊任天堂店頭デモ 10月号 -E25J01 = 月刊任天堂店頭デモ 11月号 -E27J01 = 月刊任天堂店頭デモ 1月号 -E32J01 = 月刊任天堂店頭デモ 4月号 -E34J01 = 月刊任天堂店頭デモ 6月号 -E35J01 = 月刊任天堂店頭デモ 7月号 -E36J01 = 月刊任天堂店頭デモ 8月号 -E37J01 = 月刊任天堂店頭デモ 9月号 +D54J01 = 月刊任天堂店頭デモ 2003年06月号 +D55J01 = ニンテンドーゲームキューブ ソフトeカタログ2003・夏 +D56J01 = ポケモンチャンネル ボーナスディスク +D59J01 = 月刊任天堂店頭デモ 2003年07月号 +D62J01 = 月刊任天堂店頭デモ 2003年08月号 +D64J01 = 月刊任天堂店頭デモ 2003年10月号 +D65J01 = 月刊任天堂店頭デモ 2003年11月号 +D66JAF = バテン・カイトス 終わらない翼と失われた海 -スペシャル体験ディスク- +D67J01 = 月刊任天堂店頭デモ 2003年12月号 +D68J01 = 月刊任天堂店頭デモ 2004年01月号 +D73J01 = 月刊任天堂店頭デモ 2004年02月号 +D75J01 = 月刊任天堂店頭デモ 2004年03月号 +D77J01 = 月刊任天堂店頭デモ 2004年04月号 +D78J01 = 月刊任天堂店頭デモ 2004年05月号 +D79J01 = 月刊任天堂店頭デモ 2004年06月号 +D82J01 = 月刊任天堂店頭デモ 2004年07月号 +D84J01 = 月刊任天堂店頭デモ 2004年08月号 +D85J01 = 月刊任天堂店頭デモ 2004年09月号 +D86J01 = 月刊任天堂店頭デモ 2004年11月号 +D87J01 = 月刊任天堂店頭デモ 2004年11月号 +D88J01 = 月刊任天堂店頭デモ2004年12月号 +D89J01 = クラブニンテンドー オリジナルeカタログ 2004 +D92J01 = 月刊任天堂店頭デモ 2004-2005年末年始号 +D93J01 = 月刊任天堂店頭デモ 2005年01月号 +D94J01 = 月刊任天堂店頭デモ 2005年02月号 +D97J01 = 月刊任天堂店頭デモ 2005年05月号 +DALJ01 = 大乱闘スマッシュブラザーズDX (Demo) +DBIJ08 = バイオハザード Movie (Demo) +DBJJ08 = バイオハザード -特別版- (Demo) +DBZJ08 = バイオハザード 0 トライアルエディション +DGAJB2 = 機動戦士ガンダム -戦士達の軌跡 Special Disc- +DM2J8P = スーパーモンキーボール 2 (Demo) +DPIJ01 = ピクミン (Demo) +DPOJ8P = PHANTSY STAR ONLINE EPISODE Ⅰ&Ⅱ TRIAL EDITON +DPSJ8P = PHANTSY STAR ONLINE EPISODE Ⅲ C.A.R.D. Revolution TRIAL EDITON +DR2JCQ = RuneⅡ コルテンの鍵の秘密 (Demo) +DSWJ13 = スター・ウォーズ ローグ スコードロンⅡ (Demo) +DVJP08 = ビューティフルジョー (Demo) +E23J01 = 月刊任天堂店頭デモ 2005年09月号 +E24J01 = 月刊任天堂店頭デモ 2005年10月号 +E25J01 = 月刊任天堂店頭デモ 2005年11月号 +E27J01 = 月刊任天堂店頭デモ 2006年01月号 +E32J01 = 月刊任天堂店頭デモ 2006年04月号 +E34J01 = 月刊任天堂店頭デモ 2006年06月号 +E35J01 = 月刊任天堂店頭デモ 2006年07月号 +E36J01 = 月刊任天堂店頭デモ 2006年08月号 +E37J01 = 月刊任天堂店頭デモ 2006年09月号 G2DJB2 = デジモンバトルクロニクル -G2GJB2 = 機動戦士ガンダム ガンダムvs.Zガンダム -G2MJ01 = メトロイドプライム2 ダークエコーズ -G2NJ13 = ニード・フォー・スピード アンダーグラウンド2 -G2SJGE = 式神の城II -G2VJ08 = ビューティフル ジョー 2 ブラックフィルムの謎 +G2GJB2 = 機動戦士ガンダム ガンダムvs.Zガンダム +G2MJ01 = メトロイドプライム 2 ダークエコーズ +G2NJ13 = ニード・フォー・スピード アンダーグラウンド 2 +G2SJGE = 式神の城Ⅱ +G2VJ08 = ビューティフルジョー 2 ブラックフィルムの謎 G2XJ8P = ソニックジェムズコレクション G3AJ13 = ロード・オブ・ザ・リング 中つ国第三紀 -G3EJB0 = エクストリームG3 -G3NJDA = NARUTO-ナルト-激闘忍者大戦!3 +G3EJB0 = エクストリームG3 +G3NJDA = NARUTO -ナルト- 激闘忍者大戦!3 G3SJC0 = スーパーパズルボブル オールスターズ -G3TJ8P = ダビつく3 ダービー馬をつくろう! +G3TJ8P = ダビつく3 ダービー馬をつくろう! G3VJ13 = NBAストリートV3 マリオでダンク G4AJ99 = 牧場物語 しあわせの詩 -G4BJ08 = バイオハザード4 +G4BJ08 = バイオハザード 4 G4GJ99 = 牧場物語 ワンダフルライフ forガール -G4NJDA = NARUTO-ナルト-激闘忍者大戦!4 +G4NJDA = NARUTO -ナルト- 激闘忍者大戦!4 G4PJ13 = ザ・シムズ G4QJ01 = スーパーマリオストライカーズ -G4SJ01 = ゼルダの伝説 4つの剣+ +G4SJ01 = ゼルダの伝説 4つの剣+ G4WJ99 = 牧場物語 しあわせの詩 for ワールド G8FJ8P = バーチャファイター サイバージェネレーション G8MJ01 = ペーパーマリオRPG @@ -1028,132 +1602,131 @@ G8MK01 = ペーパーマリオRPG G8OJ18 = ボボボーボ・ボーボボ 脱出!!ハジケ・ロワイヤル G8SJAF = バトルスタジアムD.O.N G8WJ01 = 突撃!!ファミコンウォーズ -G9KJCM = 実況パワフルプロ野球9決定版 +G9KJCM = 実況パワフルプロ野球 9 決定版 G9RJ7D = クラッシュ・バンディクー がっちゃんこワールド -G9SJ8P = ソニック ヒーローズ +G9SJ8P = ソニックヒーローズ G9TJC0 = シャーク・テイル GA3J51 = オールスターベースボール2003 GAAJ08 = ディズニーのミッキー&ミニー トリック&チェイス -GABJB2 = 金色のガッシュベル!! ゴー!ゴー!魔物ファイト!! +GABJB2 = 金色のガッシュベル!! ゴー!ゴー!魔物ファイト!! GAEJ01 = どうぶつの森 e+ GAFJ01 = どうぶつの森+ GALJ01 = 大乱闘スマッシュブラザーズDX -GASJ8P = ソニックアドベンチャー デラックス +GASJ8P = ソニックアドベンチャー DX GAUJ08 = アウトモデリスタ U.S.-tuned GAZJ13 = ハリー・ポッターとアズカバンの囚人 -GB2J18 = ボンバーマンランド2 ゲーム史上最大のテーマパーク +GB2J18 = ボンバーマンランド 2 ゲーム史上最大のテーマパーク GBGJ18 = ボンバーマンジェネレーション GBHJC8 = バトル封神 GBIJ08 = バイオハザード GBMJ28 = バットマン ダークトゥモロー -GBNJC0 = ウォーリアーブレイド ラスタンvsバーバリアン編 +GBNJC0 = ウォーリアーブレイド ラスタンvsバーバリアン編 GBPJCM = THE BASEBALL 2003 バトルボールパーク宣言 パーフェクトプレープロ野球 GBRJ18 = ブラッディ ロア エクストリーム GBSJ8P = ビーチ スパイカーズ -GBTJA7 = 爆転シュート ベイブレード2002 熱闘!マグネタッグバトル! -GBZJ08 = バイオハザードゼロ +GBTJA7 = 爆転シュート ベイブレード2002 熱闘!マグネタッグバトル! +GBZJ08 = バイオハザード 0 GC4JBN = 新世紀GPXサイバーフォーミュラ Road To The Evolution GC6J01 = ポケモンコロシアム -GC8JA4 = クラッシュ・バンディクー 爆走!ニトロカート -GCBJA4 = クラッシュ・バンディクー4 さくれつ!魔神パワー -GCCJ01 = ファイナルファンタジー・クリスタルクロニクル -GCCJGC = ファイナルファンタジー・クリスタルクロニクル -GCDJ08 = バイオハザード コード:ベロニカ完全版 -GCMJA4 = マッスルちゃんぴょん ~筋肉島の決戦~ +GC8JA4 = クラッシュ・バンディクー 爆走!ニトロカート +GCBJA4 = クラッシュ・バンディクー 4 さくれつ!魔神パワー +GCCJ01 = FINAL FANTASY CRYSTAL CHRONICLES +GCCJGC = FINAL FANTASY CRYSTAL CHRONICLES +GCDJ08 = バイオハザード -コード:ベロニカ- 完全版 +GCMJA4 = マッスルちゃんぴょん 筋肉島の決戦 GCTJ8P = クレイジータクシー GCWJBL = 魔法のパンプキン 〜アンとグレッグの大冒険〜 GD5JB2 = ドラゴンドライブ ディマスターズショット -GDAJE5 = ドラえもん みんなで遊ぼう ! ミニドランド +GDAJE5 = ドラえもん みんなで遊ぼう!ミニドランド GDBJ01 = 動物番長 -GDJJB2 = デジモンワールドX -GDKJA4 = ディズニースポーツ:サッカー +GDJJB2 = デジモンワールドX +GDKJA4 = ディズニースポーツ:サッカー GDLJA4 = ディズニースポーツ:バスケットボール GDMJ01 = ディズニーのミッキーマウスの不思議な鏡 -GDNJE8 = ドカポンDX -わたる世界はオニだらけ- +GDNJE8 = ドカポンDX ~わたる世界はオニだらけ~ GDPJAF = ミスタードリラー ドリルランド -GDUJA7 = デュエル・マスターズ 熱闘!バトルアリーナ +GDUJA7 = デュエル・マスターズ 熱闘!バトルアリーナ GDWJA4 = ディズニースポーツ:アメリカンフットボール GDXJA4 = ディズニースポーツ:スケートボーディング -GE6JA4 = 永世名人VI +GE6JA4 = 永世名人Ⅵ GEAJ8P = エターナルアルカディア レジェンド GEDJ01 = エターナルダークネス -招かれた13人- GEGJ8P = ジャイアントエッグ~ビリー・ハッチャーの大冒険~ -GEJJCM = 実況パワフルプロ野球11超決定版 -GEMJ28 = エッグマニア つかんで!まわして!どっすんぱずる! +GEJJCM = 実況パワフルプロ野球 11 超決定版 +GEMJ28 = エッグマニア つかんで!まわして!どっすんぱずる! GENJ13 = 007 エブリシング オア ナッシング GEOJ08 = CAPCOM VS SNK 2 EO: ミリオネアファイティング2001 GESJA4 = エヴォリューションスケートボーディング GEVJ0M = 神機世界エヴォルシア -GEYJ13 = ファイトナイト ラウンド2 -GF7J01 = スターフォックス アサルト -GFAJ13 = FIFAヨーロッパサッカー2003 +GEYJ13 = ファイトナイト ラウンド 2 +GF7J01 = スターフォックスアサルト +GFAJ13 = FIFA ヨーロッパサッカー 2003 GFEJ01 = ファイアーエムブレム 蒼炎の軌跡 GFGJA4 = フロッガー -GFIJ13 = 2002FIFAワールドカップ +GFIJ13 = 2002 FIFA ワールドカップ GFMJAF = ファミリースタジアム2003 GFNJG2 = ファインディング・ニモ GFSJ13 = FIFA 2002 ロード・トゥ・FIFAワールドカップ GFTJ01 = マリオゴルフ ファミリーツアー -GFZJ01 = エフゼロ GX +GFZJ01 = F-ZERO GX GG4J08 = ガチャフォース -GGAJB2 = 機動戦士ガンダム ~戦士達の軌跡~ +GGAJB2 = 機動戦士ガンダム -戦士達の軌跡- GGFJ01 = ギフトピア GGIJ13 = ゴールデンアイ ダークエージェント GGKJB2 = 金色のガッシュベル!! 友情タッグバトル フル パワー -GGPJAF = SD ガンダム ガシャポンウォーズ +GGPJAF = SDガンダム ガシャポンウォーズ GGPJB2 = SDガンダム ガシャポンウォーズ GGSJA4 = メタルギアソリッド ザ・ツインスネークス GGTJ01 = ちびロボ! GGZJB2 = マダガスカル GH4J13 = ハリー・ポッターと炎のゴブレット -GHAJ08 = バイオハザード2 +GHAJ08 = バイオハザード 2 GHCJG9 = チキン・リトル GHEJ91 = ホームランド GHLJ13 = ハリー・ポッターと賢者の石 GHSJ13 = ハリー・ポッターと秘密の部屋 -GHTJA4 = ヒカルの碁3 -GI2J18 = 桃太郎電鉄12(西日本編もありまっせー!) -GICJG9 = Mr.インクレディブル +GHTJA4 = ヒカルの碁 3 +GI2J18 = 桃太郎電鉄12 西日本編もありまっせー! +GICJG9 = Mr.インクレディブル GIFJDQ = ジェネレーションオブカオス イクシード 〜闇の皇女ロゼ〜 GIGJ8P = ブリーチGC 黄昏にまみえる死神 -GIIJ18 = 桃太郎電鉄11(ブラックボンビー出現!の巻) +GIIJ18 = 桃太郎電鉄11 ブラックボンビー出現!の巻 GIJJC0 = スペースレイダース GIKJ70 = 斑鳩 Ikaruga -GIOJCM = 実況パワフルプロ野球10超決定版2003メモリアル +GIOJCM = 実況パワフルプロ野球 10 超決定版2003メモリアル GIPJB2 = ONE PIECE パイレーツカーニバル -GIQJ8P = Mr.インクレディブル~強敵アンダーマイナー登場~ +GIQJ8P = Mr.インクレディブル ~強敵アンダーマイナー登場~ GJ2JCM = 実況ワールドサッカー2002 -GJBJ18 = ボンバーマン ジェッターズ -GJPJCM = 実況パワフルプロ野球11 -GJSJ18 = ハドソンセレクションVol.2 スターソルジャー -GK4J01 = バテン・カイトスII 始まりの翼と神々の嗣子 -GK6JA4 = コロッケ! バン王の危機を救え -GK7J08 = キラー7 +GJBJ18 = ボンバーマンジェッターズ +GJPJCM = 実況パワフルプロ野球 11 +GJSJ18 = ハドソンセレクション Vol.2 スターソルジャー +GK4J01 = バテン・カイトスⅡ 始まりの翼と神々の嗣子 +GK6JA4 = コロッケ! バン王の危機を救え GKAJ8P = カイジュウの島 ~アメージングアイランド~ GKBJAF = バテン・カイトス 終わらない翼と失われた海 GKDJ01 = 巨人のドシン -GKEJA4 = 実況パワフルプロ野球12決定版 +GKEJA4 = 実況パワフルプロ野球 12 決定版 GKFJ8P = カオスフィールド エクスパンデッド GKFJMS = カオスフィールド エクスパンデッド GKGJ01 = ドンキーコンガ GKJJ78 = カーズ -GKLJ13 = ロード・オブ・ザ・リング/王の帰還 -GKNJB2 = キン肉マンII世 新世代超人VS伝説超人 -GKPJA4 = 実況パワフルプロ野球12 -GKQJ01 = くるりんスカッシュ! +GKLJ13 = ロード・オブ・ザ・リング 王の帰還 +GKNJB2 = キン肉マンⅡ世 新世代超人VS伝説超人 +GKPJA4 = 実況パワフルプロ野球 12 +GKQJ01 = くるりんスカッシュ! GKRJB2 = ケロケロキングDX -GKTJA4 = キャプテン翼~黄金世代の挑戦~ -GKWJ18 = ドリームミックスTV ワールドファイターズ -GKXJE7 = 極・麻雀DXII 〜The 4th MONDO21Cup〜 +GKTJA4 = キャプテン翼 ~黄金世代の挑戦~ +GKWJ18 = ドリームミックスTV ワールドファイターズ +GKXJE7 = 極・麻雀DXⅡ ~The 4th MONDO21Cup~ GKYJ01 = カービィのエアライド GL3JE8 = ルパン三世:海に消えた秘宝 -GLEJ08 = バイオハザード3 : ラストエスケープ +GLEJ08 = バイオハザード 3 ラストエスケープ GLIJA7 = SPECIAL人生ゲーム GLJJMS = ラジルギ ジェネリック GLMJ01 = ルイージマンション GLOJ13 = ロード・オブ・ザ・リング 二つの塔 GLXJ29 = レジェンドオブゴルファー -GM2J8P = スーパーモンキーボール2 +GM2J8P = スーパーモンキーボール 2 GM4J01 = マリオカート ダブルダッシュ!! GM6JE9 = メダロットBRAVE GM8J01 = メトロイドプライム @@ -1165,65 +1738,63 @@ GMTJ18 = ディズニーのマジカルパーク GMYJ8P = 激闘プロ野球 水島新司オールスターズVSプロ野球 GNBJ01 = NBAコートサイド2002 GNDJ13 = ニード・フォー・スピード アンダーグラウンド -GNRJDA = NARUTO-ナルト-激闘忍者大戦! -GNSJ13 = NBAストリート -GNUJDA = NARUTO-ナルト- 激闘忍者大戦!2 -GODJGA = 四国巡礼体験ゲーム お遍路さん 〜発心の道場(阿波国編)〜 +GNRJDA = NARUTO -ナルト- 激闘忍者大戦! +GNSJ13 = NBAストリート +GNUJDA = NARUTO -ナルト- 激闘忍者大戦!2 +GODJGA = 四国巡礼体験ゲーム お遍路さん ~発心の道場(阿波国)編~ GOGJB2 = ONE PIECE グランドバトル!3 GOMJ01 = マリオテニスGC -GONJ13 = メダル オブ オナー ヨーロッパ強襲 +GONJ13 = メダル オブ オナー ヨーロッパ強襲 GOOJ01 = 大玉 -GOPJB2 = ワンピース グラバト! ラッシュ -GOTJB2 = From TV animation ONE PIECE トレジャーバトル! +GOPJB2 = ONE PIECE グラバト!RUSH +GOTJB2 = From TV animation ONE PIECE トレジャーバトル! GOWJ13 = ニード・フォー・スピード モスト・ウォンテッド -GP4J18 = ハドソン セレクション Vol.3 PC原人 +GP4J18 = ハドソンセレクション Vol.3 PC原人 GP5J01 = マリオパーティ 5 -GP6J01 = マリオパーティ6 -GP7J01 = マリオパーティ7 -GP9J28 = Rogue Ops 〜ローグオプス〜 -GPAJ01 = ポケモンチャンネル 〜ピカチュウといっしょ!〜 +GP6J01 = マリオパーティ 6 +GP7J01 = マリオパーティ 7 +GP9J28 = ROGUE OPS -ローグオプス- +GPAJ01 = ポケモンチャンネル ~ピカチュウといっしょ!~ GPEJ2Q = プールエッジ GPIJ01 = ピクミン -GPJJCM = 実況パワフルプロ野球10 -GPOJ8P = ファンタシースターオンライン エピソード1&2 -GPPJCM = 実況パワフルプロ野球9 -GPSJ8P = ファンタシースターオンライン エピソード3 カードレボリューション -GPVJ01 = ピクミン2 +GPJJCM = 実況パワフルプロ野球 10 +GPOJ8P = PHANTASY STAR ONLINE EPISODE Ⅰ&Ⅱ +GPPJCM = 実況パワフルプロ野球 9 +GPSJ8P = PHANTASY STAR ONLINE EPISODE Ⅲ C.A.R.D. Revolution +GPVJ01 = ピクミン 2 GPXJ01 = ポケモンボックス ルビー&サファイア GPYJ8P = ぷよぷよフィーバー GPZJ01 = NINTENDO パズルコレクション -GQAJA7 = チョロQ! -GQRJ18 = ハドソンセレクションVol.1 キュービックロードランナー -GQWJ13 = ハリー・ポッター クイディッチ・ワールドカップ +GQAJA7 = チョロQ! +GQRJ18 = ハドソンセレクション Vol.1 キュービックロードランナー +GQWJ13 = ハリー・ポッター クィディッチ・ワールドカップ GQZJ01 = 伝説のクイズ王決定戦 -GR2JCQ = RUNE2~コルテンの鍵の秘密~ +GR2JCQ = RuneⅡ コルテンの鍵の秘密 GR5J1K = ロボコップ 新たなる危機 -GREJ08 = ロックマンエグゼ トランスミッション -GRJJAF = R レーシング エヴォリューション -GRMJDA = モノポリー ~めざせっ!!大富豪人生!~ -GRNJCQ = ルーン -GRSJAF = ソウルキャリバーII -GRVJA4 = GROOVE ADVENTURE RAVE 〜ファイティングライブ〜 -GRWJD9 = スーパーロボット大戦 GC +GREJ08 = ロックマンエグゼ トランスミッション +GRJJAF = R: RACING EVOLUTION +GRMJDA = モノポリー めざせっ!!大富豪人生!! +GRSJAF = ソウルキャリバーⅡ +GRVJA4 = GROOVE ADVENTURE RAVE ファイティングライブ +GRWJD9 = スーパーロボット大戦 GC GRZJ13 = メダル オブ オナー ライジングサン GSAJ01 = スターフォックスアドベンチャー -GSBJ8P = ソニックアドベンチャー2 バトル +GSBJ8P = ソニックアドベンチャー 2 バトル GSEJB2 = シャーマンキング ソウルファイト GSMJ08 = スパイダーマン GSOJ8P = ソニック メガコレクション GSSJ8P = セガ サッカースラム -GSTJ13 = SSX トリッキー -GSWJ13 = スター・ウォーズ ローグ スコードロン2 +GSWJ13 = スター・ウォーズ ローグ スコードロンⅡ GSXJ13 = スター・ウォーズ クローン戦争 -GT2J18 = 天外魔境II MANJIMARU -GT3J52 = トニーホークのプロスケーター3 +GT2J18 = 天外魔境Ⅱ MANJIMARU GT6J70 = ターミネーター3:ザ・レデンプション GTBJC0 = NHK 天才ビットくん グラモンバトル -GTEJ01 = テン・エイティ シルバーストーム +GTCJBL = GT CUBE +GTEJ01 = 1080° SILVER STORM GTGJ1K = トップガン エースオブザスカイ GTHJD9 = チャリンコヒーロー GTMJDA = MUTSUとのほほん -GTNJ18 = ハドソンセレクションVol.4 高橋名人の冒険島 +GTNJ18 = ハドソンセレクション Vol.4 高橋名人の冒険島 GTOJAF = テイルズ オブ シンフォニア GTRJ8N = テトリスワールド GUBJ13 = ザ・アーブズ シムズ・イン・ザ・シティ @@ -1233,11 +1804,11 @@ GUSJ28 = ユニバーサル・スタジオ・ジャパン・アドベンチャ GUTJC0 = アルティメット スパイダーマン GVCJ08 = ビューティフルジョー バトルカーニバル GVFJ08 = ビューティフルジョー リバイバル -GVJJ08 = ビューティフル ジョー +GVJJ08 = ビューティフルジョー GVSJ8P = バーチャストライカー3 Ver.2002 GVWJDQ = 学園都市 ヴァラノワールローゼス GW3JG2 = レッスルマニアX8 -GW6JEM = ワールドサッカー ウイニングイレブン6 ファイナルエヴォリューション +GW6JEM = ワールドサッカー ウイニングイレブン 6 ファイナルエヴォリューション GW9JG2 = レッスルマニアXIX GWEJB0 = 18 Wheeler GWGJ4F = わいわいゴルフ @@ -1246,36 +1817,42 @@ GWRJ01 = ウェーブレース ブルーストーム GWSJA4 = ハイパースポーツ2002WINTER GWTJA4 = WTAツアーテニス プロエボリューション GWWJ01 = ワリオワールド -GWXJ13 = スター・ウォーズ ローグ スコードロン III +GWXJ13 = スター・ウォーズ ローグ スコードロンⅢ GWZJ01 = ダンスダンスレボリューション ウィズ マリオ -GXBJ13 = SSX3 GXCJ01 = カスタムロボ バトルレボリューション GXEJ8P = ソニックライダーズ GXOJ13 = SSX On Tour with マリオ -GXRJ08 = ロックマンX コマンドミッション +GXRJ08 = ロックマンX コマンドミッション GXXJ01 = ポケモンXD 闇の旋風ダーク・ルギア -GY2J01 = ドンキーコンガ2 ヒットソングパレード -GY3J01 = ドンキーコンガ3 食べ放題!春もぎたて50曲 -GYBJ01 = ドンキーコングジャングルビート +GY2J01 = ドンキーコンガ 2 ヒットソングパレード +GY3J01 = ドンキーコンガ 3 食べ放題!春もぎたて50曲 +GYBJ01 = ドンキーコング ジャングルビート GYFJA4 = 遊戯王 フォルスバウンドキングダム 虚構に閉ざされた王国 GYKJB2 = 金色のガッシュベル!! 友情タッグバトル2 GYMJA4 = 実況パワフルメジャーリーグ GYQJ01 = スーパーマリオスタジアム ミラクルベースボール -GYWJ99 = 牧場牧場 ワンダフルライフ -GZ2J01 = ゼルダの伝説 トワイライトプリンセス +GYWJ99 = 牧場物語 ワンダフルライフ +GZ2J01 = ゼルダの伝説 トワイライトプリンセス [GC] GZBJB2 = ドラゴンボールZ GZCJB0 = ズーキューブ GZDJ70 = ゴジラ 怪獣大乱闘 GZFJBP = 零ファイター撃墜戦記 -GZHJDA = ゾイドフルメタルクラッシュ +GZHJDA = ゾイド フルメタルクラッシュ GZLJ01 = ゼルダの伝説 風のタクト GZOJDA = ゾイド バーサス GZQJ7D = ロボッツ -GZSJDA = ゾイドバーサスII -GZVJDA = ゾイド バーサス III -GZWJ01 = あつまれ!! メイドインワリオ -PGSJ01 = メタルギア +GZSJDA = ゾイド バーサスⅡ +GZVJDA = ゾイド バーサスⅢ +GZWJ01 = あつまれ!! メイドインワリオ +P4BJ08 = バイオハザード 4 体験版 +PCKJ01 = ポケモンコロシアム 予約特典 任天堂特製ディスク +PCSJ01 = ポケモンコロシアム 予約特典 拡張ディスク +PD5JB2 = ドラゴンドライブ ディマスターズショット (アニメDisc) +PGPJB2 = SDガンダム ガシャポンウォーズ (Demo) +PGSJ01 = メタルギア -Special Disc- +PHEJ91 = ホームランド (Test Disc) PKBJ01 = ドルアーガの塔 -PRJJ01 = パックマン VS. +PNRJ01 = ナルト コレクション (Demo) +PRJJ01 = パックマン vs. PZLJ01 = ゼルダコレクション UGPJ01 = ゲームボーイプレイヤー From bb3306701b0fb93d969ba29532039d3cdc30c919 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 8 Oct 2022 22:42:07 +0200 Subject: [PATCH 202/223] Jit64: Flatten avx_op Reduces indentation and places the "ugly" case last. No behavior change. --- .../Core/PowerPC/Jit64Common/EmuCodeBlock.cpp | 59 +++++++++---------- 1 file changed, 28 insertions(+), 31 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp index 9ea80d4d06ee..bfe20ab458a7 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp +++ b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp @@ -752,39 +752,36 @@ void EmuCodeBlock::avx_op(void (XEmitter::*avxOp)(X64Reg, X64Reg, const OpArg&), { (this->*avxOp)(regOp, arg1.GetSimpleReg(), arg2); } - else if (arg2.IsSimpleReg(regOp)) + else if (!arg2.IsSimpleReg(regOp)) { - if (reversible) + if (packed) + MOVAPD(regOp, arg1); + else + MOVSD(regOp, arg1); + (this->*sseOp)(regOp, arg1 == arg2 ? R(regOp) : arg2); + } + else if (reversible) + { + (this->*sseOp)(regOp, arg1); + } + else + { + // The ugly case: regOp == arg2 without AVX, or with arg1 == memory + if (!arg1.IsSimpleReg(XMM0)) + MOVAPD(XMM0, arg1); + if (cpu_info.bAVX) { - (this->*sseOp)(regOp, arg1); + (this->*avxOp)(regOp, XMM0, arg2); } else { - // The ugly case: regOp == arg2 without AVX, or with arg1 == memory - if (!arg1.IsSimpleReg(XMM0)) - MOVAPD(XMM0, arg1); - if (cpu_info.bAVX) - { - (this->*avxOp)(regOp, XMM0, arg2); - } + (this->*sseOp)(XMM0, arg2); + if (packed) + MOVAPD(regOp, R(XMM0)); else - { - (this->*sseOp)(XMM0, arg2); - if (packed) - MOVAPD(regOp, R(XMM0)); - else - MOVSD(regOp, R(XMM0)); - } + MOVSD(regOp, R(XMM0)); } } - else - { - if (packed) - MOVAPD(regOp, arg1); - else - MOVSD(regOp, arg1); - (this->*sseOp)(regOp, arg1 == arg2 ? R(regOp) : arg2); - } } // Abstract between AVX and SSE: automatically handle 3-operand instructions @@ -800,7 +797,12 @@ void EmuCodeBlock::avx_op(void (XEmitter::*avxOp)(X64Reg, X64Reg, const OpArg&, { (this->*avxOp)(regOp, arg1.GetSimpleReg(), arg2, imm); } - else if (arg2.IsSimpleReg(regOp)) + else if (!arg2.IsSimpleReg(regOp)) + { + MOVAPD(regOp, arg1); + (this->*sseOp)(regOp, arg1 == arg2 ? R(regOp) : arg2, imm); + } + else { // The ugly case: regOp == arg2 without AVX, or with arg1 == memory if (!arg1.IsSimpleReg(XMM0)) @@ -816,11 +818,6 @@ void EmuCodeBlock::avx_op(void (XEmitter::*avxOp)(X64Reg, X64Reg, const OpArg&, MOVAPD(regOp, R(XMM0)); } } - else - { - MOVAPD(regOp, arg1); - (this->*sseOp)(regOp, arg1 == arg2 ? R(regOp) : arg2, imm); - } } alignas(16) static const u64 psMantissaTruncate[2] = {0xFFFFFFFFF8000000ULL, 0xFFFFFFFFF8000000ULL}; From 2c2e06bf39318bfafd76201407d0e346f8a045fb Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 4 Dec 2022 11:37:49 +0100 Subject: [PATCH 203/223] Jit64: Add extra cases for reversible avx_op Optimization. --- .../Core/PowerPC/Jit64Common/EmuCodeBlock.cpp | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp index bfe20ab458a7..02c8ba189349 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp +++ b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp @@ -748,10 +748,18 @@ void EmuCodeBlock::avx_op(void (XEmitter::*avxOp)(X64Reg, X64Reg, const OpArg&), { (this->*sseOp)(regOp, arg2); } - else if (arg1.IsSimpleReg() && cpu_info.bAVX) + else if (reversible && arg2.IsSimpleReg(regOp)) + { + (this->*sseOp)(regOp, arg1); + } + else if (cpu_info.bAVX && arg1.IsSimpleReg()) { (this->*avxOp)(regOp, arg1.GetSimpleReg(), arg2); } + else if (cpu_info.bAVX && reversible && arg2.IsSimpleReg()) + { + (this->*avxOp)(regOp, arg2.GetSimpleReg(), arg1); + } else if (!arg2.IsSimpleReg(regOp)) { if (packed) @@ -760,13 +768,17 @@ void EmuCodeBlock::avx_op(void (XEmitter::*avxOp)(X64Reg, X64Reg, const OpArg&), MOVSD(regOp, arg1); (this->*sseOp)(regOp, arg1 == arg2 ? R(regOp) : arg2); } - else if (reversible) + else if (reversible && !arg1.IsSimpleReg(regOp)) { - (this->*sseOp)(regOp, arg1); + if (packed) + MOVAPD(regOp, arg2); + else + MOVSD(regOp, arg2); + (this->*sseOp)(regOp, arg1 == arg2 ? R(regOp) : arg1); } else { - // The ugly case: regOp == arg2 without AVX, or with arg1 == memory + // The ugly case: Not reversible, and we have regOp == arg2 without AVX or with arg1 == memory if (!arg1.IsSimpleReg(XMM0)) MOVAPD(XMM0, arg1); if (cpu_info.bAVX) @@ -793,7 +805,7 @@ void EmuCodeBlock::avx_op(void (XEmitter::*avxOp)(X64Reg, X64Reg, const OpArg&, { (this->*sseOp)(regOp, arg2, imm); } - else if (arg1.IsSimpleReg() && cpu_info.bAVX) + else if (cpu_info.bAVX && arg1.IsSimpleReg()) { (this->*avxOp)(regOp, arg1.GetSimpleReg(), arg2, imm); } From 2bb59ff0dca59cbd21f1a78bc4dc8d315264d7da Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 8 Oct 2022 22:08:50 +0200 Subject: [PATCH 204/223] Jit64: Inline avx_op into fp_arith This will let us manage registers better in the next commit. --- .../Core/PowerPC/Jit64/Jit_FloatingPoint.cpp | 51 ++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp index 9d99dd0a75ab..8deabd3b004e 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp @@ -298,7 +298,56 @@ void Jit64::fp_arith(UGeckoInstruction inst) } else { - avx_op(avxOp, sseOp, dest, Ra, Rarg2, packed, reversible); + if (Ra.IsSimpleReg(dest)) + { + (this->*sseOp)(dest, Rarg2); + } + else if (reversible && Rarg2.IsSimpleReg(dest)) + { + (this->*sseOp)(dest, Ra); + } + else if (cpu_info.bAVX && Ra.IsSimpleReg()) + { + (this->*avxOp)(dest, Ra.GetSimpleReg(), Rarg2); + } + else if (cpu_info.bAVX && reversible && Rarg2.IsSimpleReg()) + { + (this->*avxOp)(dest, Rarg2.GetSimpleReg(), Ra); + } + else if (!Rarg2.IsSimpleReg(dest)) + { + if (packed) + MOVAPD(dest, Ra); + else + MOVSD(dest, Ra); + (this->*sseOp)(dest, OpArg(Ra) == OpArg(Rarg2) ? R(dest) : Rarg2); + } + else if (reversible && !Ra.IsSimpleReg(dest)) + { + if (packed) + MOVAPD(dest, Rarg2); + else + MOVSD(dest, Rarg2); + (this->*sseOp)(dest, OpArg(Ra) == OpArg(Rarg2) ? R(dest) : Ra); + } + else + { + // The ugly case: Not reversible, and we have dest == Rarg2 without AVX or with Ra == memory + if (!Ra.IsSimpleReg(XMM0)) + MOVAPD(XMM0, Ra); + if (cpu_info.bAVX) + { + (this->*avxOp)(dest, XMM0, Rarg2); + } + else + { + (this->*sseOp)(XMM0, Rarg2); + if (packed) + MOVAPD(dest, R(XMM0)); + else + MOVSD(dest, R(XMM0)); + } + } } switch (inst.SUBOP5) From 13e9d5c889cea23228c57676bd964e788824c547 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 8 Oct 2022 22:36:14 +0200 Subject: [PATCH 205/223] Jit64: Improve register handling in fp_arith This lets us avoid the "ugly" case. --- .../Core/PowerPC/Jit64/Jit_FloatingPoint.cpp | 37 ++++--------------- 1 file changed, 8 insertions(+), 29 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp index 8deabd3b004e..4723c1c2cf6a 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp @@ -282,7 +282,9 @@ void Jit64::fp_arith(UGeckoInstruction inst) RCOpArg Rarg2 = fpr.Use(arg2, RCMode::Read); RegCache::Realize(Rd, Ra, Rarg2); - X64Reg dest = preserve_inputs ? XMM1 : static_cast(Rd); + X64Reg dest = X64Reg(Rd); + if (preserve_inputs && (a == d || arg2 == d)) + dest = XMM1; if (round_rhs) { if (a == d && !preserve_inputs) @@ -314,39 +316,16 @@ void Jit64::fp_arith(UGeckoInstruction inst) { (this->*avxOp)(dest, Rarg2.GetSimpleReg(), Ra); } - else if (!Rarg2.IsSimpleReg(dest)) + else { + if (Rarg2.IsSimpleReg(dest)) + dest = XMM1; + if (packed) MOVAPD(dest, Ra); else MOVSD(dest, Ra); - (this->*sseOp)(dest, OpArg(Ra) == OpArg(Rarg2) ? R(dest) : Rarg2); - } - else if (reversible && !Ra.IsSimpleReg(dest)) - { - if (packed) - MOVAPD(dest, Rarg2); - else - MOVSD(dest, Rarg2); - (this->*sseOp)(dest, OpArg(Ra) == OpArg(Rarg2) ? R(dest) : Ra); - } - else - { - // The ugly case: Not reversible, and we have dest == Rarg2 without AVX or with Ra == memory - if (!Ra.IsSimpleReg(XMM0)) - MOVAPD(XMM0, Ra); - if (cpu_info.bAVX) - { - (this->*avxOp)(dest, XMM0, Rarg2); - } - else - { - (this->*sseOp)(XMM0, Rarg2); - if (packed) - MOVAPD(dest, R(XMM0)); - else - MOVSD(dest, R(XMM0)); - } + (this->*sseOp)(dest, a == arg2 ? R(dest) : Rarg2); } } From e4f97a2532fe894bdc4319ffdcd187f00d85265f Mon Sep 17 00:00:00 2001 From: Simonx22 Date: Sat, 20 Apr 2024 17:53:11 +0200 Subject: [PATCH 206/223] Android: Update dependencies --- Source/Android/app/build.gradle.kts | 16 ++++++++-------- Source/Android/benchmark/build.gradle.kts | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index bc15b6a104c2..7322b4b5b517 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -119,23 +119,23 @@ dependencies { "baselineProfile"(project(":benchmark")) coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4") - implementation("androidx.core:core-ktx:1.12.0") + implementation("androidx.core:core-ktx:1.13.0") implementation("androidx.appcompat:appcompat:1.6.1") - implementation("androidx.exifinterface:exifinterface:1.3.6") + 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") implementation("androidx.fragment:fragment-ktx:1.6.2") implementation("androidx.slidingpanelayout:slidingpanelayout:1.2.0") - implementation("com.google.android.material:material:1.10.0") + implementation("com.google.android.material:material:1.11.0") implementation("androidx.core:core-splashscreen:1.0.1") implementation("androidx.preference:preference-ktx:1.2.1") implementation("androidx.profileinstaller:profileinstaller:1.3.1") // Kotlin extensions for lifecycle components - implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2") - implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2") - implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.6.2") + 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") @@ -145,10 +145,10 @@ dependencies { implementation("com.android.volley:volley:1.2.1") // For loading game covers from disk and GameTDB - implementation("io.coil-kt:coil:2.5.0") + implementation("io.coil-kt:coil:2.6.0") // For loading custom GPU drivers - implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1") + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") implementation("com.nononsenseapps:filepicker:4.2.1") } diff --git a/Source/Android/benchmark/build.gradle.kts b/Source/Android/benchmark/build.gradle.kts index 0065dadb0f1c..fbc4f1105a5a 100644 --- a/Source/Android/benchmark/build.gradle.kts +++ b/Source/Android/benchmark/build.gradle.kts @@ -47,6 +47,6 @@ baselineProfile { dependencies { implementation("androidx.test.ext:junit:1.1.5") implementation("androidx.test.espresso:espresso-core:3.5.1") - implementation("androidx.test.uiautomator:uiautomator:2.2.0") - implementation("androidx.benchmark:benchmark-macro-junit4:1.2.2") + implementation("androidx.test.uiautomator:uiautomator:2.3.0") + implementation("androidx.benchmark:benchmark-macro-junit4:1.2.4") } From 5c9bb80638ec05b32eaa129a8c763ac6bb3a5cb4 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 13 Apr 2024 12:08:43 +0200 Subject: [PATCH 207/223] Memmap: Replace GetPointer with GetSpanForAddress To ensure memory safety, callers of GetPointer have to perform a bounds check. But how is this bounds check supposed to be performed? GetPointerForRange contained one implementation of a bounds check, but it was cumbersome, and it also isn't obvious why it's correct. To make doing the right thing easier, this commit changes GetPointer to return a span that tells the caller how many bytes it's allowed to access. --- Source/Core/Core/HW/Memmap.cpp | 29 +++++++++++-------- Source/Core/Core/HW/Memmap.h | 13 +++++++-- .../VideoBackends/Software/TextureSampler.cpp | 5 +++- Source/Core/VideoCommon/TextureInfo.cpp | 8 +++-- .../Core/VideoCommon/VertexLoaderManager.cpp | 17 ++++++++--- 5 files changed, 50 insertions(+), 22 deletions(-) diff --git a/Source/Core/Core/HW/Memmap.cpp b/Source/Core/Core/HW/Memmap.cpp index f0636652000b..be58fbfc6918 100644 --- a/Source/Core/Core/HW/Memmap.cpp +++ b/Source/Core/Core/HW/Memmap.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include "Common/ChunkFile.h" @@ -400,22 +401,23 @@ void MemoryManager::Clear() u8* MemoryManager::GetPointerForRange(u32 address, size_t size) const { - // Make sure we don't have a range spanning 2 separate banks - if (size >= GetExRamSizeReal()) + std::span span = GetSpanForAddress(address); + + if (span.data() == nullptr) { - PanicAlertFmt("Oversized range in GetPointerForRange. {:x} bytes at {:#010x}", size, address); + // The address isn't in a valid memory region. + // A panic alert has already been raised by GetPointer, so let's not raise another one. return nullptr; } - // Check that the beginning and end of the range are valid - u8* pointer = GetPointer(address); - if (pointer == nullptr || (size != 0 && GetPointer(address + u32(size) - 1) == nullptr)) + if (span.size() < size) { - // A panic alert has already been raised by GetPointer + // The start address is in a valid region, but the end address is beyond the end of that region. + PanicAlertFmt("Oversized range in GetPointerForRange. {:x} bytes at {:#010x}", size, address); return nullptr; } - return pointer; + return span.data(); } void MemoryManager::CopyFromEmu(void* data, u32 address, size_t size) const @@ -487,24 +489,27 @@ std::string MemoryManager::GetString(u32 em_address, size_t size) } } -u8* MemoryManager::GetPointer(u32 address) const +std::span MemoryManager::GetSpanForAddress(u32 address) const { // TODO: Should we be masking off more bits here? Can all devices access // EXRAM? address &= 0x3FFFFFFF; if (address < GetRamSizeReal()) - return m_ram + address; + return std::span(m_ram + address, GetRamSizeReal() - address); if (m_exram) { if ((address >> 28) == 0x1 && (address & 0x0fffffff) < GetExRamSizeReal()) - return m_exram + (address & GetExRamMask()); + { + return std::span(m_exram + (address & GetExRamMask()), + GetExRamSizeReal() - (address & GetExRamMask())); + } } auto& ppc_state = m_system.GetPPCState(); PanicAlertFmt("Unknown Pointer {:#010x} PC {:#010x} LR {:#010x}", address, ppc_state.pc, LR(ppc_state)); - return nullptr; + return {}; } u8 MemoryManager::Read_U8(u32 address) const diff --git a/Source/Core/Core/HW/Memmap.h b/Source/Core/Core/HW/Memmap.h index e90e641f557b..e0708605dbfe 100644 --- a/Source/Core/Core/HW/Memmap.h +++ b/Source/Core/Core/HW/Memmap.h @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -105,10 +106,16 @@ class MemoryManager // Routines to access physically addressed memory, designed for use by // emulated hardware outside the CPU. Use "Device_" prefix. std::string GetString(u32 em_address, size_t size = 0); - // WARNING: Incrementing the pointer returned by GetPointer is unsafe without additional bounds - // checks. New code should use other functions instead, like GetPointerForRange or CopyFromEmu. - u8* GetPointer(u32 address) const; + + // If the specified guest address is within a valid memory region, returns a span starting at the + // host address corresponding to the specified address and ending where the memory region ends. + // Otherwise, returns a 0-length span starting at nullptr. + std::span GetSpanForAddress(u32 address) const; + + // If the specified range is within a single valid memory region, returns a pointer to the start + // of the corresponding range in host memory. Otherwise, returns nullptr. u8* GetPointerForRange(u32 address, size_t size) const; + void CopyFromEmu(void* data, u32 address, size_t size) const; void CopyToEmu(u32 address, const void* data, size_t size); void Memset(u32 address, u8 value, size_t size); diff --git a/Source/Core/VideoBackends/Software/TextureSampler.cpp b/Source/Core/VideoBackends/Software/TextureSampler.cpp index d5222384f064..f9182441bbdf 100644 --- a/Source/Core/VideoBackends/Software/TextureSampler.cpp +++ b/Source/Core/VideoBackends/Software/TextureSampler.cpp @@ -5,6 +5,7 @@ #include #include +#include #include "Common/CommonTypes.h" #include "Common/MsgHandler.h" @@ -137,7 +138,9 @@ void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample) auto& memory = system.GetMemory(); const u32 imageBase = texUnit.texImage3.image_base << 5; - imageSrc = memory.GetPointer(imageBase); + // TODO: For memory safety, we need to check the size of this span + std::span span = memory.GetSpanForAddress(imageBase); + imageSrc = span.data(); } int image_width_minus_1 = ti0.width; diff --git a/Source/Core/VideoCommon/TextureInfo.cpp b/Source/Core/VideoCommon/TextureInfo.cpp index b73461ba336d..a1bccb0ebea3 100644 --- a/Source/Core/VideoCommon/TextureInfo.cpp +++ b/Source/Core/VideoCommon/TextureInfo.cpp @@ -3,6 +3,8 @@ #include "VideoCommon/TextureInfo.h" +#include + #include #include @@ -47,8 +49,10 @@ TextureInfo TextureInfo::FromStage(u32 stage) auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); - return TextureInfo(stage, memory.GetPointer(address), tlut_ptr, address, texture_format, - tlut_format, width, height, false, nullptr, nullptr, mip_count); + // TODO: For memory safety, we need to check the size of this span + std::span span = memory.GetSpanForAddress(address); + return TextureInfo(stage, span.data(), tlut_ptr, address, texture_format, tlut_format, width, + height, false, nullptr, nullptr, mip_count); } TextureInfo::TextureInfo(u32 stage, const u8* ptr, const u8* tlut_ptr, u32 address, diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp index 8ae9a9aa46c0..0c48bf32a8b3 100644 --- a/Source/Core/VideoCommon/VertexLoaderManager.cpp +++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp @@ -91,26 +91,35 @@ void UpdateVertexArrayPointers() // Note: Only array bases 0 through 11 are used by the Vertex loaders. // 12 through 15 are used for loading data into xfmem. // We also only update the array base if the vertex description states we are going to use it. + // TODO: For memory safety, we need to check the sizes returned by GetSpanForAddress if (IsIndexed(g_main_cp_state.vtx_desc.low.Position)) + { cached_arraybases[CPArray::Position] = - memory.GetPointer(g_main_cp_state.array_bases[CPArray::Position]); + memory.GetSpanForAddress(g_main_cp_state.array_bases[CPArray::Position]).data(); + } if (IsIndexed(g_main_cp_state.vtx_desc.low.Normal)) + { cached_arraybases[CPArray::Normal] = - memory.GetPointer(g_main_cp_state.array_bases[CPArray::Normal]); + memory.GetSpanForAddress(g_main_cp_state.array_bases[CPArray::Normal]).data(); + } for (u8 i = 0; i < g_main_cp_state.vtx_desc.low.Color.Size(); i++) { if (IsIndexed(g_main_cp_state.vtx_desc.low.Color[i])) + { cached_arraybases[CPArray::Color0 + i] = - memory.GetPointer(g_main_cp_state.array_bases[CPArray::Color0 + i]); + memory.GetSpanForAddress(g_main_cp_state.array_bases[CPArray::Color0 + i]).data(); + } } for (u8 i = 0; i < g_main_cp_state.vtx_desc.high.TexCoord.Size(); i++) { if (IsIndexed(g_main_cp_state.vtx_desc.high.TexCoord[i])) + { cached_arraybases[CPArray::TexCoord0 + i] = - memory.GetPointer(g_main_cp_state.array_bases[CPArray::TexCoord0 + i]); + memory.GetSpanForAddress(g_main_cp_state.array_bases[CPArray::TexCoord0 + i]).data(); + } } g_bases_dirty = false; From 3cfa233b63dfcd734be2dd0ae4bd0d3e98109df6 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 13 Apr 2024 18:29:52 +0200 Subject: [PATCH 208/223] VideoCommon: Use GetSpanForAddress safely in texture decoding Now only VertexLoader remains... But that one might be tricky. --- Source/Core/Common/CMakeLists.txt | 1 + Source/Core/Common/SpanUtils.h | 41 +++++++++ Source/Core/Core/FifoPlayer/FifoPlayer.cpp | 2 +- Source/Core/Core/FifoPlayer/FifoRecorder.cpp | 2 +- Source/Core/DolphinLib.props | 1 + .../VideoBackends/Software/TextureSampler.cpp | 45 +++++----- Source/Core/VideoCommon/BPStructs.cpp | 9 +- Source/Core/VideoCommon/TextureCacheBase.cpp | 11 +-- Source/Core/VideoCommon/TextureDecoder.h | 17 +++- .../VideoCommon/TextureDecoder_Common.cpp | 86 +++++++++++------- Source/Core/VideoCommon/TextureInfo.cpp | 88 +++++++++++++------ Source/Core/VideoCommon/TextureInfo.h | 18 ++-- Source/Core/VideoCommon/VideoBackendBase.cpp | 2 +- Source/Core/VideoCommon/VideoState.cpp | 2 +- 14 files changed, 222 insertions(+), 103 deletions(-) create mode 100644 Source/Core/Common/SpanUtils.h diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index 7b81cd2c6d0f..af48ba7e13ae 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -126,6 +126,7 @@ add_library(common SmallVector.h SocketContext.cpp SocketContext.h + SpanUtils.h SPSCQueue.h StringLiteral.h StringUtil.cpp diff --git a/Source/Core/Common/SpanUtils.h b/Source/Core/Common/SpanUtils.h new file mode 100644 index 000000000000..d09193b31421 --- /dev/null +++ b/Source/Core/Common/SpanUtils.h @@ -0,0 +1,41 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include +#include +#include + +#include "Common/CommonTypes.h" + +namespace Common +{ + +// Like std::span::subspan, except undefined behavior is replaced with returning a 0-length span. +template +[[nodiscard]] constexpr std::span SafeSubspan(std::span span, size_t offset, + size_t count = std::dynamic_extent) +{ + if (count == std::dynamic_extent || offset > span.size()) + return span.subspan(std::min(offset, span.size())); + else + return span.subspan(offset, std::min(count, span.size() - offset)); +} + +// Default-constructs an object of type T, then copies data into it from the specified offset in +// the specified span. Out-of-bounds reads will be skipped, meaning that specifying a too large +// offset results in the object partially or entirely remaining default constructed. +template +[[nodiscard]] T SafeSpanRead(std::span span, size_t offset) +{ + static_assert(std::is_trivially_copyable()); + + const std::span subspan = SafeSubspan(span, offset); + T result{}; + std::memcpy(&result, subspan.data(), std::min(subspan.size(), sizeof(result))); + return result; +} + +} // namespace Common diff --git a/Source/Core/Core/FifoPlayer/FifoPlayer.cpp b/Source/Core/Core/FifoPlayer/FifoPlayer.cpp index e0359905046c..39377d7cdedb 100644 --- a/Source/Core/Core/FifoPlayer/FifoPlayer.cpp +++ b/Source/Core/Core/FifoPlayer/FifoPlayer.cpp @@ -697,7 +697,7 @@ void FifoPlayer::LoadTextureMemory() { static_assert(static_cast(TMEM_SIZE) == static_cast(FifoDataFile::TEX_MEM_SIZE), "TMEM_SIZE matches the size of texture memory in FifoDataFile"); - std::memcpy(texMem, m_File->GetTexMem(), FifoDataFile::TEX_MEM_SIZE); + std::memcpy(s_tex_mem.data(), m_File->GetTexMem(), FifoDataFile::TEX_MEM_SIZE); } void FifoPlayer::WriteCP(u32 address, u16 value) diff --git a/Source/Core/Core/FifoPlayer/FifoRecorder.cpp b/Source/Core/Core/FifoPlayer/FifoRecorder.cpp index bea5b9451917..c354a5fdf776 100644 --- a/Source/Core/Core/FifoPlayer/FifoRecorder.cpp +++ b/Source/Core/Core/FifoPlayer/FifoRecorder.cpp @@ -291,7 +291,7 @@ void FifoRecorder::RecordInitialVideoMemory() g_main_cp_state.FillCPMemoryArray(cpmem); - SetVideoMemory(bpmem_ptr, cpmem, xfmem_ptr, xfregs_ptr, xfregs_size, texMem); + SetVideoMemory(bpmem_ptr, cpmem, xfmem_ptr, xfregs_ptr, xfregs_size, s_tex_mem.data()); } void FifoRecorder::StopRecording() diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index cd6fcfc16136..beec3e9a2d17 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -153,6 +153,7 @@ + diff --git a/Source/Core/VideoBackends/Software/TextureSampler.cpp b/Source/Core/VideoBackends/Software/TextureSampler.cpp index f9182441bbdf..ceb6c0225667 100644 --- a/Source/Core/VideoBackends/Software/TextureSampler.cpp +++ b/Source/Core/VideoBackends/Software/TextureSampler.cpp @@ -9,6 +9,7 @@ #include "Common/CommonTypes.h" #include "Common/MsgHandler.h" +#include "Common/SpanUtils.h" #include "Core/HW/Memmap.h" #include "Core/System.h" @@ -124,13 +125,13 @@ void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample) const TextureFormat texfmt = ti0.format; const TLUTFormat tlutfmt = texTlut.tlut_format; - const u8* imageSrc; - const u8* imageSrcOdd = nullptr; + std::span image_src; + std::span image_src_odd; if (texUnit.texImage1.cache_manually_managed) { - imageSrc = &texMem[texUnit.texImage1.tmem_even * TMEM_LINE_SIZE]; + image_src = TexDecoder_GetTmemSpan(texUnit.texImage1.tmem_even * TMEM_LINE_SIZE); if (texfmt == TextureFormat::RGBA8) - imageSrcOdd = &texMem[texUnit.texImage2.tmem_odd * TMEM_LINE_SIZE]; + image_src_odd = TexDecoder_GetTmemSpan(texUnit.texImage2.tmem_odd * TMEM_LINE_SIZE); } else { @@ -138,16 +139,14 @@ void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample) auto& memory = system.GetMemory(); const u32 imageBase = texUnit.texImage3.image_base << 5; - // TODO: For memory safety, we need to check the size of this span - std::span span = memory.GetSpanForAddress(imageBase); - imageSrc = span.data(); + image_src = memory.GetSpanForAddress(imageBase); } int image_width_minus_1 = ti0.width; int image_height_minus_1 = ti0.height; const int tlutAddress = texTlut.tmem_offset << 9; - const u8* tlut = &texMem[tlutAddress]; + const std::span tlut = TexDecoder_GetTmemSpan(tlutAddress); // reduce sample location and texture size to mip level // move texture pointer to mip location @@ -171,7 +170,7 @@ void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample) mipHeight = std::max(mipHeight, fmtHeight); const u32 size = (mipWidth * mipHeight * fmtDepth) >> 1; - imageSrc += size; + image_src = Common::SafeSubspan(image_src, size); mipWidth >>= 1; mipHeight >>= 1; mip--; @@ -205,37 +204,37 @@ void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample) if (!(texfmt == TextureFormat::RGBA8 && texUnit.texImage1.cache_manually_managed)) { - TexDecoder_DecodeTexel(sampledTex, imageSrc, imageS, imageT, image_width_minus_1, texfmt, + TexDecoder_DecodeTexel(sampledTex, image_src, imageS, imageT, image_width_minus_1, texfmt, tlut, tlutfmt); SetTexel(sampledTex, texel, (128 - fractS) * (128 - fractT)); - TexDecoder_DecodeTexel(sampledTex, imageSrc, imageSPlus1, imageT, image_width_minus_1, texfmt, - tlut, tlutfmt); + TexDecoder_DecodeTexel(sampledTex, image_src, imageSPlus1, imageT, image_width_minus_1, + texfmt, tlut, tlutfmt); AddTexel(sampledTex, texel, (fractS) * (128 - fractT)); - TexDecoder_DecodeTexel(sampledTex, imageSrc, imageS, imageTPlus1, image_width_minus_1, texfmt, - tlut, tlutfmt); + TexDecoder_DecodeTexel(sampledTex, image_src, imageS, imageTPlus1, image_width_minus_1, + texfmt, tlut, tlutfmt); AddTexel(sampledTex, texel, (128 - fractS) * (fractT)); - TexDecoder_DecodeTexel(sampledTex, imageSrc, imageSPlus1, imageTPlus1, image_width_minus_1, + TexDecoder_DecodeTexel(sampledTex, image_src, imageSPlus1, imageTPlus1, image_width_minus_1, texfmt, tlut, tlutfmt); AddTexel(sampledTex, texel, (fractS) * (fractT)); } else { - TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, imageSrc, imageSrcOdd, imageS, imageT, + TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, image_src, image_src_odd, imageS, imageT, image_width_minus_1); SetTexel(sampledTex, texel, (128 - fractS) * (128 - fractT)); - TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, imageSrc, imageSrcOdd, imageSPlus1, imageT, + TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, image_src, image_src_odd, imageSPlus1, imageT, image_width_minus_1); AddTexel(sampledTex, texel, (fractS) * (128 - fractT)); - TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, imageSrc, imageSrcOdd, imageS, imageTPlus1, + TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, image_src, image_src_odd, imageS, imageTPlus1, image_width_minus_1); AddTexel(sampledTex, texel, (128 - fractS) * (fractT)); - TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, imageSrc, imageSrcOdd, imageSPlus1, + TexDecoder_DecodeTexelRGBA8FromTmem(sampledTex, image_src, image_src_odd, imageSPlus1, imageTPlus1, image_width_minus_1); AddTexel(sampledTex, texel, (fractS) * (fractT)); } @@ -256,11 +255,15 @@ void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample) WrapCoord(&imageT, tm0.wrap_t, image_height_minus_1 + 1); if (!(texfmt == TextureFormat::RGBA8 && texUnit.texImage1.cache_manually_managed)) - TexDecoder_DecodeTexel(sample, imageSrc, imageS, imageT, image_width_minus_1, texfmt, tlut, + { + TexDecoder_DecodeTexel(sample, image_src, imageS, imageT, image_width_minus_1, texfmt, tlut, tlutfmt); + } else - TexDecoder_DecodeTexelRGBA8FromTmem(sample, imageSrc, imageSrcOdd, imageS, imageT, + { + TexDecoder_DecodeTexelRGBA8FromTmem(sample, image_src, image_src_odd, imageS, imageT, image_width_minus_1); + } } } } // namespace TextureSampler diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp index 6e4bb981a8cf..7eb6c8865694 100644 --- a/Source/Core/VideoCommon/BPStructs.cpp +++ b/Source/Core/VideoCommon/BPStructs.cpp @@ -401,7 +401,7 @@ static void BPWritten(PixelShaderManager& pixel_shader_manager, XFStateManager& static_assert(MAX_LOADABLE_TMEM_ADDR + MAX_TMEM_LINE_COUNT < TMEM_SIZE); auto& memory = system.GetMemory(); - memory.CopyFromEmu(texMem + tmem_addr, addr, tmem_transfer_count); + memory.CopyFromEmu(s_tex_mem.data() + tmem_addr, addr, tmem_transfer_count); if (OpcodeDecoder::g_record_fifo_data) system.GetFifoRecorder().UseMemory(addr, tmem_transfer_count, MemoryUpdate::Type::TMEM); @@ -596,7 +596,7 @@ static void BPWritten(PixelShaderManager& pixel_shader_manager, XFStateManager& auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); - memory.CopyFromEmu(texMem + tmem_addr_even, src_addr, bytes_read); + memory.CopyFromEmu(s_tex_mem.data() + tmem_addr_even, src_addr, bytes_read); } else // RGBA8 tiles (and CI14, but that might just be stupid libogc!) { @@ -615,9 +615,10 @@ static void BPWritten(PixelShaderManager& pixel_shader_manager, XFStateManager& break; } - memory.CopyFromEmu(texMem + tmem_addr_even, src_addr + bytes_read, TMEM_LINE_SIZE); - memory.CopyFromEmu(texMem + tmem_addr_odd, src_addr + bytes_read + TMEM_LINE_SIZE, + memory.CopyFromEmu(s_tex_mem.data() + tmem_addr_even, src_addr + bytes_read, TMEM_LINE_SIZE); + memory.CopyFromEmu(s_tex_mem.data() + tmem_addr_odd, + src_addr + bytes_read + TMEM_LINE_SIZE, TMEM_LINE_SIZE); tmem_addr_even += TMEM_LINE_SIZE; tmem_addr_odd += TMEM_LINE_SIZE; bytes_read += TMEM_LINE_SIZE * 2; diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index d6fec6adc4b1..7184ea725e95 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -1319,6 +1319,9 @@ TCacheEntry* TextureCacheBase::LoadImpl(const TextureInfo& texture_info, bool fo RcTcacheEntry TextureCacheBase::GetTexture(const int textureCacheSafetyColorSampleSize, const TextureInfo& texture_info) { + if (!texture_info.IsDataValid()) + return {}; + // Hash assigned to texcache entry (also used to generate filenames used for texture dumping and // custom texture lookup) u64 base_hash = TEXHASH_INVALID; @@ -1337,12 +1340,6 @@ RcTcacheEntry TextureCacheBase::GetTexture(const int textureCacheSafetyColorSamp // TODO: the texture cache lookup is based on address, but a texture from tmem has no reason // to have a unique and valid address. This could result in a regular texture and a tmem // texture aliasing onto the same texture cache entry. - if (!texture_info.GetData()) - { - ERROR_LOG_FMT(VIDEO, "Trying to use an invalid texture address {:#010x}", - texture_info.GetRawAddress()); - return {}; - } // If we are recording a FifoLog, keep track of what memory we read. FifoRecorder does // its own memory modification tracking independent of the texture hashing below. @@ -1916,7 +1913,7 @@ RcTcacheEntry TextureCacheBase::GetXFBTexture(u32 address, u32 width, u32 height entry->frameCount = FRAMECOUNT_INVALID; if (!g_ActiveConfig.UseGPUTextureDecoding() || !DecodeTextureOnGPU(entry, 0, src_data, total_size, entry->format.texfmt, width, height, - width, height, stride, texMem, entry->format.tlutfmt)) + width, height, stride, s_tex_mem.data(), entry->format.tlutfmt)) { const u32 decoded_size = width * height * sizeof(u32); CheckTempSize(decoded_size); diff --git a/Source/Core/VideoCommon/TextureDecoder.h b/Source/Core/VideoCommon/TextureDecoder.h index dcc7513d43ae..2296c1bfede7 100644 --- a/Source/Core/VideoCommon/TextureDecoder.h +++ b/Source/Core/VideoCommon/TextureDecoder.h @@ -3,16 +3,20 @@ #pragma once +#include +#include #include + #include "Common/CommonTypes.h" #include "Common/EnumFormatter.h" +#include "Common/SpanUtils.h" enum { TMEM_SIZE = 1024 * 1024, TMEM_LINE_SIZE = 32, }; -alignas(16) extern u8 texMem[TMEM_SIZE]; +alignas(16) extern std::array s_tex_mem; enum class TextureFormat { @@ -171,6 +175,11 @@ static inline bool CanReinterpretTextureOnGPU(TextureFormat from_format, Texture } } +inline std::span TexDecoder_GetTmemSpan(size_t offset = 0) +{ + return Common::SafeSubspan(std::span(s_tex_mem), offset); +} + int TexDecoder_GetTexelSizeInNibbles(TextureFormat format); int TexDecoder_GetTextureSizeInBytes(int width, int height, TextureFormat format); int TexDecoder_GetBlockWidthInTexels(TextureFormat format); @@ -184,8 +193,10 @@ void TexDecoder_Decode(u8* dst, const u8* src, int width, int height, TextureFor const u8* tlut, TLUTFormat tlutfmt); void TexDecoder_DecodeRGBA8FromTmem(u8* dst, const u8* src_ar, const u8* src_gb, int width, int height); -void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth, - TextureFormat texformat, const u8* tlut, TLUTFormat tlutfmt); +void TexDecoder_DecodeTexel(u8* dst, std::span src, int s, int t, int imageWidth, + TextureFormat texformat, std::span tlut, TLUTFormat tlutfmt); +void TexDecoder_DecodeTexelRGBA8FromTmem(u8* dst, std::span src_ar, + std::span src_gb, int s, int t, int imageWidth); void TexDecoder_DecodeTexelRGBA8FromTmem(u8* dst, const u8* src_ar, const u8* src_gb, int s, int t, int imageWidth); void TexDecoder_DecodeXFB(u8* dst, const u8* src, u32 width, u32 height, u32 stride); diff --git a/Source/Core/VideoCommon/TextureDecoder_Common.cpp b/Source/Core/VideoCommon/TextureDecoder_Common.cpp index 01af14a64912..299a36e4d411 100644 --- a/Source/Core/VideoCommon/TextureDecoder_Common.cpp +++ b/Source/Core/VideoCommon/TextureDecoder_Common.cpp @@ -2,11 +2,14 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include +#include #include #include +#include #include "Common/CommonTypes.h" #include "Common/MsgHandler.h" +#include "Common/SpanUtils.h" #include "Common/Swap.h" #include "VideoCommon/LookUpTables.h" @@ -19,7 +22,7 @@ static bool TexFmt_Overlay_Center = false; // TRAM // STATE_TO_SAVE -alignas(16) u8 texMem[TMEM_SIZE]; +alignas(16) std::array s_tex_mem; int TexDecoder_GetTexelSizeInNibbles(TextureFormat format) { @@ -356,8 +359,8 @@ static inline u32 DecodePixel_Paletted(u16 pixel, TLUTFormat tlutfmt) } } -void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth, - TextureFormat texformat, const u8* tlut_, TLUTFormat tlutfmt) +void TexDecoder_DecodeTexel(u8* dst, std::span src, int s, int t, int imageWidth, + TextureFormat texformat, std::span tlut_, TLUTFormat tlutfmt) { /* General formula for computing texture offset // @@ -385,10 +388,10 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth int rs = (blkOff & 1) ? 0 : 4; u32 offset = base + (blkOff >> 1); - u8 val = (*(src + offset) >> rs) & 0xF; - u16* tlut = (u16*)tlut_; + u8 val = (Common::SafeSpanRead(src, offset) >> rs) & 0xF; + u16 pixel = Common::SafeSpanRead(tlut_, sizeof(u16) * val); - *((u32*)dst) = DecodePixel_Paletted(tlut[val], tlutfmt); + *((u32*)dst) = DecodePixel_Paletted(pixel, tlutfmt); } break; case TextureFormat::I4: @@ -404,7 +407,7 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth int rs = (blkOff & 1) ? 0 : 4; u32 offset = base + (blkOff >> 1); - u8 val = (*(src + offset) >> rs) & 0xF; + u8 val = (Common::SafeSpanRead(src, offset) >> rs) & 0xF; val = Convert4To8(val); dst[0] = val; dst[1] = val; @@ -422,7 +425,7 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u16 blkT = t & 3; u32 blkOff = (blkT << 3) + blkS; - u8 val = *(src + base + blkOff); + u8 val = Common::SafeSpanRead(src, base + blkOff); dst[0] = val; dst[1] = val; dst[2] = val; @@ -439,10 +442,10 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u16 blkT = t & 3; u32 blkOff = (blkT << 3) + blkS; - u8 val = *(src + base + blkOff); - u16* tlut = (u16*)tlut_; + u8 val = Common::SafeSpanRead(src, base + blkOff); + u16 pixel = Common::SafeSpanRead(tlut_, sizeof(u16) * val); - *((u32*)dst) = DecodePixel_Paletted(tlut[val], tlutfmt); + *((u32*)dst) = DecodePixel_Paletted(pixel, tlutfmt); } break; case TextureFormat::IA4: @@ -455,7 +458,7 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u16 blkT = t & 3; u32 blkOff = (blkT << 3) + blkS; - u8 val = *(src + base + blkOff); + u8 val = Common::SafeSpanRead(src, base + blkOff); const u8 a = Convert4To8(val >> 4); const u8 l = Convert4To8(val & 0xF); dst[0] = l; @@ -475,9 +478,9 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u32 blkOff = (blkT << 2) + blkS; u32 offset = (base + blkOff) << 1; - const u16* valAddr = (u16*)(src + offset); + u16 val = Common::SafeSpanRead(src, offset); - *((u32*)dst) = DecodePixel_IA8(*valAddr); + *((u32*)dst) = DecodePixel_IA8(val); } break; case TextureFormat::C14X2: @@ -491,12 +494,10 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u32 blkOff = (blkT << 2) + blkS; u32 offset = (base + blkOff) << 1; - const u16* valAddr = (u16*)(src + offset); + u16 val = Common::swap16(Common::SafeSpanRead(src, offset)) & 0x3FFF; + u16 pixel = Common::SafeSpanRead(tlut_, sizeof(u16) * val); - u16 val = Common::swap16(*valAddr) & 0x3FFF; - u16* tlut = (u16*)tlut_; - - *((u32*)dst) = DecodePixel_Paletted(tlut[val], tlutfmt); + *((u32*)dst) = DecodePixel_Paletted(pixel, tlutfmt); } break; case TextureFormat::RGB565: @@ -510,9 +511,9 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u32 blkOff = (blkT << 2) + blkS; u32 offset = (base + blkOff) << 1; - const u16* valAddr = (u16*)(src + offset); + u16 val = Common::SafeSpanRead(src, offset); - *((u32*)dst) = DecodePixel_RGB565(Common::swap16(*valAddr)); + *((u32*)dst) = DecodePixel_RGB565(Common::swap16(val)); } break; case TextureFormat::RGB5A3: @@ -526,9 +527,9 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u32 blkOff = (blkT << 2) + blkS; u32 offset = (base + blkOff) << 1; - const u16* valAddr = (u16*)(src + offset); + u16 val = Common::SafeSpanRead(src, offset); - *((u32*)dst) = DecodePixel_RGB5A3(Common::swap16(*valAddr)); + *((u32*)dst) = DecodePixel_RGB5A3(Common::swap16(val)); } break; case TextureFormat::RGBA8: @@ -542,12 +543,11 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u32 blkOff = (blkT << 2) + blkS; u32 offset = (base + blkOff) << 1; - const u8* valAddr = src + offset; - dst[3] = valAddr[0]; - dst[0] = valAddr[1]; - dst[1] = valAddr[32]; - dst[2] = valAddr[33]; + dst[3] = Common::SafeSpanRead(src, offset); + dst[0] = Common::SafeSpanRead(src, offset + 1); + dst[1] = Common::SafeSpanRead(src, offset + 32); + dst[2] = Common::SafeSpanRead(src, offset + 33); } break; case TextureFormat::CMPR: @@ -565,10 +565,10 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u32 offset = (base + blkOff) << 3; - const DXTBlock* dxtBlock = (const DXTBlock*)(src + offset); + DXTBlock dxtBlock = Common::SafeSpanRead(src, offset); - u16 c1 = Common::swap16(dxtBlock->color1); - u16 c2 = Common::swap16(dxtBlock->color2); + u16 c1 = Common::swap16(dxtBlock.color1); + u16 c2 = Common::swap16(dxtBlock.color2); int blue1 = Convert5To8(c1 & 0x1F); int blue2 = Convert5To8(c2 & 0x1F); int green1 = Convert6To8((c1 >> 5) & 0x3F); @@ -579,7 +579,7 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth u16 ss = s & 3; u16 tt = t & 3; - int colorSel = dxtBlock->lines[tt]; + int colorSel = dxtBlock.lines[tt]; int rs = 6 - (ss << 1); colorSel = (colorSel >> rs) & 3; colorSel |= c1 > c2 ? 0 : 4; @@ -640,6 +640,28 @@ void TexDecoder_DecodeTexel(u8* dst, const u8* src, int s, int t, int imageWidth } } +void TexDecoder_DecodeTexelRGBA8FromTmem(u8* dst, std::span src_ar, + std::span src_gb, int s, int t, int imageWidth) +{ + u16 sBlk = s >> 2; + u16 tBlk = t >> 2; + u16 widthBlks = + (imageWidth >> 2) + 1; // TODO: Looks wrong. Shouldn't this be ((imageWidth-1)>>2)+1 ? + u32 base_ar = (tBlk * widthBlks + sBlk) << 4; + u32 base_gb = (tBlk * widthBlks + sBlk) << 4; + u16 blkS = s & 3; + u16 blkT = t & 3; + u32 blk_off = (blkT << 2) + blkS; + + u32 offset_ar = (base_ar + blk_off) << 1; + u32 offset_gb = (base_gb + blk_off) << 1; + + dst[3] = Common::SafeSpanRead(src_ar, offset_ar); // A + dst[0] = Common::SafeSpanRead(src_ar, offset_ar + 1); // R + dst[1] = Common::SafeSpanRead(src_gb, offset_gb); // G + dst[2] = Common::SafeSpanRead(src_gb, offset_gb + 1); // B +} + void TexDecoder_DecodeTexelRGBA8FromTmem(u8* dst, const u8* src_ar, const u8* src_gb, int s, int t, int imageWidth) { diff --git a/Source/Core/VideoCommon/TextureInfo.cpp b/Source/Core/VideoCommon/TextureInfo.cpp index a1bccb0ebea3..5ee23f367131 100644 --- a/Source/Core/VideoCommon/TextureInfo.cpp +++ b/Source/Core/VideoCommon/TextureInfo.cpp @@ -9,6 +9,9 @@ #include #include "Common/Align.h" +#include "Common/Assert.h" +#include "Common/Logging/Log.h" +#include "Common/SpanUtils.h" #include "Core/HW/Memmap.h" #include "Core/System.h" #include "VideoCommon/BPMemory.h" @@ -27,7 +30,7 @@ TextureInfo TextureInfo::FromStage(u32 stage) const u32 address = (tex.texImage3.image_base /* & 0x1FFFFF*/) << 5; const u32 tlutaddr = tex.texTlut.tmem_offset << 9; - const u8* tlut_ptr = &texMem[tlutaddr]; + std::span tlut_data = TexDecoder_GetTmemSpan(tlutaddr); std::optional mip_count; const bool has_mipmaps = tex.texMode0.mipmap_filter != MipMode::None; @@ -42,25 +45,24 @@ TextureInfo TextureInfo::FromStage(u32 stage) if (from_tmem) { - return TextureInfo(stage, &texMem[tmem_address_even], tlut_ptr, address, texture_format, - tlut_format, width, height, true, &texMem[tmem_address_odd], - &texMem[tmem_address_even], mip_count); + return TextureInfo(stage, TexDecoder_GetTmemSpan(tmem_address_even), tlut_data, address, + texture_format, tlut_format, width, height, true, + TexDecoder_GetTmemSpan(tmem_address_odd), + TexDecoder_GetTmemSpan(tmem_address_even), mip_count); } auto& system = Core::System::GetInstance(); auto& memory = system.GetMemory(); - // TODO: For memory safety, we need to check the size of this span - std::span span = memory.GetSpanForAddress(address); - return TextureInfo(stage, span.data(), tlut_ptr, address, texture_format, tlut_format, width, - height, false, nullptr, nullptr, mip_count); -} - -TextureInfo::TextureInfo(u32 stage, const u8* ptr, const u8* tlut_ptr, u32 address, - TextureFormat texture_format, TLUTFormat tlut_format, u32 width, - u32 height, bool from_tmem, const u8* tmem_odd, const u8* tmem_even, - std::optional mip_count) - : m_ptr(ptr), m_tlut_ptr(tlut_ptr), m_address(address), m_from_tmem(from_tmem), - m_tmem_odd(tmem_odd), m_texture_format(texture_format), m_tlut_format(tlut_format), + return TextureInfo(stage, memory.GetSpanForAddress(address), tlut_data, address, texture_format, + tlut_format, width, height, false, {}, {}, mip_count); +} + +TextureInfo::TextureInfo(u32 stage, std::span data, std::span tlut_data, + u32 address, TextureFormat texture_format, TLUTFormat tlut_format, + u32 width, u32 height, bool from_tmem, std::span tmem_odd, + std::span tmem_even, std::optional mip_count) + : m_ptr(data.data()), m_tlut_ptr(tlut_data.data()), m_address(address), m_from_tmem(from_tmem), + m_tmem_odd(tmem_odd.data()), m_texture_format(texture_format), m_tlut_format(tlut_format), m_raw_width(width), m_raw_height(height), m_stage(stage) { const bool is_palette_texture = IsColorIndexed(m_texture_format); @@ -77,6 +79,21 @@ TextureInfo::TextureInfo(u32 stage, const u8* ptr, const u8* tlut_ptr, u32 addre m_texture_size = TexDecoder_GetTextureSizeInBytes(m_expanded_width, m_expanded_height, m_texture_format); + if (data.size() < m_texture_size) + { + ERROR_LOG_FMT(VIDEO, "Trying to use an invalid texture address {:#010x}", GetRawAddress()); + m_data_valid = false; + } + else if (m_palette_size && tlut_data.size() < *m_palette_size) + { + ERROR_LOG_FMT(VIDEO, "Trying to use an invalid TLUT address {:#010x}", GetRawAddress()); + m_data_valid = false; + } + else + { + m_data_valid = true; + } + if (mip_count) { m_mipmaps_enabled = true; @@ -90,13 +107,17 @@ TextureInfo::TextureInfo(u32 stage, const u8* ptr, const u8* tlut_ptr, u32 addre std::min(MathUtil::IntLog2(std::max(width, height)) + 1, raw_mip_count + 1) - 1; // load mips - const u8* src_data = m_ptr + GetTextureSize(); - if (tmem_even) - tmem_even += GetTextureSize(); + std::span src_data = Common::SafeSubspan(data, GetTextureSize()); + tmem_even = Common::SafeSubspan(tmem_even, GetTextureSize()); for (u32 i = 0; i < limited_mip_count; i++) { - MipLevel mip_level(i + 1, *this, m_from_tmem, src_data, tmem_even, tmem_odd); + MipLevel mip_level(i + 1, *this, m_from_tmem, &src_data, &tmem_even, &tmem_odd); + if (!mip_level.IsDataValid()) + { + ERROR_LOG_FMT(VIDEO, "Trying to use an invalid mipmap address {:#010x}", GetRawAddress()); + break; + } m_mip_levels.push_back(std::move(mip_level)); } } @@ -109,7 +130,7 @@ std::string TextureInfo::NameDetails::GetFullName() const TextureInfo::NameDetails TextureInfo::CalculateTextureName() const { - if (!m_ptr) + if (!IsDataValid()) return NameDetails{}; const u8* tlut = m_tlut_ptr; @@ -133,7 +154,6 @@ TextureInfo::NameDetails TextureInfo::CalculateTextureName() const } break; case 256 * 2: - { for (size_t i = 0; i < m_texture_size; i++) { const u32 texture_byte = m_ptr[i]; @@ -142,7 +162,6 @@ TextureInfo::NameDetails TextureInfo::CalculateTextureName() const max = std::max(max, texture_byte); } break; - } case 16384 * 2: for (size_t i = 0; i < m_texture_size; i += sizeof(u16)) { @@ -159,6 +178,8 @@ TextureInfo::NameDetails TextureInfo::CalculateTextureName() const tlut += 2 * min; } + DEBUG_ASSERT(tlut_size <= m_palette_size.value_or(0)); + const u64 tex_hash = XXH64(m_ptr, m_texture_size, 0); const u64 tlut_hash = tlut_size ? XXH64(tlut, tlut_size, 0) : 0; @@ -172,6 +193,11 @@ TextureInfo::NameDetails TextureInfo::CalculateTextureName() const return result; } +bool TextureInfo::IsDataValid() const +{ + return m_data_valid; +} + const u8* TextureInfo::GetData() const { return m_ptr; @@ -271,7 +297,8 @@ const TextureInfo::MipLevel* TextureInfo::GetMipMapLevel(u32 level) const } TextureInfo::MipLevel::MipLevel(u32 level, const TextureInfo& parent, bool from_tmem, - const u8*& src_data, const u8*& ptr_even, const u8*& ptr_odd) + std::span* src_data, std::span* tmem_even, + std::span* tmem_odd) { m_raw_width = std::max(parent.GetRawWidth() >> level, 1u); m_raw_height = std::max(parent.GetRawHeight() >> level, 1u); @@ -281,9 +308,11 @@ TextureInfo::MipLevel::MipLevel(u32 level, const TextureInfo& parent, bool from_ m_texture_size = TexDecoder_GetTextureSizeInBytes(m_expanded_width, m_expanded_height, parent.GetTextureFormat()); - const u8*& ptr = from_tmem ? ((level % 2) ? ptr_odd : ptr_even) : src_data; - m_ptr = ptr; - ptr += m_texture_size; + std::span* data = from_tmem ? ((level % 2) ? tmem_odd : tmem_even) : src_data; + m_ptr = data->data(); + m_data_valid = data->size() >= m_texture_size; + + *data = Common::SafeSubspan(*data, m_texture_size); } u32 TextureInfo::GetFullLevelSize() const @@ -296,6 +325,11 @@ u32 TextureInfo::GetFullLevelSize() const return m_texture_size + all_mips_size; } +bool TextureInfo::MipLevel::IsDataValid() const +{ + return m_data_valid; +} + const u8* TextureInfo::MipLevel::GetData() const { return m_ptr; diff --git a/Source/Core/VideoCommon/TextureInfo.h b/Source/Core/VideoCommon/TextureInfo.h index 940b09b3cb19..49c76810c563 100644 --- a/Source/Core/VideoCommon/TextureInfo.h +++ b/Source/Core/VideoCommon/TextureInfo.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include #include #include @@ -17,9 +18,9 @@ class TextureInfo { public: static TextureInfo FromStage(u32 stage); - TextureInfo(u32 stage, const u8* ptr, const u8* tlut_ptr, u32 address, + TextureInfo(u32 stage, std::span data, std::span tlut_data, u32 address, TextureFormat texture_format, TLUTFormat tlut_format, u32 width, u32 height, - bool from_tmem, const u8* tmem_odd, const u8* tmem_even, + bool from_tmem, std::span tmem_odd, std::span tmem_even, std::optional mip_count); struct NameDetails @@ -33,6 +34,8 @@ class TextureInfo }; NameDetails CalculateTextureName() const; + bool IsDataValid() const; + const u8* GetData() const; const u8* GetTlutAddress() const; @@ -61,11 +64,12 @@ class TextureInfo class MipLevel { public: - MipLevel(u32 level, const TextureInfo& parent, bool from_tmem, const u8*& src_data, - const u8*& ptr_even, const u8*& ptr_odd); + MipLevel(u32 level, const TextureInfo& parent, bool from_tmem, std::span* src_data, + std::span* tmem_even, std::span* tmem_odd); - const u8* GetData() const; + bool IsDataValid() const; + const u8* GetData() const; u32 GetTextureSize() const; u32 GetExpandedWidth() const; @@ -75,6 +79,8 @@ class TextureInfo u32 GetRawHeight() const; private: + bool m_data_valid; + const u8* m_ptr; u32 m_texture_size = 0; @@ -99,6 +105,8 @@ class TextureInfo u32 m_address; + bool m_data_valid; + bool m_from_tmem; const u8* m_tmem_odd; diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index ba6adbe6f7e3..91492321f4b0 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -344,7 +344,7 @@ bool VideoBackendBase::InitializeShared(std::unique_ptr gfx, { memset(reinterpret_cast(&g_main_cp_state), 0, sizeof(g_main_cp_state)); memset(reinterpret_cast(&g_preprocess_cp_state), 0, sizeof(g_preprocess_cp_state)); - memset(texMem, 0, TMEM_SIZE); + s_tex_mem.fill(0); // do not initialize again for the config window m_initialized = true; diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index 594aca159885..d5f53f4963b1 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -57,7 +57,7 @@ void VideoCommon_DoState(PointerWrap& p) p.DoMarker("XF Memory"); // Texture decoder - p.DoArray(texMem); + p.DoArray(s_tex_mem); p.DoMarker("texMem"); // TMEM From c204b33314802d5e5719990d76bccc87a1907c9d Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 13 Apr 2024 18:50:33 +0200 Subject: [PATCH 209/223] VideoCommon/BPStructs: Add a missing bounds check Happened to find this when working on the previous commit. --- Source/Core/VideoCommon/BPStructs.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp index 7eb6c8865694..4f02c298b4e4 100644 --- a/Source/Core/VideoCommon/BPStructs.cpp +++ b/Source/Core/VideoCommon/BPStructs.cpp @@ -590,13 +590,16 @@ static void BPWritten(PixelShaderManager& pixel_shader_manager, XFStateManager& if (tmem_cfg.preload_tile_info.type != 3) { - bytes_read = tmem_cfg.preload_tile_info.count * TMEM_LINE_SIZE; - if (tmem_addr_even + bytes_read > TMEM_SIZE) - bytes_read = TMEM_SIZE - tmem_addr_even; + if (tmem_addr_even < TMEM_SIZE) + { + bytes_read = tmem_cfg.preload_tile_info.count * TMEM_LINE_SIZE; + if (tmem_addr_even + bytes_read > TMEM_SIZE) + bytes_read = TMEM_SIZE - tmem_addr_even; - auto& system = Core::System::GetInstance(); - auto& memory = system.GetMemory(); - memory.CopyFromEmu(s_tex_mem.data() + tmem_addr_even, src_addr, bytes_read); + auto& system = Core::System::GetInstance(); + auto& memory = system.GetMemory(); + memory.CopyFromEmu(s_tex_mem.data() + tmem_addr_even, src_addr, bytes_read); + } } else // RGBA8 tiles (and CI14, but that might just be stupid libogc!) { From 83b280d9032289d7e385d35a263ccbbe0ed29a98 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 20 Apr 2024 16:26:53 +0200 Subject: [PATCH 210/223] i18n: Add comments and improve source strings --- .../Config/Graphics/EnhancementsWidget.cpp | 8 +++---- .../DolphinQt/Debugger/AssemblerWidget.cpp | 4 +--- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 2 ++ .../Core/DolphinQt/Debugger/MemoryWidget.cpp | 1 + .../InfinityBase/InfinityBaseWindow.cpp | 13 +++++++----- .../SkylanderPortal/SkylanderModifyDialog.cpp | 13 +++++++++--- .../SkylanderPortal/SkylanderPortalWindow.cpp | 21 +++++++++++-------- 7 files changed, 38 insertions(+), 24 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp index cefe86fdfbda..2b21fcfe13dd 100644 --- a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp @@ -527,20 +527,20 @@ void EnhancementsWidget::AddDescriptions() "

Bicubic - [16 samples]" "
Gamma corrected cubic interpolation between pixels." - "
Good when rescaling between close resolutions. i.e 1080p and 1440p." + "
Good when rescaling between close resolutions, e.g. 1080p and 1440p." "
Comes in various flavors:" "
B-Spline: Blurry, but avoids all lobing artifacts" "
Mitchell-Netravali: Good middle ground between blurry and lobing" "
Catmull-Rom: Sharper, but can cause lobing artifacts" "

Sharp Bilinear - [1-4 samples]" - "
Similarly to \"Nearest Neighbor\", it maintains a sharp look," + "
Similar to \"Nearest Neighbor\", it maintains a sharp look," "
but also does some blending to avoid shimmering." "
Works best with 2D games at low resolutions." "

Area Sampling - [up to 324 samples]" - "
Weights pixels by the percentage of area they occupy. Gamma corrected." - "
Best for down scaling by more than 2x." + "
Weighs pixels by the percentage of area they occupy. Gamma corrected." + "
Best for downscaling by more than 2x." "

If unsure, select 'Default'."); static const char TR_COLOR_CORRECTION_DESCRIPTION[] = diff --git a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp index f8cb60deb647..8dba286c01ca 100644 --- a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp @@ -729,9 +729,7 @@ void AssemblerWidget::NewEditor(const QString& path) if (!path.isEmpty() && !new_editor->LoadFromPath()) { ModalMessageBox::warning(this, tr("Failed to open file"), - tr("Failed to read the contents of file\n\n" - "\"%1\"") - .arg(path)); + tr("Failed to read the contents of file:\n%1").arg(path)); delete new_editor; return; } diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index 9574a985b7a9..a9081c244f28 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -757,6 +757,8 @@ void BranchWatchDialog::OnToggleAutoSave(bool checked) return; 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)"), QString::fromStdString(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)), tr("Text file (*.txt);;All Files (*)")); diff --git a/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp index 9b2fba6d295e..4a89ce4316b6 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryWidget.cpp @@ -200,6 +200,7 @@ void MemoryWidget::CreateWidgets() m_display_combo->addItem(tr("Double"), int(Type::Double)); m_align_combo = new QComboBox; + // i18n: "Fixed" here means that the alignment is always the same m_align_combo->addItem(tr("Fixed Alignment")); m_align_combo->addItem(tr("Type-based Alignment"), 0); m_align_combo->addItem(tr("No Alignment"), 1); diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index a22c540e2eb7..e4c428684fb6 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -35,6 +35,7 @@ static QString s_last_figure_path; InfinityBaseWindow::InfinityBaseWindow(QWidget* parent) : QWidget(parent) { + // i18n: Window for managing Disney Infinity figures setWindowTitle(tr("Infinity Manager")); setObjectName(QStringLiteral("infinity_manager")); setMinimumSize(QSize(700, 200)); @@ -164,7 +165,7 @@ void InfinityBaseWindow::LoadFigurePath(u8 slot, const QString& path) { QMessageBox::warning( this, tr("Failed to open the Infinity file!"), - tr("Failed to open the Infinity file(%1)!\nFile may already be in use on the base.") + tr("Failed to open the Infinity file:\n%1\n\nThe file may already be in use on the base.") .arg(path), QMessageBox::Ok); return; @@ -172,9 +173,10 @@ void InfinityBaseWindow::LoadFigurePath(u8 slot, const QString& path) std::array file_data; if (!inf_file.ReadBytes(file_data.data(), file_data.size())) { - QMessageBox::warning(this, tr("Failed to read the Infinity file!"), - tr("Failed to read the Infinity file(%1)!\nFile was too small.").arg(path), - QMessageBox::Ok); + QMessageBox::warning( + this, tr("Failed to read the Infinity file!"), + tr("Failed to read the Infinity file(%1):\n%1\n\nThe file was too small.").arg(path), + QMessageBox::Ok); return; } @@ -274,6 +276,7 @@ CreateFigureDialog::CreateFigureDialog(QWidget* parent, u8 slot) : QDialog(paren } else { + // i18n: This is used to create a file name. The string must end in ".bin". QString str = tr("Unknown(%1).bin"); predef_name += str.arg(char_number); } @@ -289,7 +292,7 @@ CreateFigureDialog::CreateFigureDialog(QWidget* parent, u8 slot) : QDialog(paren { QMessageBox::warning( this, tr("Failed to create Infinity file"), - tr("Blank figure creation failed at:\n%1, try again with a different character") + tr("Blank figure creation failed at:\n%1\n\nTry again with a different character.") .arg(m_file_path), QMessageBox::Ok); return; diff --git a/Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp b/Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp index 983c4a3150a2..387ee69386f8 100644 --- a/Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp +++ b/Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp @@ -53,10 +53,12 @@ SkylanderModifyDialog::SkylanderModifyDialog(QWidget* parent, u8 slot) { // Should never be able to happen. Still good to have name = + // i18n: "Var" is short for "variant" tr("Unknown (Id:%1 Var:%2)").arg(m_figure_data.figure_id).arg(m_figure_data.variant_id); } } + // i18n: %1 is a name auto* label_name = new QLabel(tr("Modifying Skylander: %1").arg(name)); hbox_name->addWidget(label_name); @@ -136,11 +138,13 @@ void SkylanderModifyDialog::PopulateSkylanderOptions(QVBoxLayout* layout) reinterpret_cast(m_figure_data.skylander_data.nickname.data()))); auto* hbox_playtime = new QHBoxLayout(); + // i18n: The total amount of time the Skylander has been used for auto* label_playtime = new QLabel(tr("Playtime:")); auto* edit_playtime = new QLineEdit(QStringLiteral("%1").arg(m_figure_data.skylander_data.playtime)); auto* hbox_last_reset = new QHBoxLayout(); + // i18n: A timestamp for when the Skylander was most recently reset auto* label_last_reset = new QLabel(tr("Last reset:")); auto* edit_last_reset = new QDateTimeEdit(QDateTime(QDate(m_figure_data.skylander_data.last_reset.year, @@ -150,6 +154,7 @@ void SkylanderModifyDialog::PopulateSkylanderOptions(QVBoxLayout* layout) m_figure_data.skylander_data.last_reset.minute))); auto* hbox_last_placed = new QHBoxLayout(); + // i18n: A timestamp for when the Skylander was most recently used auto* label_last_placed = new QLabel(tr("Last placed:")); auto* edit_last_placed = new QDateTimeEdit(QDateTime(QDate(m_figure_data.skylander_data.last_placed.year, @@ -167,10 +172,10 @@ void SkylanderModifyDialog::PopulateSkylanderOptions(QVBoxLayout* layout) edit_last_placed->setDisplayFormat(QStringLiteral("dd/MM/yyyy hh:mm")); edit_toy_code->setToolTip(tr("The toy code for this figure. Only available for real figures.")); - edit_money->setToolTip(tr("The amount of money this skylander should have. Between 0 and 65000")); - edit_hero->setToolTip(tr("The hero level of this skylander. Only seen in Skylanders: Spyro's " + edit_money->setToolTip(tr("The amount of money this Skylander has. Between 0 and 65000")); + edit_hero->setToolTip(tr("The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100")); - edit_nick->setToolTip(tr("The nickname for this skylander. Limited to 15 characters")); + edit_nick->setToolTip(tr("The nickname for this Skylander. Limited to 15 characters")); edit_playtime->setToolTip( tr("The total time this figure has been used inside a game in seconds")); edit_last_reset->setToolTip(tr("The last time the figure has been reset. If the figure has never " @@ -309,6 +314,8 @@ bool SkylanderModifyDialog::PopulateTrophyOptions(QVBoxLayout* layout) edit_villains[i] = new QCheckBox(); edit_villains[i]->setChecked(static_cast(m_figure_data.trophy_data.unlocked_villains & (0b1 << shift_distances[i]))); + // i18n: "Captured" is a participle here. This string is used when listing villains, not when a + // villain was just captured auto* const label = new QLabel(tr("Captured villain %1:").arg(i + 1)); auto* const hbox = new QHBoxLayout(); hbox->addWidget(label); diff --git a/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp b/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp index f1bd605c48ad..9af7ef8b42b8 100644 --- a/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp +++ b/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp @@ -546,6 +546,7 @@ void SkylanderPortalWindow::LoadSelected() } else { + // i18n: This is used to create a file name. The string must end in ".sky". const QString str = tr("Unknown(%1 %2).sky"); predef_name += str.arg(m_sky_id, m_sky_var); } @@ -629,6 +630,7 @@ void SkylanderPortalWindow::CreateSkylanderAdvanced() } else { + // i18n: This is used to create a file name. The string must end in ".sky". QString str = tr("Unknown(%1 %2).sky"); predef_name += str.arg(m_sky_id, m_sky_var); } @@ -673,7 +675,7 @@ void SkylanderPortalWindow::ClearSlot(u8 slot) if (!system.GetSkylanderPortal().RemoveSkylander(slot_infos->portal_slot)) { QMessageBox::warning(this, tr("Failed to clear Skylander!"), - tr("Failed to clear the Skylander from slot(%1)!").arg(slot), + tr("Failed to clear the Skylander from slot %1!").arg(slot), QMessageBox::Ok); return; } @@ -795,7 +797,7 @@ void SkylanderPortalWindow::CreateSkyfile(const QString& path, bool load_after) { QMessageBox::warning( this, tr("Failed to create Skylander file!"), - tr("Failed to create Skylander file:\n%1\n(Skylander may already be on the portal)") + tr("Failed to create Skylander file:\n%1\n\nThe Skylander may already be on the portal.") .arg(path), QMessageBox::Ok); return; @@ -813,11 +815,11 @@ void SkylanderPortalWindow::LoadSkyfilePath(u8 slot, const QString& path) File::IOFile sky_file(path.toStdString(), "r+b"); if (!sky_file) { - QMessageBox::warning( - this, tr("Failed to open the Skylander file!"), - tr("Failed to open the Skylander file(%1)!\nFile may already be in use on the portal.") - .arg(path), - QMessageBox::Ok); + QMessageBox::warning(this, tr("Failed to open the Skylander file!"), + tr("Failed to open the Skylander file:\n%1\n\nThe file may already be in " + "use on the portal.") + .arg(path), + QMessageBox::Ok); return; } std::array file_data; @@ -825,7 +827,7 @@ void SkylanderPortalWindow::LoadSkyfilePath(u8 slot, const QString& path) { QMessageBox::warning( this, tr("Failed to read the Skylander file!"), - tr("Failed to read the Skylander file(%1)!\nFile was too small.").arg(path), + tr("Failed to read the Skylander file:\n%1\n\nThe file was too small.").arg(path), QMessageBox::Ok); return; } @@ -839,7 +841,7 @@ void SkylanderPortalWindow::LoadSkyfilePath(u8 slot, const QString& path) if (portal_slot == 0xFF) { QMessageBox::warning(this, tr("Failed to load the Skylander file!"), - tr("Failed to load the Skylander file(%1)!\n").arg(path), QMessageBox::Ok); + tr("Failed to load the Skylander file:\n%1").arg(path), QMessageBox::Ok); return; } m_sky_slots[slot] = {portal_slot, id_var.first, id_var.second}; @@ -862,6 +864,7 @@ void SkylanderPortalWindow::UpdateSlotNames() } else { + // i18n: "Var" is short for "variant" display_string = tr("Unknown (Id:%1 Var:%2)").arg(sd->m_sky_id).arg(sd->m_sky_var); } } From a17331d568088197fd0f96fff48ef4dc39ca1438 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 21 Apr 2024 09:28:01 +0200 Subject: [PATCH 211/223] DolphinQt: Don't ask user about creating Skylanders folder We don't have prompts like this for any other path handled by Dolphin. If the folder doesn't exist, let's just create it. --- .../SkylanderPortal/SkylanderPortalWindow.cpp | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp b/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp index 9af7ef8b42b8..79b1dc122158 100644 --- a/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp +++ b/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp @@ -75,21 +75,8 @@ SkylanderPortalWindow::SkylanderPortalWindow(QWidget* parent) : QWidget(parent) { skylanders_folder = QDir(QString::fromStdString(Config::Get(Config::MAIN_SKYLANDERS_PATH))); } - // prompt folder creation if path invalid if (!skylanders_folder.exists()) - { - QMessageBox::StandardButton create_folder_response; - create_folder_response = - QMessageBox::question(this, tr("Create Skylander Folder"), - tr("Skylanders folder not found for this user. Create new folder?"), - QMessageBox::Yes | QMessageBox::No); - if (create_folder_response == QMessageBox::Yes) - { - skylanders_folder = QDir(user_path); - Config::SetBase(Config::MAIN_SKYLANDERS_PATH, user_path.toStdString()); - skylanders_folder.mkdir(skylanders_folder.path()); - } - } + skylanders_folder.mkdir(skylanders_folder.path()); m_collection_path = QDir::toNativeSeparators(skylanders_folder.path()) + QDir::separator(); m_last_skylander_path = m_collection_path; From e64cdca405d5f946a07ea1d859d90e07bf89f6d1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 21 Apr 2024 16:13:33 +0200 Subject: [PATCH 212/223] JitArm64: Skip UBFX in mfcr We can implement the same behavior in one instruction less. --- .../Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp index fe61d9cd2983..03a7b8ddfb6a 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp @@ -672,6 +672,7 @@ void JitArm64::mfcr(UGeckoInstruction inst) ARM64Reg WB = gpr.GetReg(); ARM64Reg WC = gpr.GetReg(); ARM64Reg XA = EncodeRegTo64(WA); + ARM64Reg XB = EncodeRegTo64(WB); ARM64Reg XC = EncodeRegTo64(WC); for (int i = 0; i < 8; i++) @@ -683,15 +684,14 @@ void JitArm64::mfcr(UGeckoInstruction inst) static_assert(PowerPC::CR_SO_BIT == 0); static_assert(PowerPC::CR_LT_BIT == 3); static_assert(PowerPC::CR_EMU_LT_BIT - PowerPC::CR_EMU_SO_BIT == 3); - UBFX(XC, CR, PowerPC::CR_EMU_SO_BIT, 4); if (i == 0) { - MOVI2R(WB, PowerPC::CR_SO | PowerPC::CR_LT); - AND(WA, WC, WB); + MOVI2R(XB, PowerPC::CR_SO | PowerPC::CR_LT); + AND(XA, XB, CR, ArithOption(CR, ShiftType::LSR, PowerPC::CR_EMU_SO_BIT)); } else { - AND(WC, WC, WB); + AND(XC, XB, CR, ArithOption(CR, ShiftType::LSR, PowerPC::CR_EMU_SO_BIT)); ORR(XA, XC, XA, ArithOption(XA, ShiftType::LSL, 4)); } From e140491fa9108f3b456bd108a2f5a707458868da Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 21 Apr 2024 16:19:10 +0200 Subject: [PATCH 213/223] Arm64Emitter: Fix incorrect assert category --- Source/Core/Common/Arm64Emitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Arm64Emitter.cpp b/Source/Core/Common/Arm64Emitter.cpp index f769edc2f381..2bc056f8e303 100644 --- a/Source/Core/Common/Arm64Emitter.cpp +++ b/Source/Core/Common/Arm64Emitter.cpp @@ -1832,7 +1832,7 @@ void ARM64XEmitter::ParallelMoves(RegisterMove* begin, RegisterMove* end, while ((*source_gpr_usages)[temp_reg] != 0) { ++temp_reg; - ASSERT_MSG(COMMON, temp_reg != temp_reg_end, "Out of registers"); + ASSERT_MSG(DYNA_REC, temp_reg != temp_reg_end, "Out of registers"); } const ARM64Reg src = begin->src; From de338317834f08590d59df5c27392f109322d29f Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 21 Apr 2024 16:20:59 +0200 Subject: [PATCH 214/223] Arm64Emitter: Fix shadowed variable A lambda at the end of ARM64XEmitter::ParallelMoves named its parameter `move`. --- Source/Core/Common/Arm64Emitter.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Core/Common/Arm64Emitter.cpp b/Source/Core/Common/Arm64Emitter.cpp index 2bc056f8e303..3831bff96fee 100644 --- a/Source/Core/Common/Arm64Emitter.cpp +++ b/Source/Core/Common/Arm64Emitter.cpp @@ -1809,16 +1809,16 @@ void ARM64XEmitter::ParallelMoves(RegisterMove* begin, RegisterMove* end, { bool removed_moves_during_this_loop_iteration = false; - RegisterMove* move = end; - while (move != begin) + RegisterMove* current_move = end; + while (current_move != begin) { - RegisterMove* prev_move = move; - --move; - if ((*source_gpr_usages)[DecodeReg(move->dst)] == 0) + RegisterMove* prev_move = current_move; + --current_move; + if ((*source_gpr_usages)[DecodeReg(current_move->dst)] == 0) { - MOV(move->dst, move->src); - (*source_gpr_usages)[DecodeReg(move->src)]--; - std::move(prev_move, end, move); + MOV(current_move->dst, current_move->src); + (*source_gpr_usages)[DecodeReg(current_move->src)]--; + std::move(prev_move, end, current_move); --end; removed_moves_during_this_loop_iteration = true; } From e7dbd298a89d7b8fc8bbe04b586e619f2661acdb Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 21 Apr 2024 08:51:29 -0700 Subject: [PATCH 215/223] JitState: Remove Unused instructionNumber --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 1 - Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 1 - Source/Core/Core/PowerPC/JitCommon/JitBase.h | 1 - 3 files changed, 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 867190e28487..04e642137675 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -952,7 +952,6 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) js.compilerPC = op.address; js.op = &op; js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst; - js.instructionNumber = i; js.instructionsLeft = (code_block.m_num_instructions - 1) - i; const GekkoOPInfo* opinfo = op.opinfo; js.downcountAmount += opinfo->num_cycles; diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index f596128ef918..c73391d8f54f 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -1070,7 +1070,6 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) js.compilerPC = op.address; js.op = &op; js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst; - js.instructionNumber = i; js.instructionsLeft = (code_block.m_num_instructions - 1) - i; const GekkoOPInfo* opinfo = op.opinfo; js.downcountAmount += opinfo->num_cycles; diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.h b/Source/Core/Core/PowerPC/JitCommon/JitBase.h index 273751cf3736..d90662ffe4d5 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.h @@ -91,7 +91,6 @@ class JitBase : public CPUCoreBase { u32 compilerPC; u32 blockStart; - int instructionNumber; int instructionsLeft; u32 downcountAmount; u32 numLoadStoreInst; From e3721bee1b9611959315b327c588a1a32d1508e8 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 21 Apr 2024 09:07:47 -0700 Subject: [PATCH 216/223] JIT: Fix Incorrect Assert Category --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 17 ++++++++--------- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 15 +++++++-------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 867190e28487..cfb56a49a400 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -741,7 +741,7 @@ void Jit64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) { if (!SConfig::GetInstance().bJITNoBlockCache) { - WARN_LOG_FMT(POWERPC, "flushing trampoline code cache, please report if this happens a lot"); + WARN_LOG_FMT(DYNA_REC, "flushing trampoline code cache, please report if this happens a lot"); } ClearCache(); } @@ -830,15 +830,14 @@ void Jit64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) { // Code generation failed due to not enough free space in either the near or far code regions. // Clear the entire JIT cache and retry. - WARN_LOG_FMT(POWERPC, "flushing code caches, please report if this happens a lot"); + 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."); + 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); } @@ -849,7 +848,7 @@ bool Jit64::SetEmitterStateToFreeCodeRegion() const auto free_near = m_free_ranges_near.by_size_begin(); if (free_near == m_free_ranges_near.by_size_end()) { - WARN_LOG_FMT(POWERPC, "Failed to find free memory region in near code region."); + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in near code region."); return false; } SetCodePtr(free_near.from(), free_near.to()); @@ -857,7 +856,7 @@ bool Jit64::SetEmitterStateToFreeCodeRegion() const auto free_far = m_free_ranges_far.by_size_begin(); if (free_far == m_free_ranges_far.by_size_end()) { - WARN_LOG_FMT(POWERPC, "Failed to find free memory region in far code region."); + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in far code region."); return false; } m_far_code.SetCodePtr(free_far.from(), free_far.to()); @@ -1187,9 +1186,9 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (HasWriteFailed() || m_far_code.HasWriteFailed()) { if (HasWriteFailed()) - WARN_LOG_FMT(POWERPC, "JIT ran out of space in near code region during code generation."); + WARN_LOG_FMT(DYNA_REC, "JIT ran out of space in near code region during code generation."); if (m_far_code.HasWriteFailed()) - WARN_LOG_FMT(POWERPC, "JIT ran out of space in far code region during code generation."); + WARN_LOG_FMT(DYNA_REC, "JIT ran out of space in far code region during code generation."); return false; } diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index f596128ef918..5b37434c5700 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -973,15 +973,14 @@ void JitArm64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) { // Code generation failed due to not enough free space in either the near or far code regions. // Clear the entire JIT cache and retry. - WARN_LOG_FMT(POWERPC, "flushing code caches, please report if this happens a lot"); + 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."); + 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."); exit(-1); } @@ -992,7 +991,7 @@ bool JitArm64::SetEmitterStateToFreeCodeRegion() auto free_near = m_free_ranges_near.by_size_begin(); if (free_near == m_free_ranges_near.by_size_end()) { - WARN_LOG_FMT(POWERPC, "Failed to find free memory region in near code region."); + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in near code region."); return false; } SetCodePtr(free_near.from(), free_near.to()); @@ -1000,7 +999,7 @@ bool JitArm64::SetEmitterStateToFreeCodeRegion() auto free_far = m_free_ranges_far.by_size_begin(); if (free_far == m_free_ranges_far.by_size_end()) { - WARN_LOG_FMT(POWERPC, "Failed to find free memory region in far code region."); + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in far code region."); return false; } m_far_code.SetCodePtr(free_far.from(), free_far.to()); @@ -1276,9 +1275,9 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (HasWriteFailed() || m_far_code.HasWriteFailed()) { if (HasWriteFailed()) - WARN_LOG_FMT(POWERPC, "JIT ran out of space in near code region during code generation."); + WARN_LOG_FMT(DYNA_REC, "JIT ran out of space in near code region during code generation."); if (m_far_code.HasWriteFailed()) - WARN_LOG_FMT(POWERPC, "JIT ran out of space in far code region during code generation."); + WARN_LOG_FMT(DYNA_REC, "JIT ran out of space in far code region during code generation."); return false; } From 0a48a3b3ad5ddf1a1e6a00e4527c5a2da2e724f6 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 21 Apr 2024 09:38:53 -0700 Subject: [PATCH 217/223] Externals: minizip-ng Forward Compatibility --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 869862eb754a..fb3778851333 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -674,6 +674,8 @@ 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) +# https://github.com/zlib-ng/minizip-ng/commit/6c5f265a55f1a12a7a016cd2962feff91cff5d2e +add_definitions(-DMZ_COMPAT_VERSION=110) # This macro is for forwards compatibility with 4.0.4+ dolphin_find_optional_system_library_pkgconfig(MINIZIP minizip>=3.0.0 minizip::minizip Externals/minizip) dolphin_find_optional_system_library(LZO Externals/LZO) From e8154a529f9ecf34e1ade2376a74b7841d40019e Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 24 Mar 2024 11:49:47 +0100 Subject: [PATCH 218/223] JitArm64: Increase farcode & nearcode cache size This is a JitArm64 version of 219610d8a0e5a2c12d074314c6f2e62a4b43d7e4. Due to limitations on how far you can jump with a single AArch64 branch instruction, going above the former limit of 128 MiB of code (counting nearcode and farcode combined) requires a bit of restructuring. With the restructuring in place, the limit now is 256 MiB. See the new large comment in Jit.h for a description of the new memory layout. --- Source/Core/Common/CodeBlock.h | 6 +- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 144 ++++++++++++++++------ Source/Core/Core/PowerPC/JitArm64/Jit.h | 37 +++++- 3 files changed, 144 insertions(+), 43 deletions(-) diff --git a/Source/Core/Common/CodeBlock.h b/Source/Core/Common/CodeBlock.h index fbd4cdb00a05..9efc82edebf7 100644 --- a/Source/Core/Common/CodeBlock.h +++ b/Source/Core/Common/CodeBlock.h @@ -82,6 +82,10 @@ class CodeBlock : public T } bool IsInSpace(const u8* ptr) const { return ptr >= region && ptr < (region + region_size); } + bool IsInSpaceOrChildSpace(const u8* ptr) const + { + return ptr >= region && ptr < (region + total_region_size); + } void WriteProtect(bool allow_execute) { Common::WriteProtectMemory(region, region_size, allow_execute); @@ -106,7 +110,7 @@ class CodeBlock : public T bool HasChildren() const { return region_size != total_region_size; } u8* AllocChildCodeSpace(size_t child_size) { - ASSERT_MSG(DYNA_REC, child_size < GetSpaceLeft(), "Insufficient space for child allocation."); + ASSERT_MSG(DYNA_REC, child_size <= GetSpaceLeft(), "Insufficient space for child allocation."); u8* child_region = region + region_size - child_size; region_size -= child_size; ResetCodePtr(); diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index 1064da55175c..cf30f546c771 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -4,6 +4,7 @@ #include "Core/PowerPC/JitArm64/Jit.h" #include +#include #include "Common/Arm64Emitter.h" #include "Common/CommonTypes.h" @@ -29,13 +30,13 @@ using namespace Arm64Gen; -constexpr size_t CODE_SIZE = 1024 * 1024 * 32; +constexpr size_t NEAR_CODE_SIZE = 1024 * 1024 * 64; // We use a bigger farcode size for JitArm64 than Jit64, because JitArm64 always emits farcode // for the slow path of each loadstore instruction. Jit64 postpones emitting farcode until the // farcode actually is needed, saving it from having to emit farcode for most instructions. // TODO: Perhaps implement something similar to Jit64. But using more RAM isn't much of a problem. -constexpr size_t FARCODE_SIZE = 1024 * 1024 * 64; -constexpr size_t FARCODE_SIZE_MMU = 1024 * 1024 * 64; +constexpr size_t FAR_CODE_SIZE = 1024 * 1024 * 64; +constexpr size_t TOTAL_CODE_SIZE = NEAR_CODE_SIZE * 2 + FAR_CODE_SIZE * 2; JitArm64::JitArm64(Core::System& system) : JitBase(system), m_float_emit(this) { @@ -49,9 +50,18 @@ void JitArm64::Init() RefreshConfig(); - const size_t child_code_size = jo.memcheck ? FARCODE_SIZE_MMU : FARCODE_SIZE; - AllocCodeSpace(CODE_SIZE + child_code_size); - AddChildCodeSpace(&m_far_code, child_code_size); + // We want the regions to be laid out in this order in memory: + // m_far_code_0, m_near_code_0, m_near_code_1, m_far_code_1. + // AddChildCodeSpace grabs space from the end of the parent region, + // so we have to call AddChildCodeSpace in reverse order. + AllocCodeSpace(TOTAL_CODE_SIZE); + AddChildCodeSpace(&m_far_code_1, FAR_CODE_SIZE); + AddChildCodeSpace(&m_near_code_1, NEAR_CODE_SIZE); + AddChildCodeSpace(&m_near_code_0, NEAR_CODE_SIZE); + AddChildCodeSpace(&m_far_code_0, FAR_CODE_SIZE); + ASSERT(m_far_code_0.GetCodeEnd() == m_near_code_0.GetCodePtr()); + ASSERT(m_near_code_0.GetCodeEnd() == m_near_code_1.GetCodePtr()); + ASSERT(m_near_code_1.GetCodeEnd() == m_far_code_1.GetCodePtr()); jo.optimizeGatherPipe = true; SetBlockLinkingEnabled(true); @@ -66,9 +76,7 @@ void JitArm64::Init() InitBLROptimization(); - GenerateAsm(); - - ResetFreeMemoryRanges(); + GenerateAsmAndResetFreeMemoryRanges(); } void JitArm64::SetBlockLinkingEnabled(bool enabled) @@ -113,7 +121,7 @@ bool JitArm64::HandleFault(uintptr_t access_address, SContext* ctx) success = HandleStackFault(); // If the fault is in JIT code space, look for fastmem areas. - if (!success && IsInSpace(reinterpret_cast(ctx->CTX_PC))) + if (!success && IsInSpaceOrChildSpace(reinterpret_cast(ctx->CTX_PC))) { auto& memory = m_system.GetMemory(); if (memory.IsAddressInFastmemArea(reinterpret_cast(access_address))) @@ -153,22 +161,47 @@ void JitArm64::ClearCache() blocks.Clear(); blocks.ClearRangesToFree(); const Common::ScopedJITPageWriteAndNoExecute enable_jit_page_writes; - ClearCodeSpace(); - m_far_code.ClearCodeSpace(); + m_far_code_0.ClearCodeSpace(); + m_near_code_0.ClearCodeSpace(); + m_near_code_1.ClearCodeSpace(); + m_far_code_1.ClearCodeSpace(); RefreshConfig(); + GenerateAsmAndResetFreeMemoryRanges(); +} + +void JitArm64::GenerateAsmAndResetFreeMemoryRanges() +{ + SetCodePtr(m_near_code_1.GetWritableCodePtr(), m_near_code_1.GetWritableCodeEnd()); + m_far_code.SetCodePtr(m_far_code_1.GetWritableCodePtr(), m_far_code_1.GetWritableCodeEnd()); + + const u8* routines_near_start = GetCodePtr(); + const u8* routines_far_start = m_far_code.GetCodePtr(); + GenerateAsm(); - ResetFreeMemoryRanges(); + const u8* routines_near_end = GetCodePtr(); + const u8* routines_far_end = m_far_code.GetCodePtr(); + + ResetFreeMemoryRanges(routines_near_end - routines_near_start, + routines_far_end - routines_far_start); } -void JitArm64::ResetFreeMemoryRanges() +void JitArm64::ResetFreeMemoryRanges(size_t routines_near_size, size_t routines_far_size) { // Set the near and far code regions as unused. - m_free_ranges_near.clear(); - m_free_ranges_near.insert(GetWritableCodePtr(), GetWritableCodeEnd()); - m_free_ranges_far.clear(); - m_free_ranges_far.insert(m_far_code.GetWritableCodePtr(), m_far_code.GetWritableCodeEnd()); + m_free_ranges_far_0.clear(); + m_free_ranges_far_0.insert(m_far_code_0.GetWritableCodePtr() + routines_near_size, + m_far_code_0.GetWritableCodeEnd()); + m_free_ranges_near_0.clear(); + m_free_ranges_near_0.insert(m_near_code_0.GetWritableCodePtr(), + m_near_code_0.GetWritableCodeEnd()); + m_free_ranges_near_1.clear(); + m_free_ranges_near_1.insert(m_near_code_1.GetWritableCodePtr() + routines_near_size, + m_near_code_1.GetWritableCodeEnd()); + m_free_ranges_far_1.clear(); + m_free_ranges_far_1.insert(m_far_code_1.GetWritableCodePtr() + routines_far_size, + m_far_code_1.GetWritableCodeEnd()); } void JitArm64::Shutdown() @@ -889,11 +922,17 @@ void JitArm64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) ++last_fastmem_area; m_fault_to_handler.erase(first_fastmem_area, last_fastmem_area); - m_free_ranges_near.insert(range.first, range.second); + if (range.first < m_near_code_0.GetCodeEnd()) + m_free_ranges_near_0.insert(range.first, range.second); + else + m_free_ranges_near_1.insert(range.first, range.second); } for (auto range : blocks.GetRangesToFreeFar()) { - m_free_ranges_far.insert(range.first, range.second); + if (range.first < m_far_code_0.GetCodeEnd()) + m_free_ranges_far_0.insert(range.first, range.second); + else + m_free_ranges_far_1.insert(range.first, range.second); } blocks.ClearRangesToFree(); @@ -939,7 +978,7 @@ void JitArm64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) return; } - if (SetEmitterStateToFreeCodeRegion()) + if (std::optional code_region_index = SetEmitterStateToFreeCodeRegion()) { u8* near_start = GetWritableCodePtr(); u8* far_start = m_far_code.GetWritableCodePtr(); @@ -952,10 +991,16 @@ void JitArm64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) // Mark the memory regions that this code block uses as used in the local rangesets. u8* near_end = GetWritableCodePtr(); if (near_start != near_end) - m_free_ranges_near.erase(near_start, near_end); + { + (code_region_index == 0 ? m_free_ranges_near_0 : m_free_ranges_near_1) + .erase(near_start, near_end); + } u8* far_end = m_far_code.GetWritableCodePtr(); if (far_start != far_end) - m_free_ranges_far.erase(far_start, far_end); + { + (code_region_index == 0 ? m_free_ranges_far_0 : m_free_ranges_far_1) + .erase(far_start, far_end); + } // Store the used memory regions in the block so we know what to mark as unused when the // block gets invalidated. @@ -984,27 +1029,52 @@ void JitArm64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) exit(-1); } -bool JitArm64::SetEmitterStateToFreeCodeRegion() +std::optional JitArm64::SetEmitterStateToFreeCodeRegion() { - // Find the largest free memory blocks and set code emitters to point at them. - // If we can't find a free block return false instead, which will trigger a JIT cache clear. - auto free_near = m_free_ranges_near.by_size_begin(); - if (free_near == m_free_ranges_near.by_size_end()) + // Find some large free memory blocks and set code emitters to point at them. If we can't find + // free blocks, return std::nullopt instead, which will trigger a JIT cache clear. + const auto free_near_0 = m_free_ranges_near_0.by_size_begin(); + const auto free_near_1 = m_free_ranges_near_1.by_size_begin(); + const auto free_far_0 = m_free_ranges_far_0.by_size_begin(); + const auto free_far_1 = m_free_ranges_far_1.by_size_begin(); + + const size_t free_near_1_size = free_near_1.to() - free_near_1.from(); + const size_t free_far_1_size = free_far_1.to() - free_far_1.from(); + const size_t free_1_smallest_size = std::min(free_near_1_size, free_far_1_size); + + if (free_1_smallest_size >= 1024 * 1024) { - WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in near code region."); - return false; + // Don't use region 0 unless region 1 is getting full. This improves cache friendliness. + SetCodePtr(free_near_1.from(), free_near_1.to()); + m_far_code.SetCodePtr(free_far_1.from(), free_far_1.to()); + return std::make_optional(1); } - SetCodePtr(free_near.from(), free_near.to()); - auto free_far = m_free_ranges_far.by_size_begin(); - if (free_far == m_free_ranges_far.by_size_end()) + const size_t free_near_0_size = free_near_0.to() - free_near_0.from(); + const size_t free_far_0_size = free_far_0.to() - free_far_0.from(); + const size_t free_0_smallest_size = std::min(free_near_0_size, free_far_0_size); + + if (free_0_smallest_size == 0 && free_1_smallest_size == 0) { - WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in far code region."); - return false; + if (free_near_0_size == 0 && free_near_1_size == 0) + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in near code regions."); + else if (free_far_0_size == 0 && free_far_1_size == 0) + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in far code regions."); + return std::nullopt; } - m_far_code.SetCodePtr(free_far.from(), free_far.to()); - return true; + if (free_0_smallest_size > free_1_smallest_size) + { + SetCodePtr(free_near_0.from(), free_near_0.to()); + m_far_code.SetCodePtr(free_far_0.from(), free_far_0.to()); + return std::make_optional(0); + } + else + { + SetCodePtr(free_near_1.from(), free_near_1.to()); + m_far_code.SetCodePtr(free_far_1.from(), free_far_1.to()); + return std::make_optional(1); + } } bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.h b/Source/Core/Core/PowerPC/JitArm64/Jit.h index a572b2e38fe4..6ab99d3322f2 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.h +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.h @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -285,14 +286,16 @@ class JitArm64 : public JitBase, public Arm64Gen::ARM64CodeBlock, public CommonA void Trace(); // Finds a free memory region and sets the near and far code emitters to point at that region. - // Returns false if no free memory region can be found for either of the two. - bool SetEmitterStateToFreeCodeRegion(); + // On success, returns the index of the memory region (either 0 or 1). + // If either near code or far code is full, returns std::nullopt. + std::optional SetEmitterStateToFreeCodeRegion(); void DoDownCount(); void Cleanup(); void ResetStack(); - void ResetFreeMemoryRanges(); + void GenerateAsmAndResetFreeMemoryRanges(); + void ResetFreeMemoryRanges(size_t routines_near_size, size_t routines_far_size); void IntializeSpeculativeConstants(); @@ -372,6 +375,28 @@ class JitArm64 : public JitBase, public Arm64Gen::ARM64CodeBlock, public CommonA Arm64Gen::ARM64FloatEmitter m_float_emit; + // Because B instructions can't jump farther than +/- 128 MiB, code memory is allocated like this: + // + // m_far_code_0: x MiB of unused space, followed by 64 - x MiB of far code + // m_near_code_0: 64 MiB of near code + // m_near_code_1: x MiB of asm routines, followed by 64 - x MiB of near code + // m_far_code_1: 64 MiB of far code + // + // This ensures that: + // + // * Any code in m_near_code_0 can reach any code in m_far_code_0, and vice versa + // * Any code in m_near_code_1 can reach any code in m_far_code_1, and vice versa + // * Any near code can reach any near code + // * Any code can reach any asm routine + // + // m_far_code_0 and m_far_code_1 can't reach each other, but that isn't needed, because all blocks + // have their entry points in near code. + + Arm64Gen::ARM64CodeBlock m_near_code_0; + Arm64Gen::ARM64CodeBlock m_near_code_1; + Arm64Gen::ARM64CodeBlock m_far_code_0; + Arm64Gen::ARM64CodeBlock m_far_code_1; + Arm64Gen::ARM64CodeBlock m_far_code; bool m_in_far_code = false; @@ -380,6 +405,8 @@ class JitArm64 : public JitBase, public Arm64Gen::ARM64CodeBlock, public CommonA u8* m_near_code_end = nullptr; bool m_near_code_write_failed = false; - HyoutaUtilities::RangeSizeSet m_free_ranges_near; - HyoutaUtilities::RangeSizeSet m_free_ranges_far; + HyoutaUtilities::RangeSizeSet m_free_ranges_near_0; + HyoutaUtilities::RangeSizeSet m_free_ranges_near_1; + HyoutaUtilities::RangeSizeSet m_free_ranges_far_0; + HyoutaUtilities::RangeSizeSet m_free_ranges_far_1; }; From 697dbfee014f9eb1f8980a68a232af8aedc2aef1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 22 Apr 2024 08:41:32 +0200 Subject: [PATCH 219/223] Translation resources sync with Transifex --- Languages/po/ar.po | 3658 ++++++++++++----------- Languages/po/ca.po | 3648 ++++++++++++----------- Languages/po/cs.po | 3648 ++++++++++++----------- Languages/po/da.po | 3648 ++++++++++++----------- Languages/po/de.po | 4124 ++++++++++++++------------ Languages/po/dolphin-emu.pot | 3648 ++++++++++++----------- Languages/po/el.po | 3648 ++++++++++++----------- Languages/po/en.po | 3648 ++++++++++++----------- Languages/po/es.po | 3772 +++++++++++++----------- Languages/po/fa.po | 3648 ++++++++++++----------- Languages/po/fi.po | 3811 +++++++++++++----------- Languages/po/fr.po | 3773 +++++++++++++----------- Languages/po/hr.po | 3648 ++++++++++++----------- Languages/po/hu.po | 3852 +++++++++++++----------- Languages/po/it.po | 3766 +++++++++++++----------- Languages/po/ja.po | 3759 +++++++++++++----------- Languages/po/ko.po | 3721 ++++++++++++----------- Languages/po/ms.po | 3648 ++++++++++++----------- Languages/po/nb.po | 3650 ++++++++++++----------- Languages/po/nl.po | 4145 ++++++++++++++------------ Languages/po/pl.po | 3648 ++++++++++++----------- Languages/po/pt.po | 3648 ++++++++++++----------- Languages/po/pt_BR.po | 3763 +++++++++++++----------- Languages/po/ro.po | 3648 ++++++++++++----------- Languages/po/ru.po | 3655 ++++++++++++----------- Languages/po/sr.po | 3648 ++++++++++++----------- Languages/po/sv.po | 3692 ++++++++++++----------- Languages/po/tr.po | 5349 ++++++++++++++++++++-------------- Languages/po/zh_CN.po | 3738 +++++++++++++----------- Languages/po/zh_TW.po | 3648 ++++++++++++----------- 30 files changed, 62454 insertions(+), 50846 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index 7f24087c042d..7336e0006388 100644 --- a/Languages/po/ar.po +++ b/Languages/po/ar.po @@ -4,15 +4,15 @@ # # Translators: # mansoor, 2011 -# mansoor , 2013,2015-2023 +# mansoor , 2013,2015-2024 # Mosaab Alzoubi , 2013 msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: mansoor , 2013,2015-2023\n" +"Last-Translator: mansoor , 2013,2015-2024\n" "Language-Team: Arabic (http://app.transifex.com/delroth/dolphin-emu/language/" "ar/)\n" "Language: ar\n" @@ -69,8 +69,8 @@ msgstr "$ متغير المستخدم" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -91,19 +91,20 @@ msgstr "" "%1\n" "يريد الانضمام إلى المجموعة." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -124,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (المخزون)" @@ -142,7 +143,7 @@ msgstr "%1 (بطيء)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 msgid "" @@ -166,6 +167,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 لا يدعم هذه الميزة علي النظام الخاص بك" @@ -192,13 +198,13 @@ msgstr "%1 قد انضم" msgid "%1 has left" msgstr "%1 لقد غادر" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -214,12 +220,12 @@ msgstr "%1 is now golfing" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +242,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%" @@ -244,26 +250,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -301,20 +307,20 @@ msgstr "" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -324,23 +330,23 @@ msgstr "" msgid "& And" msgstr "& و" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&حول" @@ -348,12 +354,12 @@ msgstr "&حول" msgid "&Add Memory Breakpoint" msgstr "&إضافة نقطة توقف الذاكرة" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&إضافة رمز جديد" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&إضافة وظيفة" @@ -361,27 +367,27 @@ msgstr "&إضافة وظيفة" msgid "&Add..." msgstr "&إضافة" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&إعدادات الصوت" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&التحديث التلقائي" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&نافذة بلا حدود" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&نقاط التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&تتبع اخطاء المحاكي" @@ -389,15 +395,15 @@ msgstr "&تتبع اخطاء المحاكي" msgid "&Cancel" msgstr "&إلغاء" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&تحقق من وجود تحديثات" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&مسح الرموز" @@ -405,19 +411,24 @@ msgstr "&مسح الرموز" msgid "&Clone..." msgstr "&استنساخ" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&رمز" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&متصل" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&إعدادات ذراع التحكم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&نسخ العنوان" @@ -425,7 +436,7 @@ msgstr "&نسخ العنوان" msgid "&Create..." msgstr "&إنشاء..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&حذف" @@ -442,9 +453,9 @@ msgstr "&حذف المشاهدة" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&تحرير الرمز" @@ -452,23 +463,23 @@ msgstr "&تحرير الرمز" msgid "&Edit..." msgstr "&تحرير" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&إخراج القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&محاكاة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&تصدير" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&تصدير حفظ اللعبة" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&تصدير الحالة" @@ -476,55 +487,53 @@ msgstr "&تصدير الحالة" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&الخط" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&الإطار المسبق" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&إعدادات المظهر الحر" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&إنشاء رموز من" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub مستودع " -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&انتقل إلى بدء الوظيفة" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&إعدادات الرسومات" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&مساعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&إعدادات مفاتيح الاختصار" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&استيراد" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&استيراد حفظ اللعبة" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&استيراد الحالة" @@ -532,19 +541,19 @@ msgstr "&استيراد الحالة" msgid "&Import..." msgstr "&استيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Infinity قاعدة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&blr إدراج" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&مزج الإطارات" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -552,15 +561,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&اللغة" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&تحميل الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Load Symbol Map" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&تحميل الملف إلى العنوان الحالي" @@ -570,23 +583,23 @@ msgstr "&تحميل الملف إلى العنوان الحالي" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&تأمين المصغرات في القائمة" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&فيلم" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&صامت" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&شبكة الاتصال" @@ -595,23 +608,23 @@ msgid "&No" msgstr "&لا" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&فتح" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&خيارات" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&HLE وظائف تصحيح" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&إيقاف مؤقت" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&تشغيل" @@ -619,15 +632,15 @@ msgstr "&تشغيل" msgid "&Properties" msgstr "&خصائص" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&وضع للقراءة فقط" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&تحديث القائمة" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&تسجل" @@ -635,41 +648,45 @@ msgstr "&تسجل" msgid "&Remove" msgstr "&إزالة" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&إزالة الرمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&إعادة تسمية الرمز" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&إعادة" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&أدارة حزمة الموارد" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "&Skylanders منفذ" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&حد السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&إيقاف " @@ -677,15 +694,19 @@ msgstr "&إيقاف " msgid "&Theme:" msgstr "&المظهر" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&المواضيع" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&أدوات" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&إلغاء تحميل القرص" @@ -695,17 +716,17 @@ msgstr "&إلغاء تحميل القرص" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&مشاهدة" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&الموقع" @@ -717,11 +738,11 @@ msgstr "&معلومات عن اللعبة" msgid "&Yes" msgstr "&نعم" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' لم يتم العثور على أي أسماء رموز تم إنشاؤها" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' لم يتم العثور على المسح بحثًا عن الوظائف الشائعة بدلاً من ذلك" @@ -737,7 +758,7 @@ msgstr "(فاتح)" msgid "(System)" msgstr "(النظام)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(مضيف)" @@ -745,7 +766,7 @@ msgstr "(مضيف)" msgid "(off)" msgstr "(ايقاف)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -765,15 +786,15 @@ msgstr ", فاصلة" msgid "- Subtract" msgstr "- طرح" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--غير معروف--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -784,12 +805,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ تقسيم" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -801,7 +822,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -809,11 +830,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -825,17 +846,17 @@ msgstr "16 Mbit (251 blocks)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16-bit عدد صحيح موقع" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16-bit عدد صحيح غير موقع" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -847,11 +868,11 @@ msgstr "16x Anisotropic" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -863,7 +884,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x Anisotropic" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -875,25 +896,25 @@ msgstr "32 Mbit (507 blocks)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32-bit Float" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32-bit عدد صحيح موقع" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -907,11 +928,11 @@ msgstr "3D عمق" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -919,7 +940,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -935,7 +956,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x Anisotropic" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -947,22 +968,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64-bit Float" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64-bit عدد صحيح موقع" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64-bit عدد صحيح غير موقع" @@ -970,11 +991,11 @@ msgstr "64-bit عدد صحيح غير موقع" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -986,13 +1007,13 @@ msgstr "8 Mbit (123 blocks)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8-bit عدد صحيح موقع" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8-bit عدد صحيح غير موقع" @@ -1008,7 +1029,7 @@ msgstr "8x Anisotropic" msgid "< Less-than" msgstr "< أقل-من" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "<لا شيء>" @@ -1020,12 +1041,12 @@ msgstr "<لغة النظام>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "إذا لم تكن متأكدا فاترك هذا دون تحديد" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1057,12 +1078,12 @@ msgstr "" msgid "> Greater-than" msgstr "> أكثر-من" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "جلسة لعب الشبكة جارية بالفعل!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1079,7 +1100,7 @@ msgstr "" " wad سيؤدي تثبيت \n" "هذا إلى استبداله بشكل لا رجعة فيه. استمر ؟" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "القرص بالفعل على وشك أن يتم إدراجه." @@ -1091,11 +1112,11 @@ msgstr "" "مجموعة من الميزات لجعل الألوان أكثر دقة ، بما يتناسب مع مساحة الألوان " "المخصصة لألعاب وي و جيم كيوب." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "لا يمكن تحميل حالة الحفظ دون تحديد لعبة لتشغيلها" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1115,6 +1136,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "لا يمكن تشغيل المزامنة إلا عند تشغيل لعبة وي." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1148,7 +1173,7 @@ msgstr "" "دعم ريموت وي في اللعب عبر الشبكة تجريبي وقد لا يعمل بشكل الصحيح.\n" "استخدام على مسؤوليتك الخاصة.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR رموز" @@ -1157,8 +1182,8 @@ msgstr "AR رموز" msgid "AR Codes" msgstr "AR رموز" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1172,7 +1197,7 @@ msgid "About Dolphin" msgstr "ترجمة بواسطة منصور العسيري" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "التسارع" @@ -1188,10 +1213,10 @@ msgstr "ضبط" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "إعدادات الإنجاز" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "الإنجازات" @@ -1277,19 +1302,19 @@ msgstr "تفعيل المحادثة في اللعب عبر الشبكة" msgid "Active" msgstr "نشط" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "النشطة Infinity شخصيات" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "قائمة انتظار مؤشر الترابط النشط" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "المواضيع النشطة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "محول" @@ -1297,7 +1322,7 @@ msgstr "محول" msgid "Adapter Detected" msgstr "كشف عن محول" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "محول" @@ -1307,7 +1332,7 @@ msgstr "محول" msgid "Add" msgstr "أضف" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "إضافة نقطة توقف" @@ -1336,51 +1361,48 @@ msgstr "أضف نقطة توقف الذاكرة" msgid "Add memory &breakpoint" msgstr "أضف الذاكرة ونقطة التوقف" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "اضف إليه &تنبية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "أضف" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "عنوان" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "مساحة العنوان" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "مساحة العنوان حسب حالة وحدة المعالجة المركزية" @@ -1454,12 +1476,12 @@ msgid "Advance Game Port" msgstr "منفذ جيم بوي ادفانس" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "خيارات متقدمة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "الإعدادات المتقدمة" @@ -1474,15 +1496,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1492,16 +1514,16 @@ msgstr "أفريقيا" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "هواء" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "محاذاة لطول نوع البيانات" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "الكل" @@ -1515,11 +1537,11 @@ msgid "All Double" msgstr "كل مزدوج" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1527,7 +1549,7 @@ msgid "All Files" msgstr "كل الملفات" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "(*) كل الملفات" @@ -1536,7 +1558,7 @@ msgstr "(*) كل الملفات" msgid "All Float" msgstr "كل تعويم" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "GC/Wii جميع ملفات" @@ -1545,8 +1567,8 @@ msgstr "GC/Wii جميع ملفات" msgid "All Hexadecimal" msgstr "كل سداسي عشري" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "جميع حالات الحفظ (*.sav *.s##);; كل الملفات (*)" @@ -1558,7 +1580,7 @@ msgstr "جميع الأعداد الصحيحة الموقعة" msgid "All Unsigned Integer" msgstr "جميع الأعداد الصحيحة غير الموقعة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "(*) جميع الملفات" @@ -1570,15 +1592,15 @@ msgstr "جميع رموز اللاعبين متزامنة." msgid "All players' saves synchronized." msgstr "حفظ جميع اللاعبين متزامنة." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "السماح بإعدادات المنطقة الغير متطابقة" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "السماح بالإبلاغ عن إحصائيات الاستخدام" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD Card السماح للكتابة على" @@ -1606,7 +1628,7 @@ msgstr "دائما" msgid "Always Connected" msgstr "متصل دائما" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "دائما على الأعلى" @@ -1644,15 +1666,15 @@ msgstr "التنعيم" msgid "Any Region" msgstr "أي منطقة" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "إلحاق التوقيع ل" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "إلحاق ب & ملف التوقيع الموجود" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "تطبيق ملف التوقيع" @@ -1670,7 +1692,7 @@ msgstr "تاريخ الإصدار" msgid "Apply" msgstr "تطبيق" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "تطبيق ملف التوقيع" @@ -1702,12 +1724,16 @@ msgstr "هل أنت واثق؟" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "تناسب الأبعاد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "تناسب الأبعاد" @@ -1715,7 +1741,7 @@ msgstr "تناسب الأبعاد" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1723,7 +1749,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1740,7 +1766,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "اثنان على الأقل من ملفات الحفظ المحددة لهما نفس اسم الملف الداخلي" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "أرفق موشن بلس" @@ -1748,11 +1774,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 "إعدادات امتداد الصوت" @@ -1764,12 +1790,12 @@ msgstr "أستراليا" msgid "Author" msgstr "الكاتب" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "المؤلفون" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "تلقائي" @@ -1777,11 +1803,7 @@ msgstr "تلقائي" msgid "Auto (Multiple of 640x528)" msgstr "تلقائي (Multiple of 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "إعدادات التحديث التلقائي" @@ -1797,7 +1819,7 @@ msgstr "" "\n" "يرجى تحديد دقة داخلية محددة." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "ضبط تلقائي لحجم النافذة" @@ -1805,32 +1827,32 @@ msgstr "ضبط تلقائي لحجم النافذة" msgid "Auto-Hide" msgstr "إخفاء تلقائي" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "RSO الكشف التلقائي عن وحدات" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "تزامن تلقائيا مع المجلد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "مساعدة" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1838,38 +1860,42 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "غير صحيحه. الدلفين سيخرج الآن BAT " -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP تسجل" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "الخلفية" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "الخلفية" @@ -1885,13 +1911,13 @@ msgstr "خلفية الإدخال" msgid "Backward" msgstr "الى الوراء" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "تم توفير عنوان غير صحيح." @@ -1899,20 +1925,20 @@ msgstr "تم توفير عنوان غير صحيح." msgid "Bad dump" msgstr "تفريغ سيئ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "تم توفير إزاحة غير صالحة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "قيمة غير صالحة المقدمة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "الشعار" @@ -1932,15 +1958,15 @@ msgstr "شريط" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "الأولوية الأساسية" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "الأساسية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "الإعدادات الأساسية" @@ -1948,15 +1974,15 @@ msgstr "الإعدادات الأساسية" msgid "Bass" msgstr "صوت عميق" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "لا يمكن استخدام وضع الدُفعات دون تحديد لعبة لإطلاقها" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "بطارية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (مرة في الشهر)" @@ -1980,31 +2006,33 @@ msgstr "Bicubic: Mitchell-Netravali" msgid "Bilinear" msgstr "Bilinear" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Binary SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Binary SSL (read)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Binary SSL (write)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "(kbps) معدل البت" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "حجم الكتلة" @@ -2013,7 +2041,7 @@ msgstr "حجم الكتلة" msgid "Block Size:" msgstr "حجم الكتلة" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "حظر" @@ -2042,32 +2070,143 @@ msgstr "" "libusb تم تمكين وضع عبور البلوتوث ولكن تم تصميم دولفين بدون\n" "لا يمكن استخدام وضع العبور" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "التمهيد لإيقاف مؤقت" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "ملء الشاشة بلا حدود" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "اسفل" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "%1 فرع" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "الفروع" @@ -2105,11 +2244,11 @@ msgstr "(XLink Kai) محول النطاق العريض" msgid "Broadband Adapter (tapserver)" msgstr "(tapserver) محول النطاق العريض" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "خطأ محول النطاق العريض" @@ -2119,11 +2258,11 @@ msgstr "خطأ محول النطاق العريض" msgid "Broadband Adapter MAC Address" msgstr "عنوان ماك لمحول النطاق العريض" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "مستعرض جلسات اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "حجم المخزن المؤقت" @@ -2155,7 +2294,7 @@ msgstr "زر" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2171,7 +2310,7 @@ msgstr "زر" msgid "Buttons" msgstr "الأزرار" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2181,11 +2320,11 @@ msgstr "" msgid "C Stick" msgstr "C عصا" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "إنشاء ملف التوقيع" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP تسجيل" @@ -2197,7 +2336,7 @@ msgstr "محرك محاكاة وحدة المعالجة المركزية" msgid "CPU Options" msgstr "خيارات المعالج" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2205,14 +2344,14 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (أبطأ)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "حساب" @@ -2224,11 +2363,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "معايرة" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "المعايرة" @@ -2236,19 +2375,19 @@ msgstr "المعايرة" msgid "Calibration Period" msgstr "فترة المعايرة" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "المتصلين" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "المكالمات" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Callstack" @@ -2257,66 +2396,78 @@ msgid "Camera 1" msgstr "كاميرا 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "لا يمكن تعديلها بعد" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} لا يمكن العثور على ريموت وي من خلال مقبض الاتصال" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "إلغاء" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "إلغاء المعايرة" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "Cannot SingleStep the FIFO. Use Frame Advance instead." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "WAD لا يمكن تشغيل هذا\n" "NAND لأنه لا يمكن تثبيته على" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "لا يمكن مقارنة القيمة الأخيرة في البحث الأول" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Cannot find the GC IPL." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2324,19 +2475,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "لا يمكن التحديث بدون نتائج" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "لا يمكن ضبط بطاقة الذاكرة على مسار فارغ" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Cannot start the game, because the GC IPL could not be found." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2354,7 +2507,7 @@ msgstr "مركز" msgid "Center Mouse" msgstr "ماوس مركزي" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "المركز و المعايرة" @@ -2362,7 +2515,7 @@ msgstr "المركز و المعايرة" msgid "Change &Disc" msgstr "تغيير &القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "تغيير &القرص" @@ -2370,7 +2523,7 @@ msgstr "تغيير &القرص" msgid "Change Disc" msgstr "تغيير القرص" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "تغيير الأقراص تلقائيا" @@ -2378,7 +2531,7 @@ msgstr "تغيير الأقراص تلقائيا" msgid "Change the disc to {0}" msgstr "{0} قم بتغيير القرص إلى" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2407,7 +2560,7 @@ msgstr "سيحدث تغيير الاسرار فقط عند إعادة تشغيل msgid "Channel Partition (%1)" msgstr "(%1) قسم القناة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "الحرف الذي تم إدخاله غير صالح" @@ -2419,15 +2572,15 @@ msgstr "محادثه" msgid "Cheat Code Editor" msgstr "محرر رمز الأسرار" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "بحث عن اسرار" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "NAND تحقق من" @@ -2435,7 +2588,7 @@ msgstr "NAND تحقق من" msgid "Check for Game List Changes in the Background" msgstr "تحقق من تغييرات قائمة الألعاب في الخلفية" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "تحقق من وجود تحديثات" @@ -2455,27 +2608,27 @@ msgstr "اختباري" msgid "China" msgstr "الصين" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "اختر" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "اختيار ملف لفتح" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "اختر ملفًا لفتحه أو إنشائه" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "اختيار ملف الإدخال ذي الأولوية" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "اختر ملف الإدخال الثانوي" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "GCI اختر المجلد الأساسي" @@ -2502,15 +2655,19 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "مسح" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "مسح ذاكرة التخزين المؤقت" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "مسح الفتحه " @@ -2518,7 +2675,7 @@ msgstr "مسح الفتحه " msgid "Clock Override" msgstr "تجاوز السرعة" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "استنساخ و &تحرير الرمز" @@ -2527,38 +2684,22 @@ msgstr "استنساخ و &تحرير الرمز" msgid "Close" msgstr "إغلاق" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "الإعدادات العامة" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "رمز" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "لم يتم تنفيذ التعليمات البرمجية" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "تم تنفيذ التعليمات البرمجية" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" msgstr "رمز" @@ -2583,7 +2724,11 @@ msgstr "تصحيح الألوان" msgid "Color Space" msgstr "مساحة اللون" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "دمج اثنين من ملفات التوقيع" @@ -2616,7 +2761,7 @@ msgstr "" "من الممكن أن يكون هذا تفريغًا جيدًا مقارنة بإصدار متجر وي يو للعبة. لا تستطيع " "دولفين التحقق من ذلك." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "تجميع التظليل قبل البدء" @@ -2624,9 +2769,9 @@ msgstr "تجميع التظليل قبل البدء" msgid "Compiling Shaders" msgstr "تجميع التظليل" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "نوع الضغط" @@ -2639,10 +2784,16 @@ msgstr "مستوى الضغط" msgid "Compression:" msgstr "نوع الضغط" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2715,7 +2866,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "إعدادات" @@ -2748,13 +2899,13 @@ msgstr "إعداد الإخراج" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "تأكيد " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "تأكيد تغيير الخلفية" @@ -2762,7 +2913,7 @@ msgstr "تأكيد تغيير الخلفية" msgid "Confirm on Stop" msgstr "تأكيد على التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2773,15 +2924,15 @@ msgstr "التأكيد" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "ربط لوح الميزان" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "ربط لوحة مفاتيح يو إس بي" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "%1 ربط ريموت وي" @@ -2801,7 +2952,7 @@ msgstr "ربط ريموت وي 3" msgid "Connect Wii Remote 4" msgstr "ربط ريموت وي 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "ربط ريموت وي " @@ -2842,7 +2993,7 @@ msgstr "Control NetPlay Golf Mode" msgid "Control Stick" msgstr "عصا التحكم" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "ملف تعريف ذراع التحكم" @@ -2866,7 +3017,7 @@ msgstr "ملف تعريف ذراع التحكم 4" msgid "Controller Settings" msgstr "إعدادات ذراع التحكم" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "ذراع التحكم" @@ -2940,8 +3091,8 @@ msgstr "التقارب" msgid "Convergence:" msgstr "التقارب" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "فشل تحويل." @@ -2949,9 +3100,9 @@ msgstr "فشل تحويل." msgid "Convert" msgstr "تحويل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "تحويل ملف إلى مجلد الآن" @@ -2959,9 +3110,9 @@ msgstr "تحويل ملف إلى مجلد الآن" msgid "Convert File..." msgstr "تحويل الملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "تحويل المجلد إلى ملف الآن" @@ -2985,8 +3136,8 @@ msgstr "" "هل تريد المتابعة على أي حال؟" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "جارٍ التحويل ..." @@ -3024,15 +3175,15 @@ msgstr "" msgid "Copy" msgstr "نسخ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "نسخ &الوظيفة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Copy &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "نسخ العنوان" @@ -3040,19 +3191,19 @@ msgstr "نسخ العنوان" msgid "Copy Failed" msgstr "فشل النسخ" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Copy Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "قيمة النسخ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Copy code &line" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "نسخ العنوان المستهدف" @@ -3070,6 +3221,11 @@ msgstr "B نسخ إلى" msgid "Core" msgstr "النواة" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "مساحة اللون الصحيحة" @@ -3079,7 +3235,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "كلفة" @@ -3167,7 +3323,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "{0} تعذر التعرف على الملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "لا يمكن حفظ التغييرات الخاصة بك" @@ -3204,13 +3360,13 @@ msgstr "لا يمكن قراءة الملف" msgid "Country:" msgstr "الدولة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "انشاء" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Infinity قم بإنشاء ملف" @@ -3219,15 +3375,11 @@ msgstr "Infinity قم بإنشاء ملف" msgid "Create New Memory Card" msgstr "إنشاء بطاقة ذاكرة جديدة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Skylander قم بإنشاء ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Skylander إنشاء مجلد" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "إنشاء تعيينات للأجهزة الأخرى" @@ -3236,17 +3388,8 @@ msgstr "إنشاء تعيينات للأجهزة الأخرى" msgid "Create..." msgstr "إنشاء..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "المنشئ" @@ -3254,11 +3397,11 @@ msgstr "المنشئ" msgid "Critical" msgstr "حرج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "اقتصاص" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3270,26 +3413,26 @@ msgstr "" msgid "Crossfade" msgstr "الإبهات المتداخل" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "المنطقة الحالية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "القيمة الحالية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "السياق الحالي" @@ -3297,27 +3440,31 @@ msgstr "السياق الحالي" msgid "Current game" msgstr "لعبة الحالية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "الموضوع الحالي" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "مساحة العنوان المخصصة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3329,13 +3476,13 @@ msgstr "خيارات تخصيص وقت النظام " msgid "Custom:" msgstr "مخصص:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "تخصيص" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3360,7 +3507,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" @@ -3368,15 +3515,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 (بطيء)" @@ -3403,7 +3550,7 @@ msgstr "بساط الرقص" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "مظلم" @@ -3419,7 +3566,7 @@ msgstr "(%1) قسم البيانات" msgid "Data Transfer" msgstr "نقل البيانات" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "نوع البيانات" @@ -3453,8 +3600,8 @@ msgstr "المنطقة الميتة" msgid "Debug" msgstr "التصحيح" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "التصحيح" @@ -3463,7 +3610,7 @@ msgstr "التصحيح" msgid "Decimal" msgstr "عشري" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "جودة فك التشفير:" @@ -3510,7 +3657,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 "الجهاز الافتراضي" @@ -3522,11 +3669,11 @@ msgstr "الخط الافتراضي" msgid "Default ISO:" msgstr "صورة القرص الافتراضية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "الموضوع الافتراضي" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Defer EFB Cache Invalidation" @@ -3534,7 +3681,7 @@ msgstr "Defer EFB Cache Invalidation" msgid "Defer EFB Copies to RAM" msgstr "إلى ذاكرة الوصول العشوائي EFB تأجيل نسخ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3574,26 +3721,53 @@ msgstr "نسبة العمق" msgid "Depth:" msgstr "العمق" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "الوصف" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "الوصف" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "منفصل" @@ -3601,7 +3775,7 @@ msgstr "منفصل" msgid "Detect" msgstr "كشف" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3609,7 +3783,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "تحديد النواة المزدوجة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (عدة مرات في اليوم)" @@ -3618,7 +3792,7 @@ msgid "Device" msgstr "أداة" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Device PID (e.g., 0305)" @@ -3627,11 +3801,11 @@ msgid "Device Settings" msgstr "إعدادات الجهاز" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "جهاز" @@ -3639,11 +3813,7 @@ msgstr "جهاز" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "تقوم بتعتيم الشاشة بعد خمس دقائق من الخمول ." @@ -3655,12 +3825,12 @@ msgstr "اتصال مباشر" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "غير متصل" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "تعطيل" @@ -3672,7 +3842,7 @@ msgstr "تعطيل المربع المحيط" msgid "Disable Copy Filter" msgstr "Disable Copy Filter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" @@ -3680,11 +3850,11 @@ msgstr "Disable EFB VRAM Copies" msgid "Disable Emulation Speed Limit" msgstr "تعطيل محاكاة الحد الأقصى للسرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Fastmem تعطيل" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3692,11 +3862,11 @@ msgstr "" msgid "Disable Fog" msgstr "تعطيل الضباب" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3711,7 +3881,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4061,15 +4227,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "الهولندية" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "خروج" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4099,7 +4265,7 @@ msgstr "بداية تحديث الذاكرة" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "أرض" @@ -4112,7 +4278,7 @@ msgstr "شرق اسيا" msgid "Edit Breakpoint" msgstr "تحرير نقطة التوقف" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "حرر" @@ -4128,15 +4294,15 @@ msgstr "تأثير" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "فعال" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "الأولوية الفعالة" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "إكسابايت" @@ -4146,7 +4312,7 @@ msgstr "إخراج القرص" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "عنصر" @@ -4154,11 +4320,11 @@ msgstr "عنصر" msgid "Embedded Frame Buffer (EFB)" msgstr "(EFB) مخزن مؤقت للإطار المضمن" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "فارغة" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "المحاكي قيد التشغيل بالفعل" @@ -4166,11 +4332,11 @@ msgstr "المحاكي قيد التشغيل بالفعل" msgid "Emulate Disc Speed" msgstr "محاكاة سرعة القرص" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Infinity محاكاة قاعدة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Skylander محاكاة بوابة" @@ -4184,7 +4350,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "تمت محاكاة أجهزة يو إس بي" @@ -4207,28 +4373,16 @@ msgstr "" msgid "Emulation Speed" msgstr "سرعة المحاكاة " -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "يجب البدء في المحاكاة للتسجيل." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "تمكين طبقات التحقق من واجهة برمجة التطبيقات" @@ -4240,11 +4394,11 @@ msgstr "تمكين علامة الإنجاز" msgid "Enable Achievements" msgstr "تمكين الإنجازات" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "تمكين تمديد الصوت " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "تمكين الأسرار" @@ -4264,7 +4418,7 @@ msgstr "تمكين واجهة مستخدم التصحيح" msgid "Enable Dual Core" msgstr "تمكين ثنائي النواة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Enable Dual Core (لزيادة السرعة)" @@ -4284,7 +4438,7 @@ msgstr "تمكين ظهور الإنجازات " msgid "Enable FPRF" msgstr "FPRF تمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "تمكين تعديلات الرسومات" @@ -4310,6 +4464,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "تمكين المتصدرين" @@ -4323,7 +4481,7 @@ msgstr "MMU تمكين" msgid "Enable Progress Notifications" msgstr "تمكين إشعارات التقدم" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "تمكين المسح التدريجي" @@ -4336,11 +4494,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "تمكين الهزاز" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "تمكين شاشة التوقف" @@ -4352,15 +4510,15 @@ msgstr "تمكين بيانات مكبر صوت" msgid "Enable Unofficial Achievements" msgstr "تمكين الإنجازات غير الرسمية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "تمكين تقارير إحصائيات الاستخدام " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink عبر WiiConnect24 قم بتمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "تمكين الإطار الشبكي" @@ -4432,7 +4590,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4465,7 +4623,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4473,7 +4631,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4490,7 +4648,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 "لتمكين تمديد الصوت لتتناسب مع سرعة المحاكاة." @@ -4517,7 +4675,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4525,7 +4683,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4533,7 +4691,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4562,7 +4720,7 @@ msgstr "لم يتم تهيئة الشبكة" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "الإنجليزية" @@ -4571,7 +4729,7 @@ msgstr "الإنجليزية" msgid "Enhancements" msgstr "تحسينات" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4593,11 +4751,17 @@ msgstr "أدخل عنوان الماك ادرس لمحول البرودباند msgid "Enter password" msgstr "أدخل كلمة المرور" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Enter the RSO module address:" @@ -4606,8 +4770,8 @@ msgstr "Enter the RSO module address:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4618,45 +4782,51 @@ msgstr "Enter the RSO module address:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4666,16 +4836,16 @@ msgstr "Enter the RSO module address:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "خطأ" @@ -4692,9 +4862,9 @@ msgstr "%1 : خطأ في فتح المحول" msgid "Error collecting save data!" msgstr "خطأ في جمع البيانات المحفوظة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "خطأ في تحويل القيمة" @@ -4706,7 +4876,7 @@ msgstr "خطأ في تحميل اللغة المحددة. العودة إلى ا msgid "Error obtaining session list: %1" msgstr "خطأ في الحصول على قائمة الجلسة: 1%" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "حدث خطأ أثناء تحميل بعض حزم النسيج" @@ -4772,7 +4942,7 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "خطأ: لا يدعم هذا الإصدار وذراع تحكم جيم بوي أدفانس التي تمت مضاهاتها" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4780,7 +4950,7 @@ msgstr "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4801,40 +4971,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "أوروبا" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "مستثني: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "مستثني: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Exclusive Ubershaders" @@ -4842,7 +4984,7 @@ msgstr "Exclusive Ubershaders" msgid "Exit" msgstr "خروج" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "توقع + أو قوس إغلاق" @@ -4850,7 +4992,7 @@ msgstr "توقع + أو قوس إغلاق" msgid "Expected arguments: " msgstr "الحجج المتوقعة" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "من المتوقع إغلاق القوسين" @@ -4862,15 +5004,15 @@ msgstr "الفاصلة المتوقعة" msgid "Expected end of expression." msgstr "نهاية التعبير المتوقعة" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "الاسم المتوقع للإدخال" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "توقع فتح قوس" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "بداية التعبير المتوقعة" @@ -4878,11 +5020,11 @@ msgstr "بداية التعبير المتوقعة" msgid "Expected variable name." msgstr "اسم المتغير المتوقع" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "تجريبي" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "تصدير جميع حفظ وي" @@ -4897,7 +5039,7 @@ msgstr "فشل التصدير" msgid "Export Recording" msgstr "تصدير تسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "تصدير تسجيل" @@ -4925,14 +5067,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "تم التصدير %n الحفظ (الكل)" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "ملحق" @@ -4953,7 +5095,7 @@ msgstr "خارجي" msgid "External Frame Buffer (XFB)" msgstr "(XFB) مخزن مؤقت للإطار الخارجي" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "NAND استخراج الشهادات من" @@ -4986,12 +5128,12 @@ msgid "Extracting Directory..." msgstr "استخراج الملف" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO Player" @@ -5011,7 +5153,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "فشل في إضافة هذه الجلسة إلى فهرس اللعب عبر الشبكة: 1%" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5019,12 +5161,12 @@ msgstr "Failed to append to signature file '%1'" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Skylander فشل في مسح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -5052,19 +5194,20 @@ msgstr "D3D12 فشل إنشاء موارد عمومية" msgid "Failed to create DXGI factory" msgstr "Failed to create DXGI factory" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Infinity فشل إنشاء ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Skylander فشل إنشاء ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -5085,15 +5228,15 @@ msgstr "فشل حذف الملف المحدد." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "فشل تحميل الرموز." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "فشل تفريغ٪ 1: لا يمكن فتح الملف" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "فشل تفريغ٪ 1: فشل في الكتابة إلى الملف" @@ -5106,7 +5249,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "فشل تصدير ملفات الحفظ التالية:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "NAND فشل استخراج شهادات من" @@ -5132,35 +5275,31 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "D3D فشل في العثور على واحد أو أكثر من رموز" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "\"%1\" فشل الاستيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "فشل استيراد ملف الحفظ. الرجاء تشغيل اللعبة مرة واحدة ، ثم المحاولة مرة أخرى" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "فشل في التهيئة الأساسية" @@ -5171,7 +5310,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "فشل في تهيئة فئات العارض" @@ -5180,11 +5319,11 @@ msgid "Failed to install pack: %1" msgstr "%1 :فشل تثبيت الحزمة" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "NAND فشل تثبيت هذا العنوان على" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5192,8 +5331,8 @@ msgstr "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Failed to load RSO module at %1" @@ -5205,19 +5344,21 @@ msgstr "d3d11.dll فشل تحميل" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll فشل تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Failed to load map file '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Skylander فشل تحميل ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "فشل تحميل الملف القابل للتنفيذ إلى الذاكرة." @@ -5227,13 +5368,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "فشل في تعديل Skylander" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "'%1' فشل في الفتح" @@ -5241,6 +5390,10 @@ msgstr "'%1' فشل في الفتح" msgid "Failed to open Bluetooth device: {0}" msgstr "{0} فشل في فتح جهاز بلوتوث" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "فشل في فتح ملف الأعداد" @@ -5269,28 +5422,32 @@ msgstr "" msgid "Failed to open file." msgstr "فشل فتح ملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "فشل في فتح الخادم" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Infinity فشل في فتح ملف" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Skylander فشل في فتح ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5312,7 +5469,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Redump.org فشل تحليل بيانات" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "فشل تحليل القيمة المحددة في نوع البيانات المستهدفة." @@ -5334,31 +5491,34 @@ msgstr "\"{0}\" فشلت القراءة من ملف الإدخال" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "فشل في قراءة ملف Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "فشل في قراءة ملف Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5397,31 +5557,31 @@ msgstr "" "فشل في إعادة تعيين مجلد إعادة توجيه اللعب عبر الشبكة. تحقق من أذونات الكتابة " "الخاصة بك" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Failed to save FIFO log." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5474,7 +5634,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "فشل" @@ -5482,11 +5642,11 @@ msgstr "فشل" msgid "Fair Input Delay" msgstr "تأخير الإدخال العادل" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "المنطقة الاحتياطية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "المنطقة الاحتياطية" @@ -5499,7 +5659,7 @@ msgstr "سريع" msgid "Fast Depth Calculation" msgstr "سرعة حساب العمق" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5510,11 +5670,11 @@ msgstr "" msgid "Field of View" msgstr "مجال الرؤية" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "رقم الشكل:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "نوع الشكل" @@ -5522,9 +5682,9 @@ msgstr "نوع الشكل" msgid "File Details" msgstr "تفاصيل الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "تنسيق الملف" @@ -5536,20 +5696,20 @@ msgstr "تنسيق الملف" msgid "File Info" msgstr "معلومات الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "اسم الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "مسار الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "حجم الملف" @@ -5557,7 +5717,7 @@ msgstr "حجم الملف" msgid "File Size:" msgstr "حجم الملف" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "الملف لا يحتوي على رموز." @@ -5591,15 +5751,15 @@ msgstr "نظام الملفات" msgid "Filters" msgstr "تصفية" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "بحث عن التالي" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "بحث عن السابق" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "الانتهاء من المعايرة" @@ -5613,7 +5773,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "نار" @@ -5629,31 +5789,32 @@ msgstr "إصلاح المجاميع الاختبارية" msgid "Fix Checksums Failed" msgstr "فشل إصلاح المجموع الاختباري" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "الأعلام" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "عدد عشري" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Follow &branch" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "للحصول على أفضل النتائج ، يرجى نقل إدخالك ببطء إلى جميع المناطق المحتملة." @@ -5664,13 +5825,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5678,7 +5839,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" @@ -5710,11 +5871,11 @@ msgstr "فرض الاستماع منفذ" msgid "Force Nearest" msgstr "Force Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5751,17 +5912,17 @@ msgstr "إلى الأمام" msgid "Forward port (UPnP)" msgstr "Forward port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Found %1 results for \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "%1 الإطار" @@ -5782,7 +5943,7 @@ msgstr "زيادة سرعة الإطار المسبق" msgid "Frame Advance Reset Speed" msgstr " إعادة تعيين سرعة الإطار المسبق" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "تفريغ الإطار" @@ -5790,7 +5951,7 @@ msgstr "تفريغ الإطار" msgid "Frame Range" msgstr "مجموعة الإطار " -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5814,7 +5975,7 @@ msgstr "%1 ملفات حرة" msgid "Free Look Control Type" msgstr "نوع التحكم في المظهر الحر" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "%1 تحكم في المظهر الحر" @@ -5849,7 +6010,7 @@ msgstr "نظرة حرة" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "الفرنسية" @@ -5873,7 +6034,7 @@ msgstr "من" msgid "From:" msgstr "من" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "شاشة كاملة" @@ -5905,7 +6066,7 @@ msgstr "جيم بوي أدفانس" msgid "GBA Port %1" msgstr "%1 جيم بوي أدفانس منفذ" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "إعدادات جيم بوي أدفانس" @@ -6021,26 +6182,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "اللعبة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "جيم بوي أدفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "(*.gba) جيم بوي ادفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "%1 جيم بوي أدفانس في منفذ" @@ -6068,8 +6229,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "معرف اللعبة" @@ -6133,11 +6294,11 @@ msgstr "محول وي يو لذراع تحكم جيم كيوب" msgid "GameCube Adapter for Wii U at Port %1" msgstr "محول تحكم جيم كيوب لجهاز وي يو في منفذ %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "تحكم جيم كيوب" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "تحكم جيم كيوب في منفذ %1" @@ -6145,11 +6306,11 @@ msgstr "تحكم جيم كيوب في منفذ %1" msgid "GameCube Controllers" msgstr "تحكم جيم كيوب" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "لوحة المفاتيح جيم كيوب" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "لوحة مفاتيح جيم كيوب في منفذ %1" @@ -6162,11 +6323,11 @@ msgid "GameCube Memory Cards" msgstr "بطاقة الذاكرة جيم كيوب" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "بطاقات ذاكرة جيم كيوب (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "فتحة ميكروفون جيم كيوب %1" @@ -6194,7 +6355,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko رموز" @@ -6204,35 +6365,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "عام" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "العامة و الخيارات" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "إنشاء هوية جديد للحصائيات " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "الألمانية" @@ -6244,18 +6405,18 @@ msgstr "ألمانيا" msgid "GetDeviceList failed: {0}" msgstr "فشل الحصول على قائمة الأجهزة: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "غيغابايت" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "العمالقة" @@ -6268,8 +6429,8 @@ msgid "Good dump" msgstr "تفريغ جيد" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "الرسومات" @@ -6308,7 +6469,7 @@ msgstr "اليسار أخضر" msgid "Green Right" msgstr "اليمين أخضر" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "شبكة" @@ -6317,7 +6478,7 @@ msgstr "شبكة" msgid "Guitar" msgstr "Guitar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "جيروسكوب" @@ -6345,36 +6506,35 @@ msgstr "" msgid "Hacks" msgstr "هاك" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "رأس" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "مساعدة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "مستوى البطل" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Hex Byte String" @@ -6387,7 +6547,11 @@ msgstr "ست عشرية" msgid "Hide" msgstr "إخفاء" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "إخفاء الكل" @@ -6403,12 +6567,12 @@ msgstr "إخفاء جلسات العمل غير المتوافقة" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "الأعلى" @@ -6417,14 +6581,8 @@ msgstr "الأعلى" msgid "Hit Strength" msgstr "ضرب بقوة" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "مجال الرؤية أفقي" @@ -6441,7 +6599,7 @@ msgstr "رمز المضيف" msgid "Host Input Authority" msgstr "سلطة إدخال المضيف" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "حجم المضيف" @@ -6469,16 +6627,16 @@ msgstr "تمكين سلطة إدخال المضيف" msgid "Host with NetPlay" msgstr "استضافة لعب عبر الشبكة" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "اسم المضيف" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "إعدادات مفاتيح الاختصار" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "مفاتيح الاختصار" @@ -6487,7 +6645,7 @@ msgstr "مفاتيح الاختصار" msgid "Hotkeys Require Window Focus" msgstr "تتطلب مفاتيح الاختصار التركيز على النافذة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybrid Ubershaders" @@ -6501,16 +6659,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "أنا على دراية بالمخاطر وأريد الاستمرار" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "المعرف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "المعرف الذي تم إدخاله غير صالح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "معرف:" @@ -6545,7 +6703,7 @@ msgid "IR" msgstr "الأشعة تحت الحمراء" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "حساسية الأشعة تحت الحمراء" @@ -6595,11 +6753,11 @@ msgstr "" "مناسب للألعاب القائمة على الدوران مع عناصر تحكم حساسة للتوقيت ، مثل لعبة " "الجولف." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "إنشاء هوية " -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6653,11 +6811,15 @@ msgstr "" msgid "Ignore" msgstr "تجاهل" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "تجاهل تنسيق التغييرات " -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "تجاهل" @@ -6681,7 +6843,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB على الفور" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6690,7 +6852,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "النسخة الاحتياطية BootMii NAND استيراد" @@ -6705,15 +6867,15 @@ msgstr "فشل الاستيراد" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "استيراد حفظ وي" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr " NAND استيراد النسخ الاحتياطي" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6726,15 +6888,6 @@ msgstr "" msgid "In-Game?" msgstr "في اللعبة؟" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "متضمن: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "متضمن: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6743,27 +6896,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "قيمة مستوى البطل غير صحيحة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "آخر وقت تم وضعه غير صحيح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "آخر وقت لإعادة التعيين غير صحيح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "قيمة المال غير صحيحة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "الاسم المستعار غير صحيح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "قيمة وقت اللعب غير صحيحة" @@ -6808,15 +6961,16 @@ msgstr "تناوب تزايدي" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Infinity مدير" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6836,8 +6990,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "معلومات" @@ -6851,10 +7005,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "إدخال" @@ -6868,20 +7022,26 @@ msgstr "قوة الإدخال المطلوبة للتفعيل." msgid "Input strength to ignore and remap." msgstr "قوة الإدخال للتجاهل وإعادة تعيينها" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Insert &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD Card ادرج" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "مفحوصه" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6895,7 +7055,7 @@ msgstr "(%1) تثبيت القسم" msgid "Install Update" msgstr "تثبيت التحديث" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WAD تثبيت" @@ -6903,11 +7063,13 @@ msgstr "WAD تثبيت" msgid "Install to the NAND" msgstr "NAND تثبيت على" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "تعليمات" @@ -6916,7 +7078,7 @@ msgstr "تعليمات" msgid "Instruction Breakpoint" msgstr "نقطة توقف التعليمات" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "التعليمات" @@ -6925,7 +7087,7 @@ msgstr "التعليمات" msgid "Instruction: %1" msgstr "%1 تعليمات" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6942,19 +7104,19 @@ msgstr "كثافة" msgid "Interface" msgstr "الواجهة" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6967,19 +7129,19 @@ msgstr "Internal LZO Error - compression failed" msgid "Internal LZO Error - decompression failed" msgstr "Internal LZO Error - decompression failed" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6994,7 +7156,7 @@ msgstr "الدقة الداخلية" msgid "Internal Resolution:" msgstr "الدقة الداخلية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -7002,11 +7164,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (بطيء)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreter Core" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "تعبير غير صالح" @@ -7018,7 +7180,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "رمز مختلط غير صالح" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "حزمة غير صالحة 1% مقدمة :2%" @@ -7027,11 +7189,11 @@ msgstr "حزمة غير صالحة 1% مقدمة :2%" msgid "Invalid Player ID" msgstr "معرف لاعب غير صالح" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "مكدس استدعاء غير صالح" @@ -7060,7 +7222,7 @@ msgstr "إدخال غير صالح المقدمة" msgid "Invalid literal." msgstr "قيمة حرفية غير صحيحة" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "تم إعطاء معلمات غير صالحة للبحث" @@ -7072,19 +7234,19 @@ msgstr "كلمة مرور المقدمة غير صالحة." msgid "Invalid recording file" msgstr "تسجيل الملف غير صالح" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "معلمات البحث غير صالحة ( أي كائن مختارة)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "سلسلة البحث غير صالحة ( لا يمكن تحويل إلى رقم )" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "سلسلة البحث غير صالحة ( فقط حتى أطوال سلسلة مدعومة)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "معرف عنوان غير صالح." @@ -7094,7 +7256,7 @@ msgstr "%1 عنوان الساعة غير صالح" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "الإيطالية" @@ -7103,63 +7265,63 @@ msgid "Italy" msgstr "إيطاليا" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "عنصر" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7171,27 +7333,31 @@ msgstr "JIT Recompiler for ARM64 (موصى به)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (موصى به)" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "اليابان" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "اليابانية" @@ -7202,13 +7368,13 @@ msgstr "اليابانية" msgid "Japanese (Shift-JIS)" msgstr "(Shift-JIS) اليابانية" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "استمر في الجري" @@ -7222,7 +7388,7 @@ msgstr "إبقاء النافذة في المقدمة" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "احتفظ بالعناوين حيث القيمة في الذاكرة" @@ -7243,7 +7409,7 @@ msgstr "تحكم لوحة المفاتيح" msgid "Keys" msgstr "مفاتيح" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "كيلوبايت" @@ -7251,12 +7417,12 @@ msgstr "كيلوبايت" msgid "Kick Player" msgstr "طرد لاعب" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "كوريا" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "الكورية" @@ -7267,7 +7433,7 @@ msgstr "الكورية" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "تحميل اللعبىة" @@ -7277,7 +7443,7 @@ msgstr "تحميل اللعبىة" msgid "L-Analog" msgstr "L-قوة ضغطة" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR حفظ" @@ -7285,35 +7451,37 @@ msgstr "LR حفظ" msgid "Label" msgstr "ضع الكلمة المناسبة" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "آخر قيمة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "آخر موضع" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 :وقت الإستجابة" @@ -7389,13 +7557,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "ترخيص" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "حياة" @@ -7409,7 +7577,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "ضوء" @@ -7417,11 +7585,11 @@ msgstr "ضوء" msgid "Limit Chunked Upload Speed:" msgstr "الحد من سرعة الرفع المقسم:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "قائمة الأعمدة" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "قائمة" @@ -7432,29 +7600,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "تحميل النسيج المخصص" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "تحميل الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "تحميل قائمة جيم كيوب الرئيسية " @@ -7475,7 +7650,7 @@ msgstr "مسار التحميل" msgid "Load ROM" msgstr "تحميل القرص" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "فتحة التحميل" @@ -7564,19 +7739,19 @@ msgstr "تحميل الحالة فتحة 8" msgid "Load State Slot 9" msgstr "تحميل الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "تحميل الحالة من الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "تحميل الحالة من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "تحميل الحالة من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" @@ -7588,16 +7763,16 @@ msgstr "تحميل وكتابة بيانات حفظ المضيف" msgid "Load from Selected Slot" msgstr "تحميل من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "%1 - %2 تحميل من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Load map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" @@ -7605,18 +7780,18 @@ msgstr "%1 تحميل قائمة نظام وي" msgid "Load..." msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "الرموز المحملة من '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7636,7 +7811,7 @@ msgid "Locked" msgstr "مقفل" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "سجل" @@ -7648,7 +7823,7 @@ msgstr "إعداد السجل" msgid "Log In" msgstr "تسجيل الدخول" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -7656,7 +7831,7 @@ msgstr "Log JIT Instruction Coverage" msgid "Log Out" msgstr "تسجيل الخروج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "تسجيل وقت التقديم للملف" @@ -7672,7 +7847,7 @@ msgstr "مسجل المخرجات" msgid "Login Failed" msgstr "فشل تسجيل الدخول" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7687,16 +7862,16 @@ msgstr "التكرار الحلقي" msgid "Lost connection to NetPlay server..." msgstr "فقد الاتصال بالخادم" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 " الحد الأدنى" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7704,7 +7879,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -7714,7 +7889,7 @@ msgstr "ملفات MadCatz Gameshark" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "سحر" @@ -7722,37 +7897,37 @@ msgstr "سحر" msgid "Main Stick" msgstr "العصا الرئيسية" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "الناشر" @@ -7769,12 +7944,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "NAND إدارة" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "أخذ عينات النسيج يدويا" @@ -7786,7 +7961,7 @@ msgstr "تعيين" msgid "Mask ROM" msgstr "Mask ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "وجد تطابق" @@ -7803,16 +7978,16 @@ msgstr "%1 تم تغيير حجم المخزن المؤقت الأقصى إلى msgid "Maximum tilt angle." msgstr "أقصى زاوية الميل." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "متوسط" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "ذاكرة" @@ -7824,7 +7999,7 @@ msgstr "نقطة توقف الذاكرة" msgid "Memory Card" msgstr "بطاقة الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "مدير بطاقة الذاكرة" @@ -7836,7 +8011,7 @@ msgstr "مسار بطاقة الذاكرة:" msgid "Memory Override" msgstr "تجاوز الذاكرة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "خيارات نقطة توقف الذاكرة" @@ -7852,7 +8027,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7864,29 +8039,33 @@ msgstr "" "so it is recommended that you keep backups of both NANDs. Are you sure you " "want to continue?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "ميكروفون" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "مصغره " -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "متنوعة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "إعدادات متنوعة" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7908,36 +8087,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "تعديل الفتحة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "%1 تم العثور على وحدات" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "نقود" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "احادي" @@ -7949,16 +8133,16 @@ msgstr "أحادي الظلال" msgid "Monospaced Font" msgstr "خط أحادي المسافة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "إدخال الحركة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "محاكاة الحركة" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "محرك" @@ -7995,6 +8179,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8004,10 +8192,10 @@ msgstr "مضاعف" msgid "N&o to All" msgstr "لا للكل" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND تحقق" @@ -8016,8 +8204,8 @@ msgstr "NAND تحقق" msgid "NKit Warning" msgstr "NKit تحذير" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8026,7 +8214,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8043,25 +8231,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "الاسم" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "اسم علامة جديدة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "اسم العلامة المراد إزالتها" @@ -8070,7 +8258,7 @@ msgid "Name of your session shown in the server browser" msgstr "يظهر اسم جلستك في مستعرض الخادم" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8127,7 +8315,7 @@ msgstr "" msgid "Network" msgstr "شبكة الاتصال" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "تنسيق تفريغ الشبكة" @@ -8157,7 +8345,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "بحث جديد" @@ -8165,7 +8353,7 @@ msgstr "بحث جديد" msgid "New Tag..." msgstr "علامة جديدة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "تم إنشاء هوية جديدة ." @@ -8173,7 +8361,7 @@ msgstr "تم إنشاء هوية جديدة ." msgid "New instruction:" msgstr "تعليمات جديدة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "علامة جديدة" @@ -8182,7 +8370,7 @@ msgstr "علامة جديدة" msgid "Next Game Profile" msgstr "ملف تعريف اللعبة التالية" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "التالية" @@ -8196,7 +8384,7 @@ msgid "Nickname is too long." msgstr "الاسم المستعار طويل جدا" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "الاسم المستعار" @@ -8210,7 +8398,7 @@ msgstr "لا" msgid "No Adapter Detected" msgstr "لم يتم اكتشاف محول" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "لا محاذاة" @@ -8224,7 +8412,7 @@ msgstr "لا يوجد إخراج الصوت" msgid "No Compression" msgstr "لا يوجد ضغط" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "لا تطابق" @@ -8232,16 +8420,16 @@ msgstr "لا تطابق" msgid "No Save Data" msgstr "لا يوجد حفظ للبيانات" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "لا توجد بيانات لتعديلها" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "لا يوجد وصف متاح" @@ -8257,15 +8445,15 @@ msgstr "لم يتم تحديد ملحق" msgid "No file loaded / recorded." msgstr "لا يوجد ملف تحميل / مسجل." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "لا توجد لعبة قيد التشغيل" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "لا توجد لعبة قيد التشغيل" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8274,7 +8462,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "لم يتم اكتشاف أية مشكلات." @@ -8286,10 +8474,6 @@ msgstr "لم يتم العثور على لعبة مطابقة" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "لا توجد وظائف ممكنة متبقية. إعادة ضبط" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "لا توجد مشاكل." @@ -8304,11 +8488,11 @@ msgstr "" "تحتوي على الكثير من بيانات التحقق ، فهذا يعني على الأرجح أنه لا توجد مشاكل " "تؤثر على المحاكاة." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "'{0}' لم يتم العثور على ملفات تعريف لإعداد اللعبة" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "لم يتم تحميل التسجيل" @@ -8317,18 +8501,18 @@ msgstr "لم يتم تحميل التسجيل" msgid "No save data found." msgstr "لم يتم العثور على حفظ البيانات" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "لا شيء" @@ -8388,7 +8572,7 @@ msgid "Null" msgstr "خالية" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -8423,10 +8607,58 @@ msgstr "عصا نونشوك" msgid "OK" msgstr "موافق" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "%1 موضوع" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "نطاق الكائن" @@ -8440,7 +8672,7 @@ msgstr "أوقيانوسيا" msgid "Off" msgstr "إيقاف" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8452,14 +8684,29 @@ msgstr "تمكين" msgid "On Movement" msgstr "عند الحركة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "وثائق على الانترنت" @@ -8467,7 +8714,7 @@ msgstr "وثائق على الانترنت" msgid "Only Show Collection" msgstr "عرض المجموعة فقط" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8475,7 +8722,7 @@ msgstr "" "إلحاق رموز فقط بالبادية:\n" "(فارغ لكل الرموز)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8485,7 +8732,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "فتح" @@ -8494,11 +8741,11 @@ msgstr "فتح" msgid "Open &Containing Folder" msgstr "فتح موقع الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "فتح مجلد المستخدم" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "فتح" @@ -8519,7 +8766,7 @@ msgstr "Riivolution XML فتح" msgid "Open Wii &Save Folder" msgstr "فتح مجلد حفظ وي" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "فتح مجلد التفريغ" @@ -8552,11 +8799,11 @@ msgid "Operators" msgstr "مشغل" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "خيارات" @@ -8569,13 +8816,36 @@ msgstr "البرتقالي" msgid "Orbital" msgstr "Orbital" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "أخرى" @@ -8588,7 +8858,7 @@ msgstr "(%1) قسم آخر" msgid "Other State Hotkeys" msgstr "مفاتيح الاختصار حالة الأخرى" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "إدارة الحالة الأخرى" @@ -8608,16 +8878,16 @@ msgstr "إعادة تشكيل الإخراج" msgid "Output Resampling:" msgstr "إعادة تشكيل الإخراج" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "الكتابة فوق" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "تشغيل تسجيل الإدخال" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8626,15 +8896,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG مستوى ضغط" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG مستوى ضغط" @@ -8642,11 +8912,11 @@ msgstr "PNG مستوى ضغط" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG image file (*.png);; All Files (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC حجم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8659,11 +8929,11 @@ msgstr "تحكم" msgid "Pads" msgstr "منصات" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "المعلمات" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8714,11 +8984,15 @@ msgstr "مسار" msgid "Paths" msgstr "مسارات" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "إيقاف مؤقت" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "وقفة في نهاية الفيلم" @@ -8757,7 +9031,7 @@ msgstr "سرعة الذروة لحركات التأرجح الخارجية." msgid "Per-Pixel Lighting" msgstr "لكل بكسل إضاءة" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "تحديث النظام عبر الإنترنت" @@ -8765,33 +9039,33 @@ msgstr "تحديث النظام عبر الإنترنت" msgid "Perform System Update" msgstr "تحديث النظام" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "(ms) نافذة نموذج الأداء" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "(ms) نافذة نموذج الأداء" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "إحصائيات الأداء" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "فيزيائي" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "مساحة العنوان الفعلي" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "بيتابايت" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "debug اختر خط" @@ -8807,12 +9081,12 @@ msgstr "Pitch Down" msgid "Pitch Up" msgstr "Pitch Up" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "المنصة" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "تشغيل" @@ -8824,7 +9098,7 @@ msgstr "لعب / سجل" msgid "Play Recording" msgstr "تشغيل التسجيل" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8836,27 +9110,27 @@ msgstr "خيارات التشغيل" msgid "Player" msgstr "لاعب" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "اللاعب الأول" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "اللاعب واحد القدرة الأولى" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "اللاعب واحد القدرة الثانية" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "اللاعب الثاني" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "اللاعب اثنين القدرة الأولى" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "اللاعب الثاني القدرة الثانية" @@ -8865,7 +9139,8 @@ msgstr "اللاعب الثاني القدرة الثانية" msgid "Players" msgstr "اللاعبين" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "زمن اللعب" @@ -8877,23 +9152,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "يرجى بدء لعبة قبل بدء البحث باستخدام مناطق الذاكرة القياسية" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "مؤشر" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "منفذ %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8902,7 +9181,7 @@ msgstr "" msgid "Port:" msgstr "منفذ" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "فتحات البوابة" @@ -8923,11 +9202,11 @@ msgid "Post-Processing Shader Configuration" msgstr "إعداد تظليل ما بعد المعالجة" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "جلب النسيج المخصص المسبق " @@ -8935,11 +9214,11 @@ msgstr "جلب النسيج المخصص المسبق " msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8964,7 +9243,7 @@ msgstr "اضغط على زر المزامنة" msgid "Pressure" msgstr "الضغط" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8979,7 +9258,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "ملف تعريف اللعبة السابقة" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "السابقة" @@ -8990,7 +9269,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -9002,7 +9281,7 @@ msgstr "خاصة" msgid "Private and Public" msgstr "خاصة و عامة" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "المشكلة" @@ -9042,8 +9321,8 @@ msgstr "عداد البرنامج" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "التقدم" @@ -9051,11 +9330,11 @@ msgstr "التقدم" msgid "Public" msgstr "عامة" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "أزالة ذاكره التخزين المؤقت لقائمة الألعاب" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9075,7 +9354,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" @@ -9084,7 +9363,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "مشكلة" @@ -9105,19 +9384,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-قوة ضغطة" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "جاهز" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO الكشف التلقائي" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "ادارة" @@ -9130,11 +9409,11 @@ msgstr "" msgid "Range" msgstr "نطاق" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "نهاية النطاق:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "بداية النطاق:" @@ -9146,7 +9425,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "إعادة&مكان التعليمات" @@ -9158,14 +9441,14 @@ msgstr "اقرأ" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "القراءة والكتابة" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "يقرأ فقط" @@ -9186,10 +9469,15 @@ msgstr "لوح الميزان حقيقي" msgid "Real Wii Remote" msgstr "ريموت وي الحقيقي" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9203,7 +9491,7 @@ msgstr "تسجيل" msgid "Record Inputs" msgstr "سجل المدخلات" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "تسجيل" @@ -9238,7 +9526,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org حالة" @@ -9246,14 +9534,14 @@ msgstr "Redump.org حالة" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "تحديث" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "تحديث القيم الحالية" @@ -9261,11 +9549,11 @@ msgstr "تحديث القيم الحالية" msgid "Refresh Game List" msgstr "تحديث قائمة اللعبة" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "فشل التحديث. الرجاء تشغيل اللعبة قليلاً وحاول مرة أخرى" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "تحديث القيم الحالية" @@ -9274,8 +9562,8 @@ msgstr "تحديث القيم الحالية" msgid "Refreshing..." msgstr "تحديث..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "المنطقة" @@ -9304,7 +9592,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "إزالة" @@ -9321,7 +9609,7 @@ msgstr "إزالة البيانات غير المرغوب فيها (لا رجع msgid "Remove Tag..." msgstr "إزالة العلامة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "إزالة العلامة" @@ -9335,8 +9623,8 @@ msgstr "" "(إلا إذا قمت بحزم ملف ISO بتنسيق مضغوط مثل ZIP بعد ذلك)\n" "هل تريد المتابعة على أية حال؟" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "إعادة تسمية الرمز" @@ -9344,11 +9632,11 @@ msgstr "إعادة تسمية الرمز" msgid "Render Window" msgstr "نافذة العرض" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "عرض إلى النافذة الرئيسية" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9364,23 +9652,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "إعادة تعيين" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "إعادة تعيين الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "إعادة تعيين تجاهل معالج الذعر" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "إعادة النتائج" @@ -9408,6 +9695,10 @@ msgstr "إعادة تعيين طريقة العرض" msgid "Reset all saved Wii Remote pairings" msgstr "إعادة تعيين كافة اقتران ريموت وي المحفوظة" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "أدارة حزمة الموارد" @@ -9424,7 +9715,7 @@ msgstr "مطلوب إعادة تشغيل" msgid "Restore Defaults" msgstr "استعادة الضبط الافتراضي" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "استعادة التعليمات" @@ -9441,7 +9732,7 @@ msgstr "عودة السرعة" msgid "Revision" msgstr "إصدار" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "%1 مراجعة" @@ -9500,7 +9791,7 @@ msgstr "Roll Right" msgid "Room ID" msgstr "معرف الغرفة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "دوران" @@ -9518,26 +9809,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "هزاز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Run &To Here" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "تشغيل جيم بوي أدفانس في خيوط مخصصة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "تشغيل حتى" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9553,19 +9870,19 @@ msgstr "روسيا" msgid "SD Card" msgstr "SD Card" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD Card حجم ملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD Card مسار" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD Card إعدادات" @@ -9573,7 +9890,7 @@ msgstr "SD Card إعدادات" msgid "SD Root:" msgstr "SD Root:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD مجلد مزامنة" @@ -9586,7 +9903,7 @@ msgstr "" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9594,11 +9911,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1 ملخص" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL سياق" @@ -9608,11 +9925,11 @@ msgstr "SSL سياق" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "حفظ الرموز" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "حفظ الحالة" @@ -9625,7 +9942,6 @@ msgstr "آمنة" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9635,9 +9951,17 @@ msgstr "حفظ" msgid "Save All" msgstr "حفظ الكل" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "حفظ التصدير" @@ -9646,24 +9970,24 @@ msgid "Save FIFO log" msgstr "FIFO حفظ سجل" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "احفظ الملف إلى" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "حفظ اللعبة" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "حفظ الاستيراد" @@ -9675,13 +9999,13 @@ msgstr "حفظ الحالة الأقدم" msgid "Save Preset" msgstr "حفظ الإعداد المسبق" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "حفظ ملف التسجيل باسم" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "حفظ الحالة" @@ -9725,23 +10049,23 @@ msgstr "حفظ الحالة فتحة 8" msgid "Save State Slot 9" msgstr "حفظ الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "حفظ الحالة في ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "حفظ الحالة في أقدم فتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "حفظ الحالة في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "حفظ الحالة في الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -9749,7 +10073,7 @@ msgstr "Save Symbol Map &As..." msgid "Save Texture Cache to State" msgstr "حفظ النسيج في ذاكرة التخزين المؤقت إلى الحالة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "حفظ و تحميل الحالة" @@ -9761,11 +10085,11 @@ msgstr "حفظ كإعداد مسبق" msgid "Save as..." msgstr "حفظ بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "حفظ ملف الإخراج المجمع بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9775,15 +10099,15 @@ msgstr "" "النظر في النسخ الاحتياطي للبيانات الحالية قبل الكتابة.\n" "الكتابة الآن؟" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Save in Same Directory as the ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Save map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "احفظ ملف التوقيع" @@ -9791,7 +10115,7 @@ msgstr "احفظ ملف التوقيع" msgid "Save to Selected Slot" msgstr "حفظ في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "%1 - %2 حفظ في الفتحة" @@ -9803,7 +10127,7 @@ msgstr "حفظ" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "لا يمكن إعادة تعيين اقتران ريموت وي المحفوظة إلا عند تشغيل لعبة وي." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "حفظ" @@ -9815,26 +10139,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "EFB تحجيم نسخة" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Scan succeeded" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "لقطة للشاشة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "بحث" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "البحث عن عنوان" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "بحث في الكائن الحالي" @@ -9842,11 +10166,11 @@ msgstr "بحث في الكائن الحالي" msgid "Search Subfolders" msgstr "بحث في المجلدات الفرعية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "البحث والتصفية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -9854,7 +10178,7 @@ msgstr "" "البحث غير ممكن حاليا في مساحة العنوان الافتراضية. يرجى تشغيل اللعبة قليلا " "والمحاولة مرة أخرى." -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "ابحث عن تعليمات" @@ -9862,11 +10186,11 @@ msgstr "ابحث عن تعليمات" msgid "Search games..." msgstr "بحث عن الالعاب" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "تعليمات البحث" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "بحث:" @@ -9886,7 +10210,7 @@ msgstr "القسم الذي يحتوي على جميع الإعدادات الم msgid "Section that contains most CPU and Hardware related settings." msgstr "القسم الذي يحتوي على معظم الإعدادات المتعلقة بالمعالج والعتاد" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "خيارات الأمان" @@ -9894,28 +10218,36 @@ msgstr "خيارات الأمان" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "تحديد مسار التفريغ" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "حدد ملف تصدير " -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "حدد ملف الشكل" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "حدد جيم بوي أدفانس BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "حدد قرص جيم بوي أدفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "حدد مسار الحفظ جيم بوي أدفانس" @@ -9935,15 +10267,15 @@ msgstr "حدد مسار حزمة الموارد" msgid "Select Riivolution XML file" msgstr "Riivolution XML حدد ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Skylander حدد مجموعة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "حدد ملف Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "%1 - %2 حدد الفتحة" @@ -9951,7 +10283,7 @@ msgstr "%1 - %2 حدد الفتحة" msgid "Select State" msgstr "اختر الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "حدد فتحة الحالة" @@ -10010,15 +10342,15 @@ msgstr "اختر الملف" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "حدد ملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" @@ -10026,11 +10358,11 @@ msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" msgid "Select a Game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SD Card حدد صورة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "حدد ملف" @@ -10038,19 +10370,19 @@ msgstr "حدد ملف" msgid "Select a game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "NAND حدد عنوانًا لتثبيته إلى" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "RSO حدد عنوان وحدة" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "حدد ملف التسجيل للتشغيل" @@ -10058,12 +10390,12 @@ msgstr "حدد ملف التسجيل للتشغيل" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "(OTP/SEEPROM dump) حدد ملف المفاتيح" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "حدد حفظ الملف" @@ -10079,7 +10411,7 @@ msgstr "حدد المكان الذي تريد حفظ الصور المحولة msgid "Selected Font" msgstr "الخط المحدد" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "اختيار الملف التحكم الشخصي غير موجود " @@ -10091,26 +10423,45 @@ msgstr "اختيار الملف التحكم الشخصي غير موجود " msgid "Selected game doesn't exist in game list!" msgstr "اللعبة المختارة غير موجودة في قائمة الألعاب!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "مؤشر ترابط محدد" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "سياق الموضوع المحدد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10122,18 +10473,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10147,7 +10509,7 @@ msgstr "" msgid "Send" msgstr "إرسال" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "موضع الاستشعار" @@ -10171,16 +10533,12 @@ msgstr "منفذ الخادم" msgid "Server rejected traversal attempt" msgstr "الخادم رفض محاولة الاجتياز" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "تعيين القيمة" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "تعيين الكمبيوتر" @@ -10196,23 +10554,23 @@ msgstr "اضبط ملف بطاقة الذاكرة على الفتحة A" msgid "Set memory card file for Slot B" msgstr "اضبط ملف بطاقة الذاكرة على الفتحة B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Set symbol &end address" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Set symbol &size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "تعيين عنوان نهاية الرمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "تعيين حجم الرمز (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10222,11 +10580,11 @@ msgstr "" "games.\n" "قد لا تعمل لجميع الألعاب." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." @@ -10234,7 +10592,7 @@ msgstr "" "يضبط وقت الاستجابة بالمللي ثانية. قد تقلل القيم الأعلى طقطقة الصوت. خلفيات " "معينة فقط." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10246,20 +10604,20 @@ msgstr "" msgid "Settings" msgstr "إعدادات" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Can't create setting.txt file" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "درجة الخطورة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "تجميع التظليل" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "هزة" @@ -10276,16 +10634,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "عرض السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "السجل" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "شريط الأدوات" @@ -10293,53 +10651,53 @@ msgstr "شريط الأدوات" msgid "Show Active Title in Window Title" msgstr "عرض العنوان النشط في عنوان النافذة" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "عرض الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "أستراليا" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "عرض اللعبة الحالية على ديسكورد" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "عرض الرموز الممكّنة أولاً" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS عرض" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "عرض عداد الإطار" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "عرض أوقات الإطار" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "فرنسا" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "جيم كيوب" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "ألمانيا" @@ -10351,23 +10709,23 @@ msgstr "Show Golf Mode Overlay" msgid "Show Infinity Base" msgstr "Infinity عرض قاعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "عرض مدخلات العرض" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "ايطاليا" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "اليابان" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "كوريا" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "عرض عداد التأخر" @@ -10375,19 +10733,19 @@ msgstr "عرض عداد التأخر" msgid "Show Language:" msgstr "عرض اللغة" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "إعداد السجل" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "عرض رسائل اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "في اللعب عبر الشبكة Ping عرض الـ" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "هولندا" @@ -10395,32 +10753,36 @@ msgstr "هولندا" msgid "Show On-Screen Display Messages" msgstr "عرض الرسائل المعروضة على الشاشة" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "عرض الكمبيوتر" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "عرض الرسوم البيانية للأداء" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "عرض المنصات" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "عرض المناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "عرض عداد إعادة التسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "روسيا" @@ -10428,72 +10790,72 @@ msgstr "روسيا" msgid "Show Skylanders Portal" msgstr "Skylanders عرض بوابة" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "اسبانيا" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "عرض ألوان السرعة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "عرض الإحصاءات" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "عرض ساعة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "تايوان" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "امريكا" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "غير معروف" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "VBlank عرض أوقات" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS عرض " -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "وي" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "العالم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "تظهر في الذاكرة" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "عرض في التعليمات البرمجية" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "عرض في الذاكرة" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "عرض في الرموز" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "عرض في الذاكرة" @@ -10501,65 +10863,71 @@ msgstr "عرض في الذاكرة" msgid "Show in server browser" msgstr "عرض في مستعرض الخادم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "أظهر الهدف في الذاكرة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10569,34 +10937,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Side-by-Side" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "امسك بانحراف" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "جانبية" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "انحراف ريموت وي" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "قاعدة بيانات التوقيع" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "موقع 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "موقع 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "موقع 8" @@ -10605,7 +10973,7 @@ msgid "Signed Integer" msgstr "عدد صحيح موقّع" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "الصينية المبسطة" @@ -10622,7 +10990,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." @@ -10630,11 +10998,11 @@ msgstr "" "حجم المخزن المؤقت للتمدد بالمللي ثانية. قد تؤدي القيم المنخفضة جدًا إلى حدوث " "صوت طقطقة." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "تخطى" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Skip Drawing" @@ -10669,24 +11037,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "مسار مجموعة Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "Skylander غير موجود في هذه المجموعة. إنشاء ملف جديد؟" @@ -10694,10 +11062,6 @@ msgstr "Skylander غير موجود في هذه المجموعة. إنشاء م msgid "Skylanders Manager" msgstr "Skylanders مدير" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "Skylanders لم يتم العثور على مجلد لهذا المستخدم. إنشاء مجلد جديد؟" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10707,7 +11071,7 @@ msgstr "شريط التمرير" msgid "Slot A" msgstr "A فتحة" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "A فتحة" @@ -10715,7 +11079,7 @@ msgstr "A فتحة" msgid "Slot B" msgstr "B فتحة" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "B فتحة" @@ -10723,7 +11087,7 @@ msgstr "B فتحة" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "انقل موضع عصا التحكم إلى أقرب محور ثماني الأضلاع." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Socket table" @@ -10751,12 +11115,12 @@ msgstr "" "بعض القيم التي قدمتها غير صالحة.\n" "يرجى التحقق من القيم المميزة." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "رتب ترتيب أبجدي" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "الصوت" @@ -10770,27 +11134,27 @@ msgstr "اسبانيا" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "الأسبانية" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "مكبر الصوت" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "مستوى الصوت" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specialized (Default)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "محدد" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10811,15 +11175,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "نهاية المكدس" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "بداية المكدس" @@ -10832,25 +11196,28 @@ msgstr "ذراع تحكم القياسية" msgid "Start" msgstr "تشغيل" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "بدء &اللعب عبر الشبكة" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "بدء بحث أسرار جديدة" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "بدء التسجيل" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "بدء التسجيل" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "بدء بملء الشاشة" @@ -10866,10 +11233,10 @@ msgstr "Riivolution بدء مع تصحيحات" msgid "Started game" msgstr "بدأت اللعبة" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "الحالة" @@ -10879,7 +11246,7 @@ msgstr "عجلة القيادة" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "خطوة" @@ -10891,13 +11258,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "خطوة أكثر" @@ -10913,7 +11280,7 @@ msgstr "مهلة الخروج !" msgid "Step over in progress..." msgstr "خطوة أكثر في التقدم" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "خطوة ناجحة!" @@ -10922,7 +11289,7 @@ msgstr "خطوة ناجحة!" msgid "Stepping" msgstr "التنقل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "استريو" @@ -10952,18 +11319,14 @@ msgstr "عصا" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "إيقاف" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "إيقاف تشغيل / تسجيل الإدخال" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "إيقاف التسجيل" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "توقفت اللعبة" @@ -10996,7 +11359,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "تمتد إلى النافذة" @@ -11031,8 +11394,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "ناجح" @@ -11059,7 +11422,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "تم تصدير ملفات الحفظ بنجاح" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "تم استخراج الشهادات بنجاح من NAND" @@ -11071,12 +11434,12 @@ msgstr "تم استخراج الملف بنجاح." msgid "Successfully extracted system data." msgstr "استخرجت بنجاح بيانات النظام." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "تم استيراد ملف الحفظ بنجاح" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "تم بنجاح تثبيت هذا العنوان على NAND." @@ -11087,11 +11450,11 @@ msgstr "تمت إزالة هذا العنوان بنجاح من NAND." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "الدعم" @@ -11099,16 +11462,16 @@ msgstr "الدعم" msgid "Supported file formats" msgstr "تنسيقات الملفات المدعومة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "محيطي" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "معلق" @@ -11118,12 +11481,12 @@ msgstr "Swap Eyes" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -11134,7 +11497,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "تمايل" @@ -11148,34 +11511,21 @@ msgid "Switch to B" msgstr "B التبديل إلى" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "رمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "رمز (1%) عنوان النهاية:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "اسم الرمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "رموز" @@ -11203,7 +11553,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11222,24 +11572,24 @@ msgid "Synchronizing save data..." msgstr "جارٍ مزامنة حفظ البيانات" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "لغة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS أدوات" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "العلامات" @@ -11249,7 +11599,7 @@ msgstr "العلامات" msgid "Taiko Drum" msgstr "Taiko Drum" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11257,15 +11607,15 @@ msgstr "" msgid "Taiwan" msgstr "تايوان" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "لقطة للشاشة" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "نطاق العنوان المستهدف غير صالح." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11273,7 +11623,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "تقنية" @@ -11281,6 +11631,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11290,7 +11646,7 @@ msgstr "النسيج من ذاكره التخزين المؤقت" msgid "Texture Cache Accuracy" msgstr "دقة ذاكرة التخزين المؤقت للنسيج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "تفريغ النسيج" @@ -11302,7 +11658,7 @@ msgstr "تصفية النسيج" msgid "Texture Filtering:" msgstr "تصفية النسيج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "طلاء تنسيق النسيج" @@ -11325,7 +11681,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11339,7 +11695,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "أقسام نادرة مفقودة." -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11347,7 +11703,7 @@ msgstr "" "NAND لا يمكن إصلاح\n" "يوصى بعمل نسخة احتياطية من بياناتك الحالية والبدء من جديد" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND تم اصلاح" @@ -11358,11 +11714,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11398,6 +11754,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11415,7 +11778,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "تعذر العثور على القرص الذي كان على وشك أن يتم إدراجه" @@ -11435,17 +11798,17 @@ msgstr "وحدة تحكم وي التي تمت محاكاتها محدثة با #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "عنوان ماك الذي تم إدخاله غير صالح" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "The entered PID is invalid." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "The entered VID is invalid." @@ -11453,7 +11816,7 @@ msgstr "The entered VID is invalid." msgid "The expression contains a syntax error." msgstr "يحتوي التعبير على خطأ في بناء الجملة" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11473,7 +11836,7 @@ msgstr "" "الملف 1% موجود بالفعل.\n" "هل ترغب في استبدالها؟" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11489,7 +11852,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11500,7 +11863,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "نظام الملفات غير صالح أو لا يمكن قراءته." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11559,9 +11922,9 @@ msgstr "لا تتطابق التجزئة!" msgid "The hashes match!" msgstr "تطابق التجزئة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11577,11 +11940,11 @@ msgstr "" msgid "The install partition is missing." msgstr "قسم التثبيت مفقود." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11595,8 +11958,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11626,13 +11989,13 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "The resulting decrypted AR code doesn't contain any lines." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 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:596 +#: 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 "" @@ -11670,7 +12033,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11685,11 +12048,11 @@ msgstr "\"%1\" تحتوي بطاقة الذاكرة المستهدفة بالف msgid "The ticket is not correctly signed." msgstr "لم يتم توقيع التذكرة بشكل صحيح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11697,15 +12060,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "لا يمكن قراءة نوع القسم." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11729,7 +12092,7 @@ msgstr "قسم التحديث مفقود" msgid "The update partition is not at its normal position." msgstr "قسم التحديث ليس في وضعه الطبيعي" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11755,14 +12118,19 @@ msgstr "لم تتم محاذاة القسم {0} بشكل صحيح" msgid "There are too many partitions in the first partition table." msgstr "هناك الكثير من الأقسام في جدول القسم الأول." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "لا يوجد شيء للتراجع !" @@ -11805,19 +12173,19 @@ msgstr "" "يتم تعيين هذا العنوان الكوري لاستخدام نظام التشغيل الذي عاده لا يتم استخدامه " "علي وحدات التحكم الكورية. هذا من المحتمل ان يؤدي إلى خطا #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "جهاز يو إس بي مدرج بالفعل في القائمة المسموح لها" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "غير قابل للتمهيد WAD" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "غير صالح WAD" @@ -11960,6 +12328,10 @@ msgstr "" msgid "This is a good dump." msgstr "هذا تفريغ جيد" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "تتطلب هذه الجلسة كلمة مرور:" @@ -11976,11 +12348,11 @@ msgstr "" "\n" "إذا لم تكن متأكدًا ، فاترك هذا بدون تحديد." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "يجب عدم استخدام هذا البرنامج لتشغيل الألعاب التي لا تملكها قانونيًا." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "لا يمكن تشغيل هذا العنوان." @@ -11993,7 +12365,7 @@ msgstr "تم تعيين هذا العنوان لاستخدام نظام تشغي msgid "This title is set to use an invalid common key." msgstr "تم تعيين هذا العنوان لاستخدام مفتاح عام غير صالح" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12001,7 +12373,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12020,6 +12392,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "يتم ضرب هذه القيمة مع عمق المنصوص عليها في ضبط الرسومات." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12039,11 +12418,11 @@ msgstr "" "قد يمنع المزامنة في بعض الألعاب التي تستخدم قراءات مخزن مؤقت للإطار المضمن . " "يرجى التأكد من استخدام الجميع لخلفية الفيديو نفسها." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "سياق الموضوع" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "المواضيع" @@ -12051,12 +12430,12 @@ msgstr "المواضيع" msgid "Threshold" msgstr "بداية" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "تيرابايت" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "إمالة" @@ -12070,10 +12449,10 @@ msgstr "الفترة الزمنية للإدخال المستقر لتشغيل msgid "Timed Out" msgstr "انتهت مهله" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "العنوان" @@ -12087,7 +12466,7 @@ msgstr "إلى" msgid "To:" msgstr "إلى" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "ملء الشاشة" @@ -12112,7 +12491,7 @@ msgid "Toggle Aspect Ratio" msgstr "تناسب الأبعاد" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "نقطة التوقف" @@ -12164,15 +12543,19 @@ msgstr "Toggle XFB Copies" msgid "Toggle XFB Immediate Mode" msgstr "Toggle XFB Immediate Mode" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Tokenizing فشل" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "شريط الأدوات" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "اعلى" @@ -12180,9 +12563,8 @@ msgstr "اعلى" msgid "Top-and-Bottom" msgstr "Top-and-Bottom" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -12219,28 +12601,28 @@ msgstr "Total travel distance." msgid "Touch" msgstr "لمس" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "رمز اللعبة" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "الصينية التقليدية" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12279,26 +12661,26 @@ msgid "Triggers" msgstr "أزرار الكتف" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "كأس" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "اكتب" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "مساحة عنوان جيم كيوب/وي النموذجية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "غير معروف" @@ -12310,7 +12692,7 @@ msgstr "امريكا" msgid "USB Device Emulation" msgstr "محاكاة جهاز يو اس بي" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "محاكاة يو اس بي" @@ -12322,20 +12704,20 @@ msgstr "محاكاة اجهزة يو اس بي" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB خطأ في القائمة البيضاء لـ " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12343,7 +12725,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12352,7 +12734,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "RSO تعذر الكشف التلقائي عن وحدة" @@ -12364,11 +12746,11 @@ msgstr "غير قادر على الاتصال بخادم التحديث" msgid "Unable to create updater copy." msgstr "غير قادر على إنشاء نسخة محدث" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "غير قادر على فتح الملف" @@ -12396,7 +12778,7 @@ msgstr "" "\n" "هل تريد تجاهل هذا السطر ومتابعه التحليل ؟" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "غير قادر على قراءة الملف" @@ -12419,15 +12801,15 @@ msgstr "غير مضغوطة GC/Wii صورة (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "ميت حي" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "تراجع عن تحميل الحالة" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "تراجع عن حفظ الحالة" @@ -12448,11 +12830,11 @@ msgstr "" "NAND إلى إزالة الإصدار المثبت حاليًا من هذا العنوان من\n" "دون حذف بيانات الحفظ الخاصة به. استمر؟" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "امريكا" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12463,12 +12845,13 @@ msgstr "امريكا" msgid "Unknown" msgstr "غير معروف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "(Id:%1 Var:%2) مجهول" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12492,11 +12875,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "مساحة عنوان غير معروفة" @@ -12504,7 +12887,7 @@ msgstr "مساحة عنوان غير معروفة" msgid "Unknown author" msgstr "مؤلف غير معروف" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "نوع بيانات غير معروف" @@ -12512,7 +12895,7 @@ msgstr "نوع بيانات غير معروف" msgid "Unknown disc" msgstr "قرص غير معروف" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "حدث خطأ غير معروف" @@ -12532,16 +12915,18 @@ msgstr "{0} تم استلام رسالة غير معروفة بالمعرف" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "غير محدود" @@ -12574,22 +12959,22 @@ msgid "Unpacking" msgstr "تفريغ" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "غير موقع 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "غير موقع 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "غير موقع 8" @@ -12653,23 +13038,23 @@ msgstr "" "تحديث العنوان %1...\n" "سوف يأخذ هذا بعض الوقت." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "أمسك وضع عمودي" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "عمودي" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "ريموت وي وضع عمودي" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "إعدادات تقارير إحصائيات الاستخدام " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12681,15 +13066,15 @@ msgstr "استخدام جميع بيانات حفظ وي" msgid "Use Built-In Database of Game Names" msgstr "استخدم قاعدة بيانات مدمجة لأسماء الألعاب" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Use Lossless Codec (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "(EuRGB60) PAL60 استخدام وضع " @@ -12697,7 +13082,7 @@ msgstr "(EuRGB60) PAL60 استخدام وضع " msgid "Use Panic Handlers" msgstr "Use Panic Handlers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12716,43 +13101,18 @@ msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" "استخدام منطقة عازلة بعمق واحد لكلتا العينين. هناك حاجة لعدد قليل من الألعاب ." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "استخدم إعداد مخطط الذاكرة في وقت المسح" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "استخدام العناوين الفعلية" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "استخدم العناوين الافتراضية عندما يكون ذلك ممكنًا" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "إعداد المستخدم" @@ -12787,14 +13147,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "%1 تستخدم كيوت" @@ -12812,31 +13172,31 @@ msgstr "%1 تستخدم كيوت" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "تستخدم عادة للأشياء الخفيفة" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "تستخدم للمصفوفات العادية" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "تستخدم لمصفوفات الموضع" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "tex تستخدم لمصفوفات تنسيق" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "خدمات" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync مزامنة عدد الإطارات" @@ -12844,11 +13204,11 @@ msgstr "V-Sync مزامنة عدد الإطارات" msgid "VBI Skip" msgstr "VBI Skip" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "القيمة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "القيمة تتبع التعليمات الحالية" @@ -12856,17 +13216,17 @@ msgstr "القيمة تتبع التعليمات الحالية" msgid "Value:" msgstr "القيمة" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "المتغير الذي تم إدخاله غير صالح" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "متغير" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12882,16 +13242,16 @@ msgstr "عرض الرسائل كنص" msgid "Verify" msgstr "التحقق" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "التحقق من التكامل" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "التحقق من الشهادات" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "التحقق" @@ -12905,7 +13265,7 @@ msgid "Vertex Rounding" msgstr "Vertex Rounding" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "مجال الرؤية العمودي" @@ -12919,12 +13279,12 @@ msgid "Video" msgstr "فيديو" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "عرض &الرمز" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "عرض &الذكرة" @@ -12932,14 +13292,14 @@ msgstr "عرض &الذكرة" msgid "Virtual Notches" msgstr "الشقوق الافتراضية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "مساحة العنوان الافتراضية" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "الصوت" @@ -12959,35 +13319,35 @@ msgstr "رفع مستوى الصوت" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "(*.wad) ملفات" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "WAD فشل تثبيت : تعذر إنشاء ملفات سجل متجر وي" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "WAD فشل التثبيت\n" "تعذر إنهاء استيراد العنوان" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "WAD فشل تثبيت : تعذر استيراد المحتوى {0:08x}" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "WAD فشل تثبيت : تعذر تهيئة استيراد العنوان (خطأ {0})" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "WAD فشل التثبيت\n" "الملف المحدد ليس صالحًا" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "انتظار" @@ -13032,12 +13392,12 @@ msgstr "مسار WFS" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "في انتظار المسح الضوئي الأول" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13048,7 +13408,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13070,7 +13430,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "تحذير" @@ -13144,7 +13504,7 @@ msgstr "راقب" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "ماء" @@ -13161,7 +13521,7 @@ msgstr "Western (Windows-1252)" msgid "Whammy" msgstr "الضربة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13169,7 +13529,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13177,7 +13537,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "الاجهزة المسموح لها المرور خلال منفذ يو إس بي " @@ -13201,7 +13561,7 @@ msgstr "قائمة وي" msgid "Wii NAND Root:" msgstr "Wii NAND Root" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "ريموت وي" @@ -13209,7 +13569,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13227,7 +13587,7 @@ msgstr "أزرار ريموت وي" msgid "Wii Remote Gyroscope" msgstr "جيروسكوب ريموت وي" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "إعدادات ريموت وي" @@ -13247,7 +13607,7 @@ msgstr "Wii TAS Input %1 - ريموت وي" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS Input %1 - ريموت وي + نونشوك" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "وي و ريموت وي" @@ -13255,11 +13615,11 @@ msgstr "وي و ريموت وي" msgid "Wii data is not public yet" msgstr "بيانات وي ليست عامة بعد" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "ملفات حفظ وي (*.bin);;كل الملفات (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools Signature MEGA File" @@ -13271,11 +13631,23 @@ msgstr "" "سوف يقفل مؤشر الماوس على أداة العرض طالما أنه يحتوي على تركيز. يمكنك ضبط " "مفتاح الاختصار لفتحه." +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "حجم النافذة" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "التفاف" @@ -13289,10 +13661,14 @@ msgstr "عالم" msgid "Write" msgstr "كتابة" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "كتابه فقط" @@ -13334,6 +13710,14 @@ msgstr "منطقة خاطئة" msgid "Wrong revision" msgstr "مراجعة خاطئة" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13342,11 +13726,11 @@ msgstr "مراجعة خاطئة" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF تسجيل" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13381,14 +13765,14 @@ msgstr "نعم" msgid "Yes to &All" msgstr "نعم للكل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13492,7 +13876,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13510,15 +13894,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "رمز 3 أصفار غير مدعوم" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "{0:08x} رمز صفر غير معروف لدولفين" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] and [%3, %4]" @@ -13526,11 +13914,11 @@ msgstr "[%1, %2] and [%3, %4]" msgid "^ Xor" msgstr "^ Xor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "محاذاة" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "اي قيمة" @@ -13549,21 +13937,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll تعذر تحميل" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "إفتراضي" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "غير متصل" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "تخطئ" @@ -13571,31 +13959,35 @@ msgstr "تخطئ" msgid "fake-completion" msgstr "إكمال زائف " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "يساوي" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "أكبر من" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "أكبر من أو يساوي" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "أقل من" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "أقل من أو يساوي" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "لا يساوي" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "آخر قيمة" @@ -13605,7 +13997,7 @@ msgstr "آخر قيمة" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13615,13 +14007,13 @@ msgstr "" msgid "none" msgstr "لا شيء" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "إيقاف" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "على" @@ -13638,16 +14030,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "هذه القيمة " +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "غير محاذي" @@ -13662,11 +14058,11 @@ msgstr "غير محاذي" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13703,7 +14099,7 @@ msgstr "| أو" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13714,8 +14110,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/ca.po b/Languages/po/ca.po index 50a545d77e4d..74e7883a6f6d 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -75,8 +75,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -97,19 +97,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -130,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -172,6 +173,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 no admet aquesta funció al teu sistema." @@ -198,13 +204,13 @@ msgstr "%1 s'ha unit" msgid "%1 has left" msgstr "%1 s'ha marxat" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -220,12 +226,12 @@ msgstr "%1 ara està jugant al golf" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +248,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%" @@ -250,26 +256,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -307,20 +313,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -330,23 +336,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Sobre" @@ -354,12 +360,12 @@ msgstr "&Sobre" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -367,27 +373,27 @@ msgstr "" msgid "&Add..." msgstr "&Afegir..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Paràmetres d'àudio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Actualització automàtica:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Finestra sense marges" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Punts d'interrupció" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -397,15 +403,15 @@ msgstr "" " \n" "&Cancel·lar" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Gestor de trucs" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -413,19 +419,24 @@ msgstr "" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Codi" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Configuració del controlador" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -433,7 +444,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -450,9 +461,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Edita codi..." @@ -460,23 +471,23 @@ msgstr "&Edita codi..." msgid "&Edit..." msgstr "&Edita..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Expulsa el disc" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulació" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exporta" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Exporta una partida guardada..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Exporta una captura d'estat..." @@ -484,55 +495,53 @@ msgstr "&Exporta una captura d'estat..." msgid "&Export as .gci..." msgstr "&Exportar com a .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "Avança un &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&Repositori GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Configuració de &gràfics" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Configuració de &tecles d'accés" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importa una captura d'estat..." @@ -540,19 +549,19 @@ msgstr "&Importa una captura d'estat..." msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Insertar blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -560,15 +569,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Carrega una captura d'estat..." -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -578,23 +591,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Enregistrament" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -603,23 +616,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Obre..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opcions" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Executar" @@ -627,15 +640,15 @@ msgstr "&Executar" msgid "&Properties" msgstr "&Propietats" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Mode de només lectura" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registres" @@ -643,41 +656,45 @@ msgstr "&Registres" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reinicia" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Aturar" @@ -685,15 +702,19 @@ msgstr "&Aturar" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Eines" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -703,17 +724,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Veure" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Pàgina web" @@ -725,11 +746,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -745,7 +766,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -753,7 +774,7 @@ msgstr "" msgid "(off)" msgstr "(Deshabilitat)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -773,15 +794,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -792,12 +813,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Dividir" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -809,7 +830,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -817,11 +838,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -833,17 +854,17 @@ msgstr "16 Mbit (251 blocs)" msgid "16-bit" msgstr "16 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -855,11 +876,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -871,7 +892,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -883,25 +904,25 @@ msgstr "32 Mbit (507 blocs)" msgid "32-bit" msgstr "32 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -915,11 +936,11 @@ msgstr "Profunditat 3D" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -927,7 +948,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -943,7 +964,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -955,22 +976,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -978,11 +999,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -994,13 +1015,13 @@ msgstr "8 Mbit (123 blocs)" msgid "8-bit" msgstr "8 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -1016,7 +1037,7 @@ msgstr "" msgid "< Less-than" msgstr "< Menys que" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr " " @@ -1028,11 +1049,11 @@ msgstr " " msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1062,12 +1083,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Més gran que" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Ja hi ha una sessió NetPlay en curs!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1077,7 +1098,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1087,11 +1108,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1107,6 +1128,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1128,7 +1153,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Codi AR" @@ -1137,8 +1162,8 @@ msgstr "Codi AR" msgid "AR Codes" msgstr "Codis AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1152,7 +1177,7 @@ msgid "About Dolphin" msgstr "Sobre Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1171,7 +1196,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1257,19 +1282,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adaptador" @@ -1277,7 +1302,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador detectat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptador:" @@ -1287,7 +1312,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Afegeix" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1316,51 +1341,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Afegir..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adreça" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1421,12 +1443,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avançat" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1441,15 +1463,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1459,16 +1481,16 @@ msgstr "Àfrica" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1482,11 +1504,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1494,7 +1516,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Tots els fitxers (*)" @@ -1503,7 +1525,7 @@ msgstr "Tots els fitxers (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1512,8 +1534,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1525,7 +1547,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1537,15 +1559,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1573,7 +1595,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1611,15 +1633,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1637,7 +1659,7 @@ msgstr "Data Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1669,12 +1691,16 @@ msgstr "Estàs segur?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Relació d'aspecte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Relació d'aspecte:" @@ -1682,7 +1708,7 @@ msgstr "Relació d'aspecte:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1690,7 +1716,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1707,7 +1733,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1715,11 +1741,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 "" @@ -1731,12 +1757,12 @@ msgstr "Austràlia" msgid "Author" msgstr "Autor" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autors" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1744,11 +1770,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Múltiple de 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1760,7 +1782,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1768,32 +1790,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1801,38 +1823,42 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Registre BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motor:" @@ -1848,13 +1874,13 @@ msgstr "Suport d'entrada" msgid "Backward" msgstr "Cap enrere" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1862,20 +1888,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Pancarta" @@ -1895,15 +1921,15 @@ msgstr "Barra" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Bàsic" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Configuració bàsica" @@ -1911,15 +1937,15 @@ msgstr "Configuració bàsica" msgid "Bass" msgstr "Baix" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Bateria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (una vegada al mes)" @@ -1943,31 +1969,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1976,7 +2004,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -2003,32 +2031,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Abaix" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2066,11 +2205,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2080,11 +2219,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2116,7 +2255,7 @@ msgstr "Botó" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2132,7 +2271,7 @@ msgstr "Botó" msgid "Buttons" msgstr "Botons" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2142,11 +2281,11 @@ msgstr "" msgid "C Stick" msgstr "Palanca C" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Registre CP" @@ -2158,7 +2297,7 @@ msgstr "" msgid "CPU Options" msgstr "Opcions de CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2166,14 +2305,14 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Calcular" @@ -2185,11 +2324,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2197,19 +2336,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2218,64 +2357,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2283,19 +2434,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2313,7 +2466,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2321,7 +2474,7 @@ msgstr "" msgid "Change &Disc" msgstr "Canviar &Disc" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Canvia el &disc..." @@ -2329,7 +2482,7 @@ msgstr "Canvia el &disc..." msgid "Change Disc" msgstr "Canviar Disc" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2337,7 +2490,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2363,7 +2516,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2375,15 +2528,15 @@ msgstr "Xat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cerca trucs" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2391,7 +2544,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2409,27 +2562,27 @@ msgstr "" msgid "China" msgstr "Xina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Trieu un arxiu per obrir" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2456,15 +2609,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Esborrar" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2472,7 +2629,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2481,36 +2638,20 @@ msgstr "" msgid "Close" msgstr "Tancar" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Codi" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2537,7 +2678,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2564,7 +2709,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2572,9 +2717,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2587,10 +2732,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2663,7 +2814,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Paràmetres" @@ -2696,13 +2847,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2710,7 +2861,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmar a l'aturar" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2721,15 +2872,15 @@ msgstr "" msgid "Connect" msgstr "Connectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Connectar la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Connectar el teclat USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2749,7 +2900,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2790,7 +2941,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2814,7 +2965,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Comandaments" @@ -2877,8 +3028,8 @@ msgstr "" msgid "Convergence:" msgstr "Convergència:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2886,9 +3037,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2896,9 +3047,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2918,8 +3069,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2955,15 +3106,15 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2971,19 +3122,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -3001,6 +3152,11 @@ msgstr "" msgid "Core" msgstr "Nucli" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3010,7 +3166,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3083,7 +3239,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3120,13 +3276,13 @@ msgstr "" msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3135,15 +3291,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3152,17 +3304,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3170,11 +3313,11 @@ msgstr "" msgid "Critical" msgstr "Crític" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Retallar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3186,26 +3329,26 @@ msgstr "" msgid "Crossfade" msgstr "Atenuar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3213,27 +3356,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3245,13 +3392,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3276,7 +3423,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 "" @@ -3284,15 +3431,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 "" @@ -3314,7 +3461,7 @@ msgstr "Estora de ball" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3330,7 +3477,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3363,8 +3510,8 @@ msgstr "Zona morta" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Depuració" @@ -3373,7 +3520,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 "" @@ -3420,7 +3567,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 "" @@ -3432,11 +3579,11 @@ msgstr "" msgid "Default ISO:" msgstr "ISO per defecte:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3444,7 +3591,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3484,26 +3631,53 @@ msgstr "" msgid "Depth:" msgstr "Profunditat:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripció" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Descripció:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3511,7 +3685,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3519,7 +3693,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3528,7 +3702,7 @@ msgid "Device" msgstr "Dispositiu" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3537,11 +3711,11 @@ msgid "Device Settings" msgstr "Configuració del dispositiu" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3549,11 +3723,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3565,12 +3735,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3582,7 +3752,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3590,11 +3760,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3602,11 +3772,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deshabilitar boira" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3621,7 +3791,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3967,15 +4133,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandès" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Surt" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4001,7 +4167,7 @@ msgstr "Actualitzacions recents de memòria" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4014,7 +4180,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4030,15 +4196,15 @@ msgstr "Efecte" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4048,7 +4214,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4056,11 +4222,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Buida" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "El fil de l'emulador ja s'està executant" @@ -4068,11 +4234,11 @@ msgstr "El fil de l'emulador ja s'està executant" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4086,7 +4252,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4106,28 +4272,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4139,11 +4293,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Activar Trucs" @@ -4163,7 +4317,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Habilitar Doble nucli" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Habilitar Doble nucli (acceleració)" @@ -4183,7 +4337,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4209,6 +4363,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4222,7 +4380,7 @@ msgstr "Habilitar MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Habilitar Exploració &Progressiva" @@ -4235,11 +4393,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Habilitar l'Estalvi de Pantalla" @@ -4251,15 +4409,15 @@ msgstr "Activar Altaveu de Dades" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Habilitar Wireframe" @@ -4329,7 +4487,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4360,7 +4518,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4368,7 +4526,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4385,7 +4543,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 "" @@ -4413,7 +4571,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4421,7 +4579,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4429,7 +4587,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4454,7 +4612,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Anglès" @@ -4463,7 +4621,7 @@ msgstr "Anglès" msgid "Enhancements" msgstr "Millores" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4485,11 +4643,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4498,8 +4662,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4510,45 +4674,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4558,16 +4728,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -4584,9 +4754,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4600,7 +4770,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4666,13 +4836,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4691,40 +4861,12 @@ msgstr "" msgid "Euphoria" msgstr "Eufòria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4732,7 +4874,7 @@ msgstr "" msgid "Exit" msgstr "Surt" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4740,7 +4882,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4752,15 +4894,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4768,11 +4910,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportar totes les partides guardades de Wii" @@ -4787,7 +4929,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportar gravació" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exporta l'enregistrament..." @@ -4815,14 +4957,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensió" @@ -4843,7 +4985,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4876,12 +5018,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Jugador FIFO" @@ -4899,7 +5041,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4907,12 +5049,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4940,19 +5082,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4972,15 +5115,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Error al descarregar codis." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4993,7 +5136,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5016,33 +5159,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5053,7 +5192,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5062,18 +5201,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5085,19 +5224,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5107,13 +5248,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5121,6 +5270,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5147,28 +5300,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5188,7 +5345,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5210,31 +5367,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5268,31 +5428,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5343,7 +5503,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5351,11 +5511,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5368,7 +5528,7 @@ msgstr "Ràpid" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5379,11 +5539,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5391,9 +5551,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5405,20 +5565,20 @@ msgstr "" msgid "File Info" msgstr "informació del fitxer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nom de l'arxiu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Mida del fitxer" @@ -5426,7 +5586,7 @@ msgstr "Mida del fitxer" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "L'arxiu no conté codis." @@ -5460,15 +5620,15 @@ msgstr "Sistema d'arxius" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5480,7 +5640,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5496,31 +5656,32 @@ msgstr "Arregla les sumes de comprovació" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5530,13 +5691,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5544,7 +5705,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" @@ -5576,11 +5737,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5617,17 +5778,17 @@ msgstr "Endavant" msgid "Forward port (UPnP)" msgstr "Reenviar port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5648,7 +5809,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5656,7 +5817,7 @@ msgstr "" msgid "Frame Range" msgstr "Rang de Fotogrames" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5680,7 +5841,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5711,7 +5872,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francès" @@ -5735,7 +5896,7 @@ msgstr "de" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Amplia" @@ -5767,7 +5928,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5883,26 +6044,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5930,8 +6091,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID del joc" @@ -5991,11 +6152,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -6003,11 +6164,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6020,11 +6181,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6052,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codis Gecko" @@ -6062,35 +6223,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "General" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemany" @@ -6102,18 +6263,18 @@ msgstr "Alemanya" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6126,8 +6287,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gràfics" @@ -6166,7 +6327,7 @@ msgstr "Verd Esquerra" msgid "Green Right" msgstr "Verd Dret" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6175,7 +6336,7 @@ msgstr "" msgid "Guitar" msgstr "Guitarra" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6203,36 +6364,35 @@ msgstr "" msgid "Hacks" msgstr "Modificacions" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6245,7 +6405,11 @@ msgstr "" msgid "Hide" msgstr "Oculta" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6261,12 +6425,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6275,14 +6439,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6299,7 +6457,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6323,16 +6481,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Tecles d'accés ràpid" @@ -6341,7 +6499,7 @@ msgstr "Tecles d'accés ràpid" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6355,16 +6513,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6399,7 +6557,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilitat d'IR:" @@ -6432,11 +6590,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6482,11 +6640,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignora els canvis de format" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6510,7 +6672,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6519,7 +6681,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6534,15 +6696,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6553,15 +6715,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6570,27 +6723,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6635,15 +6788,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6663,8 +6817,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informació" @@ -6678,10 +6832,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Entrada" @@ -6695,20 +6849,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir la targeta SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6722,7 +6882,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6730,11 +6890,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6743,7 +6905,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6752,7 +6914,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6769,19 +6931,19 @@ msgstr "" msgid "Interface" msgstr "Interfície" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6794,19 +6956,19 @@ msgstr "Error intern LZO - la compressió ha fallat" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6821,7 +6983,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Resolució Interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6829,11 +6991,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6845,7 +7007,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6854,11 +7016,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6887,7 +7049,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6899,20 +7061,20 @@ msgstr "" msgid "Invalid recording file" msgstr "Fitxer d'enregistrament invàlid" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Paràmetres de búsqueda invàlids (cap objecte seleccionat)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Cadena de cerca invàlida (només es soporten longituds de la cadena parelles)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6922,7 +7084,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italià" @@ -6931,63 +7093,63 @@ msgid "Italy" msgstr "Itàlia" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6999,27 +7161,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japó" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonès" @@ -7030,13 +7196,13 @@ msgstr "Japonès" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7050,7 +7216,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7071,7 +7237,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7079,12 +7245,12 @@ msgstr "" msgid "Kick Player" msgstr "Expulsar jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreà" @@ -7095,7 +7261,7 @@ msgstr "Coreà" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7105,7 +7271,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analògic" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7113,35 +7279,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7211,13 +7379,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Llicència" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7231,7 +7399,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7239,11 +7407,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7254,29 +7422,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carrega textures personalitzades" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7297,7 +7472,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7386,19 +7561,19 @@ msgstr "Carregar ranura d'estat 8" msgid "Load State Slot 9" msgstr "Carregar estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Carrega des d'un fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Carrega des de la ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Carrega des d'una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7410,16 +7585,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7427,18 +7602,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7458,7 +7633,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Registre" @@ -7470,7 +7645,7 @@ msgstr "Configuració del registre" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7478,7 +7653,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7494,7 +7669,7 @@ msgstr "Sortides del registrador" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7509,16 +7684,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7526,7 +7701,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7536,7 +7711,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7544,37 +7719,37 @@ msgstr "" msgid "Main Stick" msgstr "Palanca principal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Fabricant" @@ -7591,12 +7766,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7608,7 +7783,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7625,16 +7800,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7646,7 +7821,7 @@ msgstr "" msgid "Memory Card" msgstr "Targeta de memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7658,7 +7833,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7674,7 +7849,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7682,29 +7857,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Micròfon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Miscel·làni" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configuracions Miscel·lànies" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7724,36 +7903,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7765,16 +7949,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7811,6 +7995,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7820,10 +8008,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7832,8 +8020,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7842,7 +8030,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7859,25 +8047,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7886,7 +8074,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7943,7 +8131,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7973,7 +8161,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7981,7 +8169,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7989,7 +8177,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7998,7 +8186,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8012,7 +8200,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -8026,7 +8214,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8040,7 +8228,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8048,16 +8236,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "No hi ha descripció disponible" @@ -8073,15 +8261,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8090,7 +8278,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8102,10 +8290,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8117,11 +8301,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8130,18 +8314,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Cap" @@ -8201,7 +8385,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8236,10 +8420,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Rang d'objecte" @@ -8253,7 +8485,7 @@ msgstr "" msgid "Off" msgstr "Apagar" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8265,14 +8497,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Documentació en línia" @@ -8280,13 +8527,13 @@ msgstr "&Documentació en línia" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8294,7 +8541,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Obre" @@ -8303,11 +8550,11 @@ msgstr "Obre" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Obre la carpeta de l'&usuari" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8328,7 +8575,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8361,11 +8608,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opcions" @@ -8378,13 +8625,36 @@ msgstr "Taronja" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Altres" @@ -8397,7 +8667,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8417,16 +8687,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Reprodueix l'enregistrament d'entrades" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8435,15 +8705,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8451,11 +8721,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8468,11 +8738,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8523,11 +8793,15 @@ msgstr "" msgid "Paths" msgstr "Camins" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pausa al final de l'enregistrament" @@ -8566,7 +8840,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Il·luminació per píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8574,33 +8848,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8616,12 +8890,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plataforma" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Juga" @@ -8633,7 +8907,7 @@ msgstr "" msgid "Play Recording" msgstr "Reproduir enregistrament" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8645,27 +8919,27 @@ msgstr "Opcions de reproducció" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8674,7 +8948,8 @@ msgstr "" msgid "Players" msgstr "Jugadors" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8686,23 +8961,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8711,7 +8990,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8732,11 +9011,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8744,11 +9023,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8771,7 +9050,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8786,7 +9065,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8797,7 +9076,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8809,7 +9088,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8843,8 +9122,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8852,11 +9131,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8876,14 +9155,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Pregunta" @@ -8904,19 +9183,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analògic" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8929,11 +9208,11 @@ msgstr "" msgid "Range" msgstr "Rang" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8945,7 +9224,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8957,14 +9240,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8985,10 +9268,15 @@ msgstr "Balance Board real" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9002,7 +9290,7 @@ msgstr "Enregistrar" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9037,7 +9325,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9045,14 +9333,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Actualitza" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9060,11 +9348,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9073,8 +9361,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regió" @@ -9103,7 +9391,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Eliminar" @@ -9120,7 +9408,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9131,8 +9419,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9140,11 +9428,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9160,23 +9448,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reiniciar" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9204,6 +9491,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9220,7 +9511,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9237,7 +9528,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9296,7 +9587,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9314,26 +9605,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibració" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9349,19 +9666,19 @@ msgstr "Rússia" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9369,7 +9686,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9382,7 +9699,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9390,11 +9707,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9404,11 +9721,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "&Desa l'Estat" @@ -9421,7 +9738,6 @@ msgstr "Segur" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9431,9 +9747,17 @@ msgstr "Desar" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9442,24 +9766,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9471,13 +9795,13 @@ msgstr "Desar l'Estat Més Antic" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Desar Estat" @@ -9521,23 +9845,23 @@ msgstr "Desar Ranura d'Estat 8" msgid "Save State Slot 9" msgstr "Desar Ranura d'Estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9545,7 +9869,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9557,26 +9881,26 @@ msgstr "" msgid "Save as..." msgstr "Desar com..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9584,7 +9908,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9596,7 +9920,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9608,26 +9932,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Copia EFB escalada" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Captura" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Buscar" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9635,17 +9959,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Cercar en Subcarpetes" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9653,11 +9977,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9677,7 +10001,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9685,28 +10009,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9726,15 +10058,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9742,7 +10074,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Tria ranura de captura" @@ -9801,15 +10133,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9817,11 +10149,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9829,19 +10161,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9849,12 +10181,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Seleccioni el fitxer de partida guardada" @@ -9870,7 +10202,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "El perfil del controlador seleccionat no existeix" @@ -9882,26 +10214,45 @@ msgstr "El perfil del controlador seleccionat no existeix" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9913,18 +10264,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9938,7 +10300,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posició Barra de Sensors" @@ -9962,16 +10324,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9987,40 +10345,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10032,20 +10390,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Sacsejar" @@ -10062,16 +10420,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Mostrar &Registre" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Mostrar Barra d'&Eines" @@ -10079,53 +10437,53 @@ msgstr "Mostrar Barra d'&Eines" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Mostrar Austràlia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Comptador de fotogrames" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Mostrar Alemanya" @@ -10137,23 +10495,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Visualitza les entrades" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Mostrar Itàlia" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Mostrar Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Comptador de lag" @@ -10161,19 +10519,19 @@ msgstr "Comptador de lag" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Mostrar la &Configuració del Registre" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10181,32 +10539,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Mostrar Plataformes" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Mostrar Regions" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Comptador de reenregistraments" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10214,72 +10576,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostrar Estadístiques" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Rellotge del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10287,65 +10649,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10355,34 +10723,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10391,7 +10759,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Xinès Simplificat" @@ -10408,17 +10776,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10453,24 +10821,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10478,10 +10846,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10491,7 +10855,7 @@ msgstr "" msgid "Slot A" msgstr "Ranura A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10499,7 +10863,7 @@ msgstr "" msgid "Slot B" msgstr "Ranura B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10507,7 +10871,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10531,12 +10895,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10550,27 +10914,27 @@ msgstr "Espanya" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanyol" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volum de l'altaveu:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10591,15 +10955,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10612,25 +10976,28 @@ msgstr "Controlador Estàndard" msgid "Start" msgstr "Començar" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Comença l'enregistrament d'entrades" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Iniciar Gravació" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10646,10 +11013,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10659,7 +11026,7 @@ msgstr "Volant" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10671,13 +11038,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10693,7 +11060,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10702,7 +11069,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10732,18 +11099,14 @@ msgstr "Palanca" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Atura" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Atura la reproducció/enregistrament d'entrades" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10776,7 +11139,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Ajustar a la Finestra" @@ -10811,8 +11174,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10839,7 +11202,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10851,12 +11214,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10867,11 +11230,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Suport" @@ -10879,16 +11242,16 @@ msgstr "Suport" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10898,12 +11261,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10914,7 +11277,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Swing" @@ -10928,34 +11291,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10981,7 +11331,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11000,24 +11350,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11027,7 +11377,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11035,15 +11385,15 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Captura de pantalla" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11051,7 +11401,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11059,6 +11409,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11068,7 +11424,7 @@ msgstr "Cache de textures" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11080,7 +11436,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Superposició del format de textura" @@ -11103,7 +11459,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11117,13 +11473,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11134,11 +11490,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11171,6 +11527,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11188,7 +11551,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11208,17 +11571,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11226,7 +11589,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11240,7 +11603,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11256,7 +11619,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11267,7 +11630,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11324,9 +11687,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11340,11 +11703,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11358,8 +11721,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11386,12 +11749,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "El codi AR desxifrat resultant no conté cap línia." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11425,7 +11788,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11440,11 +11803,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11452,15 +11815,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11483,7 +11846,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11509,14 +11872,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11552,19 +11920,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11681,6 +12049,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11693,11 +12065,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11710,7 +12082,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11718,7 +12090,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11737,6 +12109,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11751,11 +12130,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11763,12 +12142,12 @@ msgstr "" msgid "Threshold" msgstr "Llindar" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Inclinació" @@ -11782,10 +12161,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Títol" @@ -11799,7 +12178,7 @@ msgstr "A" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Pantalla completa" @@ -11824,7 +12203,7 @@ msgid "Toggle Aspect Ratio" msgstr "Commutar Relació d'Aspecte" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11876,15 +12255,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Superior" @@ -11892,9 +12275,8 @@ msgstr "Superior" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11931,28 +12313,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Xinès Tradicional" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11989,26 +12371,26 @@ msgid "Triggers" msgstr "Gatells" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tipus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -12020,7 +12402,7 @@ msgstr "EUA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12032,20 +12414,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12053,7 +12435,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12062,7 +12444,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12074,11 +12456,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12098,7 +12480,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12121,15 +12503,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Desfés la càrrega de captura" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Desfer Estat Guardat" @@ -12147,11 +12529,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12162,12 +12544,13 @@ msgstr "" msgid "Unknown" msgstr "Desconegut" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12191,11 +12574,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12203,7 +12586,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12211,7 +12594,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12231,16 +12614,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Il·limitat" @@ -12273,22 +12658,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12350,23 +12735,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12378,15 +12763,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12394,7 +12779,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "Utilitzar Gestors de Pànic" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12412,43 +12797,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12480,21 +12840,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12502,31 +12862,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utilitat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Sincronització Vertical" @@ -12534,11 +12894,11 @@ msgstr "Sincronització Vertical" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12546,17 +12906,17 @@ msgstr "" msgid "Value:" msgstr "Valor:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12572,16 +12932,16 @@ msgstr "Verbositat" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12595,7 +12955,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12609,12 +12969,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12622,14 +12982,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" @@ -12649,31 +13009,31 @@ msgstr "Pujar el volum" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12712,12 +13072,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12728,7 +13088,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12750,7 +13110,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Advertència" @@ -12822,7 +13182,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12839,7 +13199,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12847,7 +13207,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12855,7 +13215,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12879,7 +13239,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "Arrel de la NAND:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12887,7 +13247,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12905,7 +13265,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12925,7 +13285,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12933,11 +13293,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12947,11 +13307,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Ajust de línia" @@ -12965,10 +13337,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -13010,6 +13386,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13018,11 +13402,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Registre XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13057,14 +13441,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13161,7 +13545,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13179,15 +13563,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Codi Zero 3 no està suportat" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13195,11 +13583,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13218,21 +13606,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -13240,31 +13628,35 @@ msgstr "errno" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13274,7 +13666,7 @@ msgstr "" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13284,13 +13676,13 @@ msgstr "" msgid "none" msgstr "cap" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13307,16 +13699,20 @@ msgstr "s" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13331,11 +13727,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13370,7 +13766,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13379,8 +13775,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/cs.po b/Languages/po/cs.po index 6c983a0ef22e..8d862827294c 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -59,8 +59,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -79,19 +79,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -112,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -151,6 +152,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -174,13 +180,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -196,12 +202,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +224,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -226,26 +232,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -283,20 +289,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -306,23 +312,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -330,12 +336,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -343,27 +349,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Nastavení &zvuku" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Body přerušení" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -371,15 +377,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -387,19 +393,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Nastavení ovladače" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -407,7 +418,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -424,9 +435,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -434,23 +445,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulace" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -458,55 +469,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Soubor" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Postup snímkem" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Ú&ložiště Github" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafická nastavení" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Nápověda" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Nastavení &klávesových zkratek" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -514,19 +523,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -534,15 +543,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Nahrát Stav" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -552,23 +565,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "Pa&měť" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Video" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -577,23 +590,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Otevřít..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "V&olby" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Přehrát" @@ -601,15 +614,15 @@ msgstr "&Přehrát" msgid "&Properties" msgstr "&Vlastnosti" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Režim pouze pro čtení" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registry" @@ -617,41 +630,45 @@ msgstr "&Registry" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Resetovat" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "Za&stavit" @@ -659,15 +676,19 @@ msgstr "Za&stavit" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "Nás&troje" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -677,17 +698,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Sledování" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Internetová stránka" @@ -699,11 +720,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -719,7 +740,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -727,7 +748,7 @@ msgstr "" msgid "(off)" msgstr "(vypnuto)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -747,15 +768,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -766,12 +787,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -783,7 +804,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -791,11 +812,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -807,17 +828,17 @@ msgstr "" msgid "16-bit" msgstr "16-bitové" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -829,11 +850,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -845,7 +866,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -857,25 +878,25 @@ msgstr "" msgid "32-bit" msgstr "32-bitové" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -889,11 +910,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -901,7 +922,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -917,7 +938,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -929,22 +950,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -952,11 +973,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -968,13 +989,13 @@ msgstr "" msgid "8-bit" msgstr "8-bitové" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -990,7 +1011,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1002,11 +1023,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1036,12 +1057,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1051,7 +1072,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1061,11 +1082,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1081,6 +1102,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1102,7 +1127,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1111,8 +1136,8 @@ msgstr "" msgid "AR Codes" msgstr "Kódy AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1126,7 +1151,7 @@ msgid "About Dolphin" msgstr "O Dolphinu" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1145,7 +1170,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1231,19 +1256,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1251,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Zjištěn adaptér" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptér:" @@ -1261,7 +1286,7 @@ msgstr "Adaptér:" msgid "Add" msgstr "Přidat" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1290,51 +1315,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Přidat..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adresa" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1395,12 +1417,12 @@ msgid "Advance Game Port" msgstr "Port Advance Game" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Pokročilé" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1415,15 +1437,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1433,16 +1455,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1456,11 +1478,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1468,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1477,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1486,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1499,7 +1521,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1511,15 +1533,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1547,7 +1569,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1585,15 +1607,15 @@ msgstr "Vyhlazení okrajů" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1611,7 +1633,7 @@ msgstr "Datum zavaděče aplikace:" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1643,12 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Poměr Stran:" @@ -1656,7 +1682,7 @@ msgstr "Poměr Stran:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1664,7 +1690,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1681,7 +1707,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1689,11 +1715,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 "" @@ -1705,12 +1731,12 @@ msgstr "Austrálie" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autoři" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1718,11 +1744,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Násobek 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1734,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1742,32 +1764,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1775,38 +1797,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT nesprávné. Dolphin bude nyní ukončen" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Registr BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Podpůrná vrstva:" @@ -1822,13 +1848,13 @@ msgstr "Zadní Vstup" msgid "Backward" msgstr "Dozadu" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1836,20 +1862,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Plakát" @@ -1869,15 +1895,15 @@ msgstr "Vibráto" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Základní" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Základní nastavení" @@ -1885,15 +1911,15 @@ msgstr "Základní nastavení" msgid "Bass" msgstr "Basy" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Baterie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1917,31 +1943,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1950,7 +1978,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1977,32 +2005,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Celá obrazovka bez okrajů" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Dole" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2040,11 +2179,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2054,11 +2193,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2090,7 +2229,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2106,7 +2245,7 @@ msgstr "" msgid "Buttons" msgstr "Tlačítka" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2116,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "Kruhová páčka" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Registr CP" @@ -2132,7 +2271,7 @@ msgstr "" msgid "CPU Options" msgstr "Možnosti procesoru" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2140,14 +2279,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Převaděč s mezipamětí (pomalejší)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2159,11 +2298,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2171,19 +2310,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2192,64 +2331,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2257,19 +2408,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2287,7 +2440,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2295,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "Vyměnit &disk" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Vyměnit &Disk..." @@ -2303,7 +2456,7 @@ msgstr "Vyměnit &Disk..." msgid "Change Disc" msgstr "Vyměnit Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2311,7 +2464,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2337,7 +2490,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2349,15 +2502,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Hledání Cheatů" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2365,7 +2518,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2383,27 +2536,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Zvolte soubor k otevření" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2430,15 +2583,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Vyčistit" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2446,7 +2603,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2455,36 +2612,20 @@ msgstr "" msgid "Close" msgstr "Zavřít" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2511,7 +2652,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2538,7 +2683,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2546,9 +2691,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2561,10 +2706,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2637,7 +2788,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Nastavení" @@ -2670,13 +2821,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2684,7 +2835,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Při zastavení Potvrdit" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2695,15 +2846,15 @@ msgstr "" msgid "Connect" msgstr "Připojit" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Připojit Rola-Bola" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Připojit USB Klávesnici" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2723,7 +2874,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2764,7 +2915,7 @@ msgstr "" msgid "Control Stick" msgstr "Ovládací páčka" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2788,7 +2939,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Ovladače" @@ -2851,8 +3002,8 @@ msgstr "" msgid "Convergence:" msgstr "Sblížení:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2860,9 +3011,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2870,9 +3021,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2892,8 +3043,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2929,15 +3080,15 @@ msgstr "" msgid "Copy" msgstr "Kopírovat" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2945,19 +3096,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2975,6 +3126,11 @@ msgstr "" msgid "Core" msgstr "Jádro" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2984,7 +3140,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3057,7 +3213,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3094,13 +3250,13 @@ msgstr "" msgid "Country:" msgstr "Země:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3109,15 +3265,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3126,17 +3278,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3144,11 +3287,11 @@ msgstr "" msgid "Critical" msgstr "Kritické" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Oříznout" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3160,26 +3303,26 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3187,27 +3330,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3219,13 +3366,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3250,7 +3397,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 "" @@ -3258,15 +3405,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 "" @@ -3288,7 +3435,7 @@ msgstr "Taneční podložka" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3304,7 +3451,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3337,8 +3484,8 @@ msgstr "Mrtvá Zóna" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Ladění" @@ -3347,7 +3494,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 "" @@ -3394,7 +3541,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 "" @@ -3406,11 +3553,11 @@ msgstr "" msgid "Default ISO:" msgstr "Výchozí ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3418,7 +3565,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3458,26 +3605,53 @@ msgstr "" msgid "Depth:" msgstr "Hloubka:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Popis" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Popis:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3485,7 +3659,7 @@ msgstr "" msgid "Detect" msgstr "Zjistit" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3493,7 +3667,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3502,7 +3676,7 @@ msgid "Device" msgstr "Zařízení" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3511,11 +3685,11 @@ msgid "Device Settings" msgstr "Nastavení Zařízení" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3523,11 +3697,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3539,12 +3709,12 @@ msgstr "Přímé spojení" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3556,7 +3726,7 @@ msgstr "Zakázat ohraničující rámeček" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3564,11 +3734,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Zakázat limit rychlosti emulace" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3576,11 +3746,11 @@ msgstr "" msgid "Disable Fog" msgstr "Zakázat Mlhu" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3595,7 +3765,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3941,15 +4107,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nizozemština" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "O&dejít" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3975,7 +4141,7 @@ msgstr "Předčasné Aktualizace Paměti" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3988,7 +4154,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4004,15 +4170,15 @@ msgstr "Efekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4022,7 +4188,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4030,11 +4196,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Vestavěná vyrovnávací paměť snímků (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Prázdné" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Vlákno Emulace již běží" @@ -4042,11 +4208,11 @@ msgstr "Vlákno Emulace již běží" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4060,7 +4226,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4080,28 +4246,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4113,11 +4267,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Povolit Cheaty" @@ -4137,7 +4291,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Povolit dvojité jádro" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Zapnout dvojité jádro (zrychlení)" @@ -4157,7 +4311,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Povolit FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4183,6 +4337,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4196,7 +4354,7 @@ msgstr "Zapnout MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Povolit Progresivní Skenování" @@ -4209,11 +4367,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Povolit Spořič Obrazovky" @@ -4225,15 +4383,15 @@ msgstr "Povolit data reproduktorů" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Povolit hlášení statistik o užívání" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Povolit Drátěný Model" @@ -4303,7 +4461,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4336,7 +4494,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4344,7 +4502,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4361,7 +4519,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 "" @@ -4389,7 +4547,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4397,7 +4555,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4405,7 +4563,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4430,7 +4588,7 @@ msgstr "Enet nebyl uaveden" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Angličtina" @@ -4439,7 +4597,7 @@ msgstr "Angličtina" msgid "Enhancements" msgstr "Vylepšení" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4461,11 +4619,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4474,8 +4638,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4486,45 +4650,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4534,16 +4704,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Chyba" @@ -4560,9 +4730,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4575,7 +4745,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4641,13 +4811,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4666,40 +4836,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Evropa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4707,7 +4849,7 @@ msgstr "" msgid "Exit" msgstr "Ukončit" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4715,7 +4857,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4727,15 +4869,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4743,11 +4885,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportovat všechny uložené hry Wii" @@ -4762,7 +4904,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportovat Nahrávku" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exportovat Nahrávku..." @@ -4790,14 +4932,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Rozšíření" @@ -4818,7 +4960,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Externí vyrovnávací paměť snímků (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4851,12 +4993,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Přehrávač FIFO" @@ -4874,7 +5016,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4882,12 +5024,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4915,19 +5057,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4947,15 +5090,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Stahování kódů selhalo." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4968,7 +5111,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4991,33 +5134,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5028,7 +5167,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5037,18 +5176,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5060,19 +5199,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5082,13 +5223,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5096,6 +5245,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5122,28 +5275,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5163,7 +5320,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5185,31 +5342,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5243,31 +5403,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5318,7 +5478,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5326,11 +5486,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5343,7 +5503,7 @@ msgstr "Rychlá" msgid "Fast Depth Calculation" msgstr "Rychlý výpočet hloubky" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5354,11 +5514,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5366,9 +5526,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5380,20 +5540,20 @@ msgstr "" msgid "File Info" msgstr "Informace o souboru" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Název souboru" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Velikost souboru" @@ -5401,7 +5561,7 @@ msgstr "Velikost souboru" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Soubor neobsahoval žádné kódy" @@ -5435,15 +5595,15 @@ msgstr "Souborový systém" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5455,7 +5615,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5471,31 +5631,32 @@ msgstr "Spravit Kontrolní Součty" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5505,13 +5666,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5519,7 +5680,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" @@ -5551,11 +5712,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5592,17 +5753,17 @@ msgstr "Dopředu" msgid "Forward port (UPnP)" msgstr "Přesměrování portu (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5623,7 +5784,7 @@ 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:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5631,7 +5792,7 @@ msgstr "" msgid "Frame Range" msgstr "Rozsah Snímku" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5655,7 +5816,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5686,7 +5847,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francouzština" @@ -5710,7 +5871,7 @@ msgstr "Z" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "CelObr" @@ -5742,7 +5903,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5858,26 +6019,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartridže Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5905,8 +6066,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID hry" @@ -5966,11 +6127,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5978,11 +6139,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "Ovladače GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5995,11 +6156,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6027,7 +6188,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kódy Gecko" @@ -6037,35 +6198,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Obecné" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Vytvořit novou identitu pro statistiky" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Němčina" @@ -6077,18 +6238,18 @@ msgstr "Německo" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6101,8 +6262,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6141,7 +6302,7 @@ msgstr "Zelená vlevo" msgid "Green Right" msgstr "Zelená vpravo" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6150,7 +6311,7 @@ msgstr "" msgid "Guitar" msgstr "Kytara" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6178,36 +6339,35 @@ msgstr "" msgid "Hacks" msgstr "Hacky" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6220,7 +6380,11 @@ msgstr "" msgid "Hide" msgstr "Skrýt" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6236,12 +6400,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6250,14 +6414,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6274,7 +6432,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6298,16 +6456,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Klávesové zkratky" @@ -6316,7 +6474,7 @@ msgstr "Klávesové zkratky" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6330,16 +6488,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6374,7 +6532,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Citlivost Infračer.:" @@ -6407,11 +6565,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6457,11 +6615,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorovat Změny Formátu" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6485,7 +6647,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6494,7 +6656,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6509,15 +6671,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6528,15 +6690,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6545,27 +6698,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6610,15 +6763,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6638,8 +6792,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informace" @@ -6653,10 +6807,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Vstup" @@ -6670,20 +6824,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Vložit SD Kartu" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6697,7 +6857,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6705,11 +6865,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6718,7 +6880,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6727,7 +6889,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6744,19 +6906,19 @@ msgstr "" msgid "Interface" msgstr "Rozhraní" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6769,19 +6931,19 @@ msgstr "Vnitřní chyba LZO - komprimace selhala" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6796,7 +6958,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Vnitřní Rozlišení:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6804,11 +6966,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Převaděč (nejpomalejší)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6820,7 +6982,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6829,11 +6991,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6862,7 +7024,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6874,19 +7036,19 @@ msgstr "" msgid "Invalid recording file" msgstr "Neplatný soubor s nahrávkou" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Neplatné parametry hledání (není vybrán žádný objekt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Neplatný řetězec hledání (jsou podporovány pouze sudé délky řetězce)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6896,7 +7058,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italština" @@ -6905,63 +7067,63 @@ msgid "Italy" msgstr "Itálie" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6973,27 +7135,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japonsko" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonština" @@ -7004,13 +7170,13 @@ msgstr "Japonština" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7024,7 +7190,7 @@ msgstr "Okno vždy navrchu" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7045,7 +7211,7 @@ msgstr "" msgid "Keys" msgstr "Klávesy" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7053,12 +7219,12 @@ msgstr "" msgid "Kick Player" msgstr "Vykopnout hráče" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korejština" @@ -7069,7 +7235,7 @@ msgstr "Korejština" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7079,7 +7245,7 @@ msgstr "" msgid "L-Analog" msgstr "Levý Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7087,35 +7253,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7185,13 +7353,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licence" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7205,7 +7373,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7213,11 +7381,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7228,29 +7396,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Nahrát" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Nahrát Vlastní Textury" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7271,7 +7446,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7360,19 +7535,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:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7384,16 +7559,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7401,18 +7576,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7432,7 +7607,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Záznam" @@ -7444,7 +7619,7 @@ msgstr "Nastavení Záznamu" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7452,7 +7627,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Zaznamenat dobu vykreslování do souboru" @@ -7468,7 +7643,7 @@ msgstr "Výstup Zapisovače" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7483,16 +7658,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7500,7 +7675,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7510,7 +7685,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7518,37 +7693,37 @@ msgstr "" msgid "Main Stick" msgstr "Hlavní páčka" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Tvůrce" @@ -7565,12 +7740,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7582,7 +7757,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7599,16 +7774,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7620,7 +7795,7 @@ msgstr "" msgid "Memory Card" msgstr "Paměťová karta" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7632,7 +7807,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7648,7 +7823,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7656,29 +7831,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Ostatní" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Ostatní Nastavení" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7698,36 +7877,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifikátor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7739,16 +7923,16 @@ msgstr "Monoskopické stíny" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7785,6 +7969,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7794,10 +7982,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7806,8 +7994,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7816,7 +8004,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7833,25 +8021,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7860,7 +8048,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7917,7 +8105,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7947,7 +8135,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7955,7 +8143,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Nová identita vytvořena." @@ -7963,7 +8151,7 @@ msgstr "Nová identita vytvořena." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7972,7 +8160,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7986,7 +8174,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Přezdívka:" @@ -8000,7 +8188,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8014,7 +8202,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8022,16 +8210,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Žádný popis není dostupný" @@ -8047,15 +8235,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8064,7 +8252,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8076,10 +8264,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8091,11 +8275,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8104,7 +8288,7 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Žádné undo.dtm nenalezeno, aby se zabránilo desynchronizaci videa, bude " @@ -8112,11 +8296,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Žádné" @@ -8176,7 +8360,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8211,10 +8395,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Rozsah Objektu" @@ -8228,7 +8460,7 @@ msgstr "" msgid "Off" msgstr "Vypnuto" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8240,14 +8472,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online &dokumentace" @@ -8255,13 +8502,13 @@ msgstr "Online &dokumentace" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8269,7 +8516,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Otevřít" @@ -8278,11 +8525,11 @@ msgstr "Otevřít" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8303,7 +8550,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8336,11 +8583,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Volby" @@ -8353,13 +8600,36 @@ msgstr "Oranžová" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Jiné" @@ -8372,7 +8642,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8392,16 +8662,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Spustit vstupní nahrávku..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8410,15 +8680,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8426,11 +8696,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8443,11 +8713,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pady" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8498,11 +8768,15 @@ msgstr "" msgid "Paths" msgstr "Cesty" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pozastavit" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pozastavit na konci videa" @@ -8541,7 +8815,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvětlení Podle Pixelu" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8549,33 +8823,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8591,12 +8865,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platforma" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Spustit" @@ -8608,7 +8882,7 @@ msgstr "" msgid "Play Recording" msgstr "Přehrát nahrávku" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8620,27 +8894,27 @@ msgstr "Možnosti Přehrávání" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8649,7 +8923,8 @@ msgstr "" msgid "Players" msgstr "Hráči" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8661,23 +8936,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8686,7 +8965,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8707,11 +8986,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Předzískat vlastní textury" @@ -8719,11 +8998,11 @@ msgstr "Předzískat vlastní textury" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8746,7 +9025,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8761,7 +9040,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8772,7 +9051,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8784,7 +9063,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8818,8 +9097,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8827,11 +9106,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8851,14 +9130,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Otázka" @@ -8879,19 +9158,19 @@ msgstr "R" msgid "R-Analog" msgstr "Pravý Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8904,11 +9183,11 @@ msgstr "" msgid "Range" msgstr "Rozsah" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8920,7 +9199,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8932,14 +9215,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8960,10 +9243,15 @@ msgstr "Opravdové Rola-Bola" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8977,7 +9265,7 @@ msgstr "Nahrávat" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9012,7 +9300,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9020,14 +9308,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Obnovit" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9035,11 +9323,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9048,8 +9336,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Oblast" @@ -9078,7 +9366,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Odstranit" @@ -9095,7 +9383,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9106,8 +9394,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9115,11 +9403,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9135,23 +9423,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Resetovat" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9179,6 +9466,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9195,7 +9486,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9212,7 +9503,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9271,7 +9562,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9289,26 +9580,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibrace" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9324,19 +9641,19 @@ msgstr "Rusko" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9344,7 +9661,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9357,7 +9674,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9365,11 +9682,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9379,11 +9696,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Uložit Sta&v" @@ -9396,7 +9713,6 @@ msgstr "Bezpečná" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9406,9 +9722,17 @@ msgstr "Uložit" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9417,24 +9741,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9446,13 +9770,13 @@ msgstr "Načíst nejstarší stav" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Uložit stav" @@ -9496,23 +9820,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:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9520,7 +9844,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9532,26 +9856,26 @@ msgstr "" msgid "Save as..." msgstr "Uložit jako" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9559,7 +9883,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9571,7 +9895,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9583,26 +9907,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "EFB Kopie Změněné Velikosti" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "SnímkObrz" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Hledat" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9610,17 +9934,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Hledat Podadresáře" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9628,11 +9952,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9652,7 +9976,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9660,28 +9984,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9701,15 +10033,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9717,7 +10049,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Vybrat pozici stavu" @@ -9776,15 +10108,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9792,11 +10124,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9804,19 +10136,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9824,12 +10156,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Vyberte soubor s uloženou hrou" @@ -9845,7 +10177,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Vybraný profil ovladače neexistuje" @@ -9857,26 +10189,45 @@ msgstr "Vybraný profil ovladače neexistuje" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9888,18 +10239,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9913,7 +10275,7 @@ msgstr "" msgid "Send" msgstr "Poslat" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Umístění Senzorové Tyče:" @@ -9937,16 +10299,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "Server zamítl pokus o průchod" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9962,23 +10320,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -9987,17 +10345,17 @@ 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Nastaví jazyk systému Wii" -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10009,20 +10367,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "Nastavení paměti Wii: Nelze vytvořit soubor settings.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Třes" @@ -10039,16 +10397,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Zobrazit Záznam" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Zobrazit Panel Nás&trojů" @@ -10056,53 +10414,53 @@ msgstr "Zobrazit Panel Nás&trojů" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Zobrazit Autrálii" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Zobrazit ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Zobrazit Snímky za Sekundu" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Zobrazit počítadlo snímků" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Zobrazit Francii" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Zobrazit GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Zobrazit Německo" @@ -10114,23 +10472,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Zobrazit Obrazovku Vstupu" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Zobrazit Itálii" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Zobrazit Koreu" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Zobrazit počítadlo zpoždění" @@ -10138,19 +10496,19 @@ msgstr "Zobrazit počítadlo zpoždění" msgid "Show Language:" msgstr "Jazyk Zobrazení:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Zobrazit Nastavení &Záznamu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Zobrazit Nizozemí" @@ -10158,32 +10516,36 @@ msgstr "Zobrazit Nizozemí" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Zobrazit Platformy" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Zobrazit Regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Zobrazit Rusko" @@ -10191,72 +10553,72 @@ msgstr "Zobrazit Rusko" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Zobrazit Španělsko" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Zobrazit Statistiky" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Zobrazit Tchaj-wan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Zobrazit USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Zobrazit neznámé" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Zobrazit WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Zobrazit Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Zobrazit svět" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10264,65 +10626,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10332,34 +10700,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Vedle sebe" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10368,7 +10736,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Zjednodušená čínština" @@ -10385,17 +10753,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10430,24 +10798,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10455,10 +10823,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10468,7 +10832,7 @@ msgstr "" msgid "Slot A" msgstr "Pozice A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10476,7 +10840,7 @@ msgstr "" msgid "Slot B" msgstr "Pozice B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10484,7 +10848,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10508,12 +10872,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10527,27 +10891,27 @@ msgstr "Španělsko" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Španělština" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Posun reproduktoru" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Hlasitost Reproduktoru:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10568,15 +10932,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10589,25 +10953,28 @@ msgstr "Standardní Ovladač" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Začít nahrávat vstup" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Začít Nahrávat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10623,10 +10990,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10636,7 +11003,7 @@ msgstr "Volant" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10648,13 +11015,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10670,7 +11037,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10679,7 +11046,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10709,18 +11076,14 @@ msgstr "Páčka" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zastavit" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10753,7 +11116,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Roztáhnout do Okna" @@ -10788,8 +11151,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10816,7 +11179,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10828,12 +11191,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10844,11 +11207,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Podpora" @@ -10856,16 +11219,16 @@ msgstr "Podpora" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10875,12 +11238,12 @@ msgstr "Prohodit oči" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10891,7 +11254,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Švihnutí" @@ -10905,34 +11268,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10958,7 +11308,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10977,24 +11327,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Jazyk Systému:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11004,7 +11354,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11012,15 +11362,15 @@ msgstr "" msgid "Taiwan" msgstr "Tchaj-wan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Vytvořit Snímek Obrazovky" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11028,7 +11378,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11036,6 +11386,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11045,7 +11401,7 @@ msgstr "Vyrovnávací Paměť Textur" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11057,7 +11413,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Překryv Formátu Textury" @@ -11080,7 +11436,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11094,13 +11450,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11111,11 +11467,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11148,6 +11504,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11165,7 +11528,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11185,17 +11548,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11203,7 +11566,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11217,7 +11580,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11233,7 +11596,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11244,7 +11607,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11301,9 +11664,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11317,11 +11680,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11335,8 +11698,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11363,12 +11726,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Výsledný rozšifrovaný kód AR neobsahuje žádné řádky." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11402,7 +11765,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11417,11 +11780,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11429,15 +11792,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11460,7 +11823,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11486,14 +11849,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Není co vrátit zpět!" @@ -11529,19 +11897,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11658,6 +12026,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11670,11 +12042,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11687,7 +12059,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11695,7 +12067,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11715,6 +12087,13 @@ 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 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11729,11 +12108,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11741,12 +12120,12 @@ msgstr "" msgid "Threshold" msgstr "Práh" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Naklánění" @@ -11760,10 +12139,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Název" @@ -11777,7 +12156,7 @@ msgstr "Do" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11802,7 +12181,7 @@ msgid "Toggle Aspect Ratio" msgstr "Přepínat poměr stran" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11854,15 +12233,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Nahoře" @@ -11870,9 +12253,8 @@ msgstr "Nahoře" msgid "Top-and-Bottom" msgstr "Nad sebou" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11909,28 +12291,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Tradiční Čínština" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11967,26 +12349,26 @@ msgid "Triggers" msgstr "Spínače" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Typ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11998,7 +12380,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12010,20 +12392,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12031,7 +12413,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12040,7 +12422,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12052,11 +12434,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12076,7 +12458,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12099,15 +12481,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Vrátit zpět Nahrání Stavu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Vrátit zpět Uložení Stavu" @@ -12125,11 +12507,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12140,12 +12522,13 @@ msgstr "" msgid "Unknown" msgstr "Neznámé" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12169,11 +12552,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12181,7 +12564,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12189,7 +12572,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12209,16 +12592,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Neomezeno" @@ -12251,22 +12636,22 @@ msgid "Unpacking" msgstr "Rozbalování" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12328,23 +12713,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Nastavení hlášení statistik o užívání" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12356,15 +12741,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Použít režim PAL60 (EuRGB60)" @@ -12372,7 +12757,7 @@ msgstr "Použít režim PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Použít Obslužné Rutiny Paniky" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12390,43 +12775,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "Použít jednu mezipaměť hloubky pro obě oči. Potřebné pro pár her." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12458,21 +12818,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12480,31 +12840,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Pomůcky" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Synch" @@ -12512,11 +12872,11 @@ msgstr "V-Synch" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Hodnota" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12524,17 +12884,17 @@ msgstr "" msgid "Value:" msgstr "Hodnota:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12550,16 +12910,16 @@ msgstr "Úroveň" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12573,7 +12933,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12587,12 +12947,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12600,14 +12960,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Hlasitost" @@ -12627,31 +12987,31 @@ msgstr "Zvýšit hlasitost" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12690,12 +13050,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12706,7 +13066,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12728,7 +13088,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Varování" @@ -12800,7 +13160,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12817,7 +13177,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12825,7 +13185,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12833,7 +13193,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12857,7 +13217,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "Wii Kořen NAND:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12865,7 +13225,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12883,7 +13243,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12903,7 +13263,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12911,11 +13271,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12925,11 +13285,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Zalamování textu" @@ -12943,10 +13315,14 @@ msgstr "Světové" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12988,6 +13364,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12996,11 +13380,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Registr XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13035,14 +13419,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13139,7 +13523,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13157,15 +13541,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Kód Zero 3 není podporován" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13173,11 +13561,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13196,21 +13584,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13218,31 +13606,35 @@ msgstr "" msgid "fake-completion" msgstr "předstírat dokončení" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13252,7 +13644,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13262,13 +13654,13 @@ msgstr "" msgid "none" msgstr "žádné" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13285,16 +13677,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13309,11 +13705,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13348,7 +13744,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13357,8 +13753,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/da.po b/Languages/po/da.po index abe4b2eaf95b..fa18d514c7fc 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -73,8 +73,8 @@ msgstr "$ Brugervariabel" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -95,19 +95,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -128,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Beholdning)" @@ -170,6 +171,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 understøtter ikke funktionen på dit system." @@ -193,13 +199,13 @@ msgstr "%1 ha tilsluttet sig" msgid "%1 has left" msgstr "%1 har forladt gruppen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -215,12 +221,12 @@ msgstr "%1 spiller golf nu" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +243,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%" @@ -245,26 +251,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -302,20 +308,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n adresse(r) kunne ikke tilgås i emuleret hukommelse." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n adresse(r) tilbage." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -325,23 +331,23 @@ msgstr "%n adresse(r) var fjernet." msgid "& And" msgstr "& And" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Om" @@ -349,12 +355,12 @@ msgstr "&Om" msgid "&Add Memory Breakpoint" msgstr "&Tilføj Hukommelsesbreakpoint" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Tilføj ny kode..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Tilføj funktion" @@ -362,27 +368,27 @@ msgstr "&Tilføj funktion" msgid "&Add..." msgstr "&Tilføj..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Lydindstillinger" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Breakpoints" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -390,15 +396,15 @@ msgstr "" msgid "&Cancel" msgstr "&Annuller" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Tjek for opdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Ryd symboler" @@ -406,19 +412,24 @@ msgstr "&Ryd symboler" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Kode" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Kontrollerindstillinger" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Kopiér adresse" @@ -426,7 +437,7 @@ msgstr "&Kopiér adresse" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Slet" @@ -443,9 +454,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Rediger kode..." @@ -453,23 +464,23 @@ msgstr "&Rediger kode..." msgid "&Edit..." msgstr "&Rediger..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Skub disk ud" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulation" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -477,55 +488,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Skrifttype..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Billedfremskydning" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub-repertoire" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafikindstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Hjælp" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Genvejstastindstillinger" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -533,19 +542,19 @@ msgstr "" msgid "&Import..." msgstr "&Importér..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -553,15 +562,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Sprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Indlæs Tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -571,23 +584,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Hukommelse" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Film" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -596,23 +609,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Åbn..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Afspil" @@ -620,15 +633,15 @@ msgstr "&Afspil" msgid "&Properties" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Read-Only Tilstand" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registre" @@ -636,41 +649,45 @@ msgstr "&Registre" msgid "&Remove" msgstr "&Fjern" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Fjern kode" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Nulstil" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Hastighedsgrænse:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Stop" @@ -678,15 +695,19 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Værktøjer" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -696,17 +717,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Betragt" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Website" @@ -718,11 +739,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -738,7 +759,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -746,7 +767,7 @@ msgstr "" msgid "(off)" msgstr "(fra)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -766,15 +787,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -785,12 +806,12 @@ msgstr "..." msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -802,7 +823,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blokke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -810,11 +831,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -826,17 +847,17 @@ msgstr "16 Mbit (251 blokke)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -848,11 +869,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -864,7 +885,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -876,25 +897,25 @@ msgstr "32 Mbit (507 blokke)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -908,11 +929,11 @@ msgstr "3D-dybde" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -920,7 +941,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -936,7 +957,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -948,22 +969,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blokke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -971,11 +992,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -987,13 +1008,13 @@ msgstr "8 Mbit (123 blokke)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -1009,7 +1030,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1021,11 +1042,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1055,12 +1076,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1070,7 +1091,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "En disk er allerede ved at blive sat ind" @@ -1080,11 +1101,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1102,6 +1123,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1135,7 +1160,7 @@ msgstr "" "ikke korrekt.\n" "Anvend på egen risiko.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kode" @@ -1144,8 +1169,8 @@ msgstr "AR-kode" msgid "AR Codes" msgstr "AR-koder" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1159,7 +1184,7 @@ msgid "About Dolphin" msgstr "Om Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1178,7 +1203,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1264,19 +1289,19 @@ msgstr "" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1284,7 +1309,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter Opfanget" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1294,7 +1319,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Tilføj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1323,51 +1348,48 @@ msgstr "Tilføj et hukommelsesbreakpoint" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Tilføj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adresse" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1428,12 +1450,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avanceret" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1448,15 +1470,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1466,16 +1488,16 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1489,11 +1511,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1501,7 +1523,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1510,7 +1532,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1519,8 +1541,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle gemte tilstande (*.sav *.s##);; All Files (*)" @@ -1532,7 +1554,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1544,15 +1566,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1580,7 +1602,7 @@ msgstr "" msgid "Always Connected" msgstr "Altid tilsluttet " -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1618,15 +1640,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1644,7 +1666,7 @@ msgstr "Apploader Dato:" msgid "Apply" msgstr "Anvend" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1676,12 +1698,16 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Formatforhold:" @@ -1689,7 +1715,7 @@ msgstr "Formatforhold:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1697,7 +1723,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1714,7 +1740,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Vedhæft Motionplus" @@ -1722,11 +1748,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 "" @@ -1738,12 +1764,12 @@ msgstr "Australien" msgid "Author" msgstr "Forfatter" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Skabere" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1751,11 +1777,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplum af 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1767,7 +1789,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1775,32 +1797,32 @@ msgstr "" msgid "Auto-Hide" msgstr "Auto-skjul" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1808,38 +1830,42 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT forkert. Dolphin vil nu afslutte" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP register" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1855,13 +1881,13 @@ msgstr "Baggrundsinput" msgid "Backward" msgstr "Bagud" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1869,20 +1895,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1902,15 +1928,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Basis" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Basisindstillinger" @@ -1918,15 +1944,15 @@ msgstr "Basisindstillinger" msgid "Bass" msgstr "Bas" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Batchtilstand kan ikke anvendes uden valg af spil." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batteri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta(en gang i måneden)" @@ -1950,31 +1976,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Blokstørrelse" @@ -1983,7 +2011,7 @@ msgstr "Blokstørrelse" msgid "Block Size:" msgstr "Blokstørrelse:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blokering" @@ -2012,32 +2040,143 @@ msgstr "" "Bluetooth gennemgangstilstand er aktiveret, men Dolphin blev bygget uden " "libusb. Gennemgangstilstand kan ikke bruges." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup-fil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Kantløs Fuldskærm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Bund" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2075,11 +2214,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2089,11 +2228,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2125,7 +2264,7 @@ msgstr "Knap" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2141,7 +2280,7 @@ msgstr "Knap" msgid "Buttons" msgstr "Knapper" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2151,11 +2290,11 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP register" @@ -2167,7 +2306,7 @@ msgstr "" msgid "CPU Options" msgstr "Processorindstillinger" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2175,14 +2314,14 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Oversætter (langsommere)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2194,11 +2333,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibrere" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Kalibrering" @@ -2206,19 +2345,19 @@ msgstr "Kalibrering" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2227,64 +2366,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Annuller kalibrering" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "Kan ikke køre FIFO enkelttrin. Anvend 'Næste frame' i stedet for." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2292,19 +2443,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2322,7 +2475,7 @@ msgstr "Center" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2330,7 +2483,7 @@ msgstr "" msgid "Change &Disc" msgstr "Skift &Disk" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Skift &Disk..." @@ -2338,7 +2491,7 @@ msgstr "Skift &Disk..." msgid "Change Disc" msgstr "Skift Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2346,7 +2499,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2372,7 +2525,7 @@ msgstr "Ændrede snydekoder får først effekt efter genstart af spillet." msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2384,15 +2537,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Snydesøgning" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Tjek NAND..." @@ -2400,7 +2553,7 @@ msgstr "Tjek NAND..." msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2418,27 +2571,27 @@ msgstr "Tjeksum" msgid "China" msgstr "Kina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Angiv en fil at åbne" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2465,15 +2618,19 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Ryd" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Ryd cache" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2481,7 +2638,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Klon og &Rediger kode..." @@ -2490,36 +2647,20 @@ msgstr "Klon og &Rediger kode..." msgid "Close" msgstr "Luk" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "&Konfiguration" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Kode" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2546,7 +2687,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2573,7 +2718,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2581,9 +2726,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "Kompilerer shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2596,10 +2741,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2672,7 +2823,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Konfig" @@ -2705,13 +2856,13 @@ msgstr "Konfigurer output" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekræft" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2719,7 +2870,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Bekræft ved Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2730,15 +2881,15 @@ msgstr "Bekræftelse" msgid "Connect" msgstr "Tilslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Forbind Balanceboard" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Forbind USB Tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Tilslut Wii Remote %1" @@ -2758,7 +2909,7 @@ msgstr "Tilslut Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Tilslut Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Tilslut Wii Remotes" @@ -2799,7 +2950,7 @@ msgstr "" msgid "Control Stick" msgstr "Kontrol-Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Kontrollerprofil" @@ -2823,7 +2974,7 @@ msgstr "" msgid "Controller Settings" msgstr "Kontrollerindstillinger" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Kontrollere" @@ -2888,8 +3039,8 @@ msgstr "" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2897,9 +3048,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2907,9 +3058,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2929,8 +3080,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2966,15 +3117,15 @@ msgstr "" msgid "Copy" msgstr "Kopiér" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopiér &funktion" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Kopier adresse" @@ -2982,19 +3133,19 @@ msgstr "Kopier adresse" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Kopiér Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -3012,6 +3163,11 @@ msgstr "Kopiér til B" msgid "Core" msgstr "Kerne" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3021,7 +3177,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3096,7 +3252,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3133,13 +3289,13 @@ msgstr "" msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3148,15 +3304,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3165,17 +3317,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Skaber:" @@ -3183,11 +3326,11 @@ msgstr "Skaber:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Beskær" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3199,26 +3342,26 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3226,27 +3369,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3258,13 +3405,13 @@ msgstr "Tilpassede RTC indstillinger" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3289,7 +3436,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 "" @@ -3297,15 +3444,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 "" @@ -3327,7 +3474,7 @@ msgstr "Dansemåtte" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3343,7 +3490,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Datatype" @@ -3376,8 +3523,8 @@ msgstr "Dødszone" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Debugging" @@ -3386,7 +3533,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 "" @@ -3433,7 +3580,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" @@ -3445,11 +3592,11 @@ msgstr "Standardskrifttype" msgid "Default ISO:" msgstr "Standard ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3457,7 +3604,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3497,26 +3644,53 @@ msgstr "" msgid "Depth:" msgstr "Dybde:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Beskrivelse:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3524,7 +3698,7 @@ msgstr "" msgid "Detect" msgstr "Opfang" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3532,7 +3706,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3541,7 +3715,7 @@ msgid "Device" msgstr "Enhed" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3550,11 +3724,11 @@ msgid "Device Settings" msgstr "Enhedsindstillinger" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3562,11 +3736,7 @@ msgstr "Enhed:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Nedtoner lysstyrken efter 5 minutters inaktivitet." @@ -3578,12 +3748,12 @@ msgstr "Direkte forbindelse" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3595,7 +3765,7 @@ msgstr "Deaktivér Afgrænsningsramme" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Deaktiver EFB VRAM kopier" @@ -3603,11 +3773,11 @@ msgstr "Deaktiver EFB VRAM kopier" msgid "Disable Emulation Speed Limit" msgstr "Deaktiver begrænsning af emulationshastighed" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3615,11 +3785,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deaktivér tåge" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Deaktiver JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3634,7 +3804,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3980,15 +4146,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Hollandsk" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "F&orlad" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4014,7 +4180,7 @@ msgstr "Tidlige hukommelsesopdateringer" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4027,7 +4193,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4043,15 +4209,15 @@ msgstr "Effekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4061,7 +4227,7 @@ msgstr "Skub ud disken" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4069,11 +4235,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Indlejret framebuffer (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emulatortråd kører i forvejen" @@ -4081,11 +4247,11 @@ msgstr "Emulatortråd kører i forvejen" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4099,7 +4265,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4119,28 +4285,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Emulationshastighed" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Aktivér API Valideringslag" @@ -4152,11 +4306,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Aktivér lydtrækning" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Aktivér snydekoder" @@ -4176,7 +4330,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Aktivér dualcore" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Aktivér dualcore (højere hastighed)" @@ -4196,7 +4350,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Aktivér PFRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4222,6 +4376,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4235,7 +4393,7 @@ msgstr "Aktivér MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Aktivér Progressiv Skanning" @@ -4248,11 +4406,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Aktivér vibration" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Aktivér Pauseskærm" @@ -4264,15 +4422,15 @@ msgstr "Aktivér højttalerdata" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Aktivér rapportering af brugsstatistik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Aktivér Wireframe" @@ -4342,7 +4500,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4377,7 +4535,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4385,7 +4543,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4402,7 +4560,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." @@ -4431,7 +4589,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4439,7 +4597,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4447,7 +4605,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4472,7 +4630,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engelsk" @@ -4481,7 +4639,7 @@ msgstr "Engelsk" msgid "Enhancements" msgstr "Forbedringer" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4503,11 +4661,17 @@ msgstr "" msgid "Enter password" msgstr "Indtast kodeord" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4516,8 +4680,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4528,45 +4692,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4576,16 +4746,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Fejl" @@ -4602,9 +4772,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4618,7 +4788,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4684,13 +4854,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4709,40 +4879,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4750,7 +4892,7 @@ msgstr "" msgid "Exit" msgstr "Afslut" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4758,7 +4900,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4770,15 +4912,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4786,11 +4928,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Eksperimentel" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-saves" @@ -4805,7 +4947,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksporter optagelse" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Eksporter optagelse..." @@ -4833,14 +4975,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Udvidelse" @@ -4861,7 +5003,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Ekstern framebuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4894,12 +5036,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO-afspiller" @@ -4917,7 +5059,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4925,12 +5067,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4958,19 +5100,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4990,15 +5133,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Kunne ikke downloade koder." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -5011,7 +5154,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5034,33 +5177,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5071,7 +5210,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5080,18 +5219,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5103,19 +5242,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Fejl ved indlæsning af programmet til hukommelsen" @@ -5125,13 +5266,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5139,6 +5288,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5165,28 +5318,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5206,7 +5363,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Fejl under oversættelse af Redump.org-data" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5228,31 +5385,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5286,31 +5446,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5361,7 +5521,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5369,11 +5529,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5386,7 +5546,7 @@ msgstr "Hurtig" msgid "Fast Depth Calculation" msgstr "Hurtig udregning af dybte" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5397,11 +5557,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5409,9 +5569,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5423,20 +5583,20 @@ msgstr "" msgid "File Info" msgstr "Filinfo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Filnavn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Filstørrelse" @@ -5444,7 +5604,7 @@ msgstr "Filstørrelse" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Filen indholdte ingen koder." @@ -5478,15 +5638,15 @@ msgstr "Filsystem" msgid "Filters" msgstr "Filtre" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Find &næste" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Find &forrige" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5498,7 +5658,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5514,31 +5674,32 @@ msgstr "Ret tjeksumme" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flag" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5548,13 +5709,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5562,7 +5723,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" @@ -5594,11 +5755,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5635,17 +5796,17 @@ msgstr "Fremad" msgid "Forward port (UPnP)" msgstr "Forwardport (UPnp)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Billede %1" @@ -5666,7 +5827,7 @@ msgstr "Billedfremskydning Forøg Hastighed" msgid "Frame Advance Reset Speed" msgstr "Billedfremskydning Nulstil Hastighed" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5674,7 +5835,7 @@ msgstr "" msgid "Frame Range" msgstr "Billedvidde" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5698,7 +5859,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5729,7 +5890,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Fransk" @@ -5753,7 +5914,7 @@ msgstr "Fra" msgid "From:" msgstr "Fra:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Fuld skærm" @@ -5785,7 +5946,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5901,26 +6062,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Spil" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-kassetter (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5948,8 +6109,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Spil-id" @@ -6009,11 +6170,11 @@ msgstr "GameCube-adapter til Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube kontroller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -6021,11 +6182,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube-kontrollere" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube tastatur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6038,11 +6199,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube mikrofonstik %1" @@ -6070,7 +6231,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koder" @@ -6080,35 +6241,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Generelt" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Generer en ny identitet til statistik" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tysk" @@ -6120,18 +6281,18 @@ msgstr "Tyskland" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6144,8 +6305,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6184,7 +6345,7 @@ msgstr "Grøn venstre" msgid "Green Right" msgstr "Grøn højre" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6193,7 +6354,7 @@ msgstr "" msgid "Guitar" msgstr "Guitar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6221,36 +6382,35 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6263,7 +6423,11 @@ msgstr "Heksadecimal" msgid "Hide" msgstr "Skjul" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6279,12 +6443,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6293,14 +6457,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6317,7 +6475,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6341,16 +6499,16 @@ msgstr "Vært inputautoritet aktiveret" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Genvejstastindstillinger" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Genvejstaster" @@ -6359,7 +6517,7 @@ msgstr "Genvejstaster" msgid "Hotkeys Require Window Focus" msgstr "Genvejstaster forudsætter vinduefokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6373,16 +6531,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6417,7 +6575,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR-sensitivitet:" @@ -6450,11 +6608,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6508,11 +6666,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorere" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorer skift af formater" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6536,7 +6698,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6545,7 +6707,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6560,15 +6722,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importer Wii-save..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importerer NAND-backup" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6579,15 +6741,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6596,27 +6749,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6661,15 +6814,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6689,8 +6843,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Information" @@ -6704,10 +6858,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Input" @@ -6721,20 +6875,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Indsæt SD-kort" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6748,7 +6908,7 @@ msgstr "" msgid "Install Update" msgstr "Installer opdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Installere WAD..." @@ -6756,11 +6916,13 @@ msgstr "Installere WAD..." msgid "Install to the NAND" msgstr "Installer til NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruktion" @@ -6769,7 +6931,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instruktion:" @@ -6778,7 +6940,7 @@ msgstr "Instruktion:" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6795,19 +6957,19 @@ msgstr "" msgid "Interface" msgstr "Grænseflade" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6820,19 +6982,19 @@ msgstr "Intern LZO-fjel - komprimering mislykkedes" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6847,7 +7009,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Intern opløsning:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6855,11 +7017,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (langsomst)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6871,7 +7033,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ugyldig mix-kode" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6880,11 +7042,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6913,7 +7075,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6925,19 +7087,19 @@ msgstr "Forkert kodeord indtastet." msgid "Invalid recording file" msgstr "Forkert optagelsesfil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Forkerte søgeparametre (intet objekt valgt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Forkert søgetekst (kunne ikke konvertere til tal)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Forkert søgetekst (kun lige længder er understøttet)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6947,7 +7109,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiensk" @@ -6956,63 +7118,63 @@ msgid "Italy" msgstr "Italien" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT blok sammenkædning slået fra" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT blokke" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -7024,27 +7186,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japansk" @@ -7055,13 +7221,13 @@ msgstr "Japansk" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7075,7 +7241,7 @@ msgstr "Hold vinduet øverst" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7096,7 +7262,7 @@ msgstr "" msgid "Keys" msgstr "Taster" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7104,12 +7270,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Smid spiller ud" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreansk" @@ -7120,7 +7286,7 @@ msgstr "Koreansk" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7130,7 +7296,7 @@ msgstr "" msgid "L-Analog" msgstr "L-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7138,35 +7304,37 @@ msgstr "" msgid "Label" msgstr "Mærkat" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7236,13 +7404,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licens" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7256,7 +7424,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7264,11 +7432,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7279,29 +7447,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Indlæs" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Indlæs tilpassede teksturer" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7322,7 +7497,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7411,19 +7586,19 @@ msgstr "Indlæs tilstand plads 8" msgid "Load State Slot 9" msgstr "Indlæs tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Indlæs tilstand fra valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Indlæs tilstand fra plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7435,16 +7610,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Indlæs fra plads %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7452,18 +7627,18 @@ msgstr "" msgid "Load..." msgstr "Indlæs..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7483,7 +7658,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7495,7 +7670,7 @@ msgstr "Konfiguration af log" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7503,7 +7678,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Log renderingstider til fil" @@ -7519,7 +7694,7 @@ msgstr "Logger-outputs" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7534,16 +7709,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7551,7 +7726,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7561,7 +7736,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7569,37 +7744,37 @@ msgstr "" msgid "Main Stick" msgstr "Primært stik" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Udgiver" @@ -7616,12 +7791,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7633,7 +7808,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7650,16 +7825,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Medium" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Hukommelse" @@ -7671,7 +7846,7 @@ msgstr "Hukommelsesbreakpoint" msgid "Memory Card" msgstr "Hukommelseskort" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7683,7 +7858,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Hukommelsesbreakpointindstillinger" @@ -7699,7 +7874,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7707,29 +7882,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Diverse indstillinger" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7751,36 +7930,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7792,16 +7976,16 @@ msgstr "Monoskopiske skygger" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7838,6 +8022,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7847,10 +8035,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND tjek" @@ -7859,8 +8047,8 @@ msgstr "NAND tjek" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -7869,7 +8057,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7886,25 +8074,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Navn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7913,7 +8101,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7970,7 +8158,7 @@ msgstr "" msgid "Network" msgstr "Netværk " -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -8000,7 +8188,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -8008,7 +8196,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Ny identitet genereret." @@ -8016,7 +8204,7 @@ msgstr "Ny identitet genereret." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -8025,7 +8213,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8039,7 +8227,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Kaldenavn:" @@ -8053,7 +8241,7 @@ msgstr "Nej" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8067,7 +8255,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Ingen træf" @@ -8075,16 +8263,16 @@ msgstr "Ingen træf" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Ingen beskrivelse tilgængelig" @@ -8100,15 +8288,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8117,7 +8305,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8129,10 +8317,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8144,11 +8328,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8157,7 +8341,7 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "'undo.dtm' ikke fundet. Afbryder 'Fortryd' starttilstand for at undgå film " @@ -8166,11 +8350,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Ingen" @@ -8230,7 +8414,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8265,10 +8449,58 @@ msgstr "" msgid "OK" msgstr "Ok" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Objektområde" @@ -8282,7 +8514,7 @@ msgstr "" msgid "Off" msgstr "Fra" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8294,14 +8526,29 @@ msgstr "På" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online&dokumentation" @@ -8309,13 +8556,13 @@ msgstr "Online&dokumentation" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8323,7 +8570,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Åbn" @@ -8332,11 +8579,11 @@ msgstr "Åbn" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8357,7 +8604,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8390,11 +8637,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Indstillinger" @@ -8407,13 +8654,36 @@ msgstr "Orange" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Andre" @@ -8426,7 +8696,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Anden tilstand genvejstaster" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8446,16 +8716,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Spi&l inputoptagelse..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8464,15 +8734,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8480,11 +8750,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC-størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8497,11 +8767,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8552,11 +8822,15 @@ msgstr "" msgid "Paths" msgstr "Stier" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pause ved slutning på film" @@ -8595,7 +8869,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Per-pixel belysning" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8603,33 +8877,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8645,12 +8919,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Afspil" @@ -8662,7 +8936,7 @@ msgstr "Spil/optagelse" msgid "Play Recording" msgstr "Afspil optagelse" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8674,27 +8948,27 @@ msgstr "Playback-indstillinger" msgid "Player" msgstr "Spiller" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8703,7 +8977,8 @@ msgstr "" msgid "Players" msgstr "Spillere" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8715,23 +8990,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8740,7 +9019,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8761,11 +9040,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Indlæs først tilpassede teksturer" @@ -8773,11 +9052,11 @@ msgstr "Indlæs først tilpassede teksturer" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8800,7 +9079,7 @@ msgstr "Tryk på Sync-knap" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8815,7 +9094,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8826,7 +9105,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8838,7 +9117,7 @@ msgstr "Privat" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problem" @@ -8872,8 +9151,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8881,11 +9160,11 @@ msgstr "" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8905,14 +9184,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Spørgsmål" @@ -8933,19 +9212,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8958,11 +9237,11 @@ msgstr "" msgid "Range" msgstr "Rækkevidde" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8974,7 +9253,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8986,14 +9269,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Læs og skriv" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -9014,10 +9297,15 @@ msgstr "Ægte Balance Board" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9031,7 +9319,7 @@ msgstr "Optag" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9066,7 +9354,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9074,14 +9362,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Genindlæs" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9089,11 +9377,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9102,8 +9390,8 @@ msgstr "" msgid "Refreshing..." msgstr "Genindlæser..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9132,7 +9420,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Fjern" @@ -9149,7 +9437,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9160,8 +9448,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9169,11 +9457,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Render til hovedvindue" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9189,23 +9477,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Nulstil" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9233,6 +9520,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9249,7 +9540,7 @@ msgstr "Genstart nødvendig" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9266,7 +9557,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9325,7 +9616,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9343,26 +9634,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9378,19 +9695,19 @@ msgstr "Rusland" msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kort sti:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9398,7 +9715,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9411,7 +9728,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9419,11 +9736,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9433,11 +9750,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Ge&m tilstand" @@ -9450,7 +9767,6 @@ msgstr "Sikker" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9460,9 +9776,17 @@ msgstr "Gem" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9471,24 +9795,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9500,13 +9824,13 @@ msgstr "Gem ældste tilstand" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Gem tilstand" @@ -9550,23 +9874,23 @@ msgstr "Gem tilstand plads 8" msgid "Save State Slot 9" msgstr "Gem tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Gem tilstand til ældste plads" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Gem tilstand til valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Gem tilstand til plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9574,7 +9898,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9586,26 +9910,26 @@ msgstr "" msgid "Save as..." msgstr "Gem som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9613,7 +9937,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Gem til plads %1 - %2" @@ -9625,7 +9949,7 @@ msgstr "Gem..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9637,26 +9961,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Skaleret EFB-kopier" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Skærmdump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Søg" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Søgeadresse" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9664,17 +9988,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Søg i undermapper" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9682,11 +10006,11 @@ msgstr "" msgid "Search games..." msgstr "Søg spil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Søg instruktion" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9706,7 +10030,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9714,28 +10038,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9755,15 +10087,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Vælg plads %1 - %2" @@ -9771,7 +10103,7 @@ msgstr "Vælg plads %1 - %2" msgid "Select State" msgstr "Vælg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Vælg tilstand plads" @@ -9830,15 +10162,15 @@ msgstr "Vælg en mappe" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Vælg en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9846,11 +10178,11 @@ msgstr "" msgid "Select a Game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9858,19 +10190,19 @@ msgstr "" msgid "Select a game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9878,12 +10210,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Vælg savefilen" @@ -9899,7 +10231,7 @@ msgstr "" msgid "Selected Font" msgstr "Valgt skrifttype" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Valgte kontrollerprofil eksisterer ikke" @@ -9911,26 +10243,45 @@ msgstr "Valgte kontrollerprofil eksisterer ikke" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9942,18 +10293,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9967,7 +10329,7 @@ msgstr "" msgid "Send" msgstr "Send" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensorbarens position:" @@ -9991,16 +10353,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "Serveren nægtede forsøget på traversal" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Indstil PC" @@ -10016,23 +10374,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10042,17 +10400,17 @@ msgstr "" "(576i) for PAL-spil.\n" "Virker måske ikke med alle spil." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Indstiller Wii-systemets sprog." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10064,20 +10422,20 @@ msgstr "" msgid "Settings" msgstr "Indstillinger" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Kan ikke oprette settings.txt-filen" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Ryst" @@ -10094,16 +10452,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Vis &log" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Vis &værktøjslinje" @@ -10111,53 +10469,53 @@ msgstr "Vis &værktøjslinje" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Vis Australien" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Vis FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Vis billedtæller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Vis Frankrig" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Vis Tyskland" @@ -10169,23 +10527,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Vis input" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Vis Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Vis lag-tæller" @@ -10193,19 +10551,19 @@ msgstr "Vis lag-tæller" msgid "Show Language:" msgstr "Vis sprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Vis log&konfiguration" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Vis NetPlay meddelelser" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Vis NetPlay ping" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Vis Holland" @@ -10213,32 +10571,36 @@ msgstr "Vis Holland" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Vis PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Vis platforme" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Vis Rusland" @@ -10246,72 +10608,72 @@ msgstr "Vis Rusland" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Vis Spanien" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Vis systemur" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Vis ukendte" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Vis verden" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10319,65 +10681,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10387,34 +10755,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Side om side" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Sidelæns venteposition" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Sidelæns skift" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10423,7 +10791,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Simpel kinesisk" @@ -10440,17 +10808,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Spring over" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10485,24 +10853,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10510,10 +10878,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10523,7 +10887,7 @@ msgstr "" msgid "Slot A" msgstr "Plads A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Plads A:" @@ -10531,7 +10895,7 @@ msgstr "Plads A:" msgid "Slot B" msgstr "Plads B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Plads B:" @@ -10539,7 +10903,7 @@ msgstr "Plads B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10563,12 +10927,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10582,27 +10946,27 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spansk" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Højttalerpanorering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Lydstyrke for højtaler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10623,15 +10987,15 @@ msgstr "Fart" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10644,25 +11008,28 @@ msgstr "Standardkontroller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Start &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Start med at &optage input" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Start optagelse" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10678,10 +11045,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10691,7 +11058,7 @@ msgstr "Rat" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Hop" @@ -10703,13 +11070,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Hop over" @@ -10725,7 +11092,7 @@ msgstr "Hop ud timeout!" msgid "Step over in progress..." msgstr "Hop over udføres..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Hop succes!" @@ -10734,7 +11101,7 @@ msgstr "Hop succes!" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10764,18 +11131,14 @@ msgstr "Stik" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10808,7 +11171,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Stræk til vindue" @@ -10843,8 +11206,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Succes" @@ -10871,7 +11234,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10883,12 +11246,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10899,11 +11262,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Support" @@ -10911,16 +11274,16 @@ msgstr "Support" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10930,12 +11293,12 @@ msgstr "Byt om på øjne" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10946,7 +11309,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Sving" @@ -10960,34 +11323,21 @@ msgid "Switch to B" msgstr "Byt til B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symboler" @@ -11013,7 +11363,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11032,24 +11382,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemsprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11059,7 +11409,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11067,15 +11417,15 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Tag skærmbillede" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11083,7 +11433,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11091,6 +11441,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11100,7 +11456,7 @@ msgstr "Tekstur-cache" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11112,7 +11468,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Teksturformatteringslag" @@ -11135,7 +11491,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11149,13 +11505,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11166,11 +11522,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11203,6 +11559,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11220,7 +11583,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 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" @@ -11240,17 +11603,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Indtastet PID er ugyldig" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Indtastet VID er ugyldig" @@ -11258,7 +11621,7 @@ msgstr "Indtastet VID er ugyldig" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11272,7 +11635,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11288,7 +11651,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11299,7 +11662,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11356,9 +11719,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11372,11 +11735,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11390,8 +11753,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11418,12 +11781,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Den resulterende dekrypterede AR-kode indeholder ikke nogen linjer." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11457,7 +11820,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11472,11 +11835,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11484,15 +11847,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11515,7 +11878,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11541,14 +11904,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Der er intet af fortryde!" @@ -11584,19 +11952,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11713,6 +12081,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11729,11 +12101,11 @@ msgstr "" "\n" "Hvis du er i tvivl,så undlad at slå det til." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11746,7 +12118,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11754,7 +12126,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11773,6 +12145,13 @@ 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 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11787,11 +12166,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11799,12 +12178,12 @@ msgstr "" msgid "Threshold" msgstr "Tærskel" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Tilt" @@ -11818,10 +12197,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titel" @@ -11835,7 +12214,7 @@ msgstr "Til" msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Aktiver &fuldskærm" @@ -11860,7 +12239,7 @@ msgid "Toggle Aspect Ratio" msgstr "Skift forholdstal" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11912,15 +12291,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Top" @@ -11928,9 +12311,8 @@ msgstr "Top" msgid "Top-and-Bottom" msgstr "Top og bund" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11967,28 +12349,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Traditionel kinesisk" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12025,26 +12407,26 @@ msgid "Triggers" msgstr "Triggers" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Type" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -12056,7 +12438,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12068,20 +12450,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB-Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12089,7 +12471,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12098,7 +12480,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12110,11 +12492,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12143,7 +12525,7 @@ msgstr "" "\n" "Vil du ignorere denne linje og fortsætte oversættelsen?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12166,15 +12548,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Fortryd indlæsning af tilstand" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Fortræd lagring af tilstand" @@ -12192,11 +12574,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12207,12 +12589,13 @@ msgstr "" msgid "Unknown" msgstr "Ukendt" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12236,11 +12619,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12248,7 +12631,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12256,7 +12639,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12276,16 +12659,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Ubegrænset" @@ -12318,22 +12703,22 @@ msgid "Unpacking" msgstr "Udpakker" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12395,23 +12780,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Oprejst venteposition" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Oprejst skift" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Indstillinger for brugsstatistik" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12423,15 +12808,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Brug PAL60-tilstand (EURGB60)" @@ -12439,7 +12824,7 @@ msgstr "Brug PAL60-tilstand (EURGB60)" msgid "Use Panic Handlers" msgstr "Brug panikhåndtering" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12457,43 +12842,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "Brug en enkelt dybte-buffer til begge øjne. Nødvendig til nogle spil." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Brugerindstillinger" @@ -12525,21 +12885,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12547,31 +12907,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Værktøj" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-sync" @@ -12579,11 +12939,11 @@ msgstr "V-sync" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Værdi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12591,17 +12951,17 @@ msgstr "" msgid "Value:" msgstr "Værdi:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12617,16 +12977,16 @@ msgstr "Informationsmængde" msgid "Verify" msgstr "Verificer" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verificer integritet" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verificerer" @@ -12640,7 +13000,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12654,12 +13014,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Vis &kode" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Se &hukommelse" @@ -12667,14 +13027,14 @@ msgstr "Se &hukommelse" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Lydstyrke" @@ -12694,31 +13054,31 @@ msgstr "Skru lyde op" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD-filer (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12757,12 +13117,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12773,7 +13133,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12795,7 +13155,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Advarsel" @@ -12869,7 +13229,7 @@ msgstr "Se" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12886,7 +13246,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12894,7 +13254,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12902,7 +13262,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12926,7 +13286,7 @@ msgstr "Wii-Menu" msgid "Wii NAND Root:" msgstr "Wii NAND-rod" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -12934,7 +13294,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12952,7 +13312,7 @@ msgstr "Wii Remote-knapper" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote-indstillinger" @@ -12972,7 +13332,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii og Wii Remote" @@ -12980,11 +13340,11 @@ msgstr "Wii og Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12996,11 +13356,23 @@ 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 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Ombryd ord" @@ -13014,10 +13386,14 @@ msgstr "Verden" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -13059,6 +13435,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13067,11 +13451,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF-register" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13106,14 +13490,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13211,7 +13595,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13229,15 +13613,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Nul 3 kode ikke understøttet" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13245,11 +13633,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13268,21 +13656,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13290,31 +13678,35 @@ msgstr "" msgid "fake-completion" msgstr "falsk-udførsel" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13324,7 +13716,7 @@ msgstr "" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13334,13 +13726,13 @@ msgstr "" msgid "none" msgstr "ingen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13357,16 +13749,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13381,11 +13777,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13420,7 +13816,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13429,8 +13825,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/de.po b/Languages/po/de.po index 847fa62c4049..8290b4d9f3bd 100644 --- a/Languages/po/de.po +++ b/Languages/po/de.po @@ -8,7 +8,7 @@ # Danny Krug , 2013 # DefenderX , 2013,2015 # DefenderX , 2013 -# Ettore Atalan , 2015-2020 +# Ettore Atalan , 2015-2020,2024 # flacs ​ , 2023 # Gabriel , 2013 # Admiral H. Curtiss , 2015 @@ -34,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: flacs ​ , 2023\n" +"Last-Translator: Ettore Atalan , 2015-2020,2024\n" "Language-Team: German (http://app.transifex.com/delroth/dolphin-emu/language/" "de/)\n" "Language: de\n" @@ -84,7 +84,7 @@ msgstr "\"{0}\" ist keine gültige GCM/ISO-Datei, oder kein GC/Wii-Image." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:295 msgid "$ User Variable" -msgstr "" +msgstr "$ Benutzervariable" #. i18n: The symbol for percent. #. i18n: The percent symbol. @@ -93,8 +93,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -115,19 +115,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" -msgstr "" +msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" -msgstr "" +msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -148,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Bestand)" @@ -166,7 +167,7 @@ msgstr "%1 (langsam)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 msgid "" @@ -184,10 +185,15 @@ msgstr "%1 Grafikeinstellungen" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 msgid "%1 MB (MEM1)" -msgstr "" +msgstr "%1 MB (MEM1)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 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 "" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 @@ -216,19 +222,19 @@ msgstr "%1 ist beigetreten" msgid "%1 has left" msgstr "%1 ist gegangen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 msgid "%1 is not a valid ROM" -msgstr "" +msgstr "%1 ist kein gültiges ROM" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 msgid "%1 is now golfing" @@ -236,21 +242,21 @@ msgstr "%1 golft jetzt" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 msgid "%1 is playing %2" -msgstr "" +msgstr "%1 spielt %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 msgid "%1 memory ranges" -msgstr "" +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" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 msgid "%1 points" -msgstr "" +msgstr "%1 Punkte" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:265 msgid "%1 session found" @@ -260,40 +266,40 @@ 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 "" +msgstr "%1%" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 msgid "%1% (%2 MHz)" -msgstr "" +msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" -msgstr "" +msgstr "Wert von %1 wurde geändert" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" -msgstr "" +msgstr "Wert von %1 wird verwendet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" -msgstr "" +msgstr "%1, %2, %3, %4" #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" -msgstr "" +msgstr "%1: %2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -310,7 +316,7 @@ msgstr "%1[%2]: %3/%4 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 #, c-format msgid "%1x MSAA" -msgstr "" +msgstr "%1x MSAA" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:98 msgid "%1x Native (%2x%3)" @@ -318,53 +324,53 @@ msgstr "%1x Nativ (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "" +msgstr "%1x Nativ (%2x%3) für %4" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 #, c-format msgid "%1x SSAA" -msgstr "" +msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." -msgstr "" +msgstr "%n Adresse(n) verbleibt/verbleiben." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." -msgstr "" +msgstr "%n Adresse(n) wurde(n) entfernt." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:291 msgid "& And" msgstr "& Und" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Über" @@ -372,12 +378,12 @@ msgstr "&Über" msgid "&Add Memory Breakpoint" msgstr "&Speicherhaltepunkt hinzufügen" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "Neuen Code &hinzufügen..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "Funktion &hinzufügen" @@ -385,27 +391,27 @@ msgstr "Funktion &hinzufügen" msgid "&Add..." msgstr "&Hinzufügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" -msgstr "" +msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Audioeinstellungen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Automatisches Update" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Randloses Fenster" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Haltepunkte" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -413,15 +419,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Abbrechen" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Cheats-Manager" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Auf Updates prüfen..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "Symbole lös&chen" @@ -429,19 +435,24 @@ msgstr "Symbole lös&chen" msgid "&Clone..." msgstr "&Klonen..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Code" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Controller-Einstellungen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "Adresse &kopieren" @@ -449,7 +460,7 @@ msgstr "Adresse &kopieren" msgid "&Create..." msgstr "&Erstellen..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Löschen" @@ -466,9 +477,9 @@ msgstr "&Überwachung löschen" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "Code b&earbeiten..." @@ -476,23 +487,23 @@ msgstr "Code b&earbeiten..." msgid "&Edit..." msgstr "B&earbeiten..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Disc auswerfen" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulation" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exportieren" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Speicherstand exportieren..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Spielstand exportieren..." @@ -500,55 +511,53 @@ msgstr "&Spielstand exportieren..." msgid "&Export as .gci..." msgstr "&Als GCI exportieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Datei" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "Schri&ftart..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Einzelbildwiedergabe" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&Freies Umsehen-Einstellungen" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "Symbole erzeu&gen aus" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub-Repositorium" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafikeinstellungen" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Hilfe" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Tastenkürzel-Einstellungen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importieren" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Speicherstand importieren..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Spielstand importieren..." @@ -556,19 +565,19 @@ msgstr "&Spielstand importieren..." msgid "&Import..." msgstr "&Importieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "blr &einfügen" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -576,15 +585,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Sprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "Spielstand &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "Symbolkarte &laden" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -594,23 +607,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "Widgets an Ort und Stelle &sperren" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Arbeitsspeicher" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "Fil&m" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Netzwerk" @@ -619,23 +632,23 @@ msgid "&No" msgstr "&Nein" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "Ö&ffnen..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Optionen" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&HLE-Funktionen patchen" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "Pau&se" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Start" @@ -643,15 +656,15 @@ msgstr "&Start" msgid "&Properties" msgstr "&Eigenschaften" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "Nu&r-Lese-Modus" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Register" @@ -659,41 +672,45 @@ msgstr "&Register" msgid "&Remove" msgstr "Entfe&rnen" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "Code entfe&rnen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "Symbol &umbenennen" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Ressourcenpaketverwaltung" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "Symbolkarte &speichern" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Geschwindigkeitsbegrenzung:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "Sto&pp" @@ -701,17 +718,21 @@ msgstr "Sto&pp" msgid "&Theme:" msgstr "&Design:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "E&xtras" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" -msgstr "" +msgstr "ROM &entladen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. @@ -719,17 +740,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Überwachungsfenster" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Webseite" @@ -741,11 +762,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "Konnte '%1' nicht finden, es wurden keine Symbolnamen generiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" "'%1' konnte nicht gefunden werden, es wird stattdessen nach gemeinsamen " @@ -753,17 +774,17 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 msgid "(Dark)" -msgstr "" +msgstr "(Dunkel)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 msgid "(Light)" -msgstr "" +msgstr "(Hell)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 msgid "(System)" -msgstr "" +msgstr "(System)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(Host)" @@ -771,7 +792,7 @@ msgstr "(Host)" msgid "(off)" msgstr "(aus)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -791,15 +812,15 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Subtrahieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" -msgstr "" +msgstr "--Unbekannt--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -810,38 +831,38 @@ msgstr "..." msgid "/ Divide" msgstr "/ Dividieren" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" -msgstr "" +msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" -msgstr "" +msgstr "1 GiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1080p" -msgstr "" +msgstr "1080p" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31 msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 Blöcke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" -msgstr "" +msgstr "128 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1440p" -msgstr "" +msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" -msgstr "" +msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: 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)" @@ -851,35 +872,35 @@ msgstr "16 Mbit (251 Blöcke)" msgid "16-bit" msgstr "16 Bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117 msgid "16x Anisotropic" -msgstr "" +msgstr "16x Anisotropisch" #: Source/Core/Core/HotkeyManager.cpp:193 msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" -msgstr "" +msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" -msgstr "" +msgstr "256 MiB" #: Source/Core/Core/HotkeyManager.cpp:194 msgid "2x" @@ -887,11 +908,11 @@ msgstr "2x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114 msgid "2x Anisotropic" -msgstr "" +msgstr "2x Anisotropisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" -msgstr "" +msgstr "32 GiB (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:29 msgid "32 Mbit (507 blocks)" @@ -901,25 +922,25 @@ msgstr "32 Mbit (507 Blöcke)" msgid "32-bit" msgstr "32 Bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -931,27 +952,27 @@ msgstr "3D-Tiefe" #: Source/Core/Core/HotkeyManager.cpp:195 msgid "3x" -msgstr "" +msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" -msgstr "" +msgstr "4 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: 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 "4 Mbit (59 Blöcke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "4K" -msgstr "" +msgstr "4K" #: Source/Core/Core/HotkeyManager.cpp:196 msgid "4x" @@ -959,50 +980,50 @@ msgstr "4x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115 msgid "4x Anisotropic" -msgstr "" +msgstr "4x Anisotropisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" -msgstr "" +msgstr "512 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "5K" -msgstr "" +msgstr "5K" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30 msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 Blöcke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" -msgstr "" +msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "720p" -msgstr "" +msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" -msgstr "" +msgstr "8 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: 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)" @@ -1012,29 +1033,29 @@ msgstr "8 Mbit (123 Blöcke)" msgid "8-bit" msgstr "8 Bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:79 msgid "8K" -msgstr "" +msgstr "8K" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116 msgid "8x Anisotropic" -msgstr "" +msgstr "8x Anisotropisch" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290 msgid "< Less-than" msgstr "< Kleiner als" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1046,11 +1067,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1083,12 +1104,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Größer als" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Eine NetPlay-Sitzung läuft bereits!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1104,7 +1125,7 @@ msgstr "" "\n" "Die Installation dieses WAD wird es unwiderruflich ersetzen. Fortsetzen?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Eine Disc wird momentan bereits eingelesen." @@ -1114,13 +1135,13 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Ein Spielstand kann nicht geladen werden, wenn kein zu startendes Spiel " "angegeben wurde." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1140,10 +1161,14 @@ 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 +msgid "A&uto Save" +msgstr "" + #. 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 "" @@ -1175,7 +1200,7 @@ msgstr "" "eventuell nicht richtig.\n" "Benutzung auf eigene Gefahr.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-Code" @@ -1184,8 +1209,8 @@ msgstr "AR-Code" msgid "AR Codes" msgstr "AR Codes" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1199,7 +1224,7 @@ msgid "About Dolphin" msgstr "Über Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Beschleunigungssensor" @@ -1218,9 +1243,9 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" -msgstr "" +msgstr "Errungenschaften" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 msgid "" @@ -1320,19 +1345,19 @@ msgstr "NetPlay Chat aktivieren" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Aktive Thread-Warteschlange" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Aktive Threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Grafikkarte" @@ -1340,7 +1365,7 @@ msgstr "Grafikkarte" msgid "Adapter Detected" msgstr "Adapter erkannt" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Grafikkarte:" @@ -1350,7 +1375,7 @@ msgstr "Grafikkarte:" msgid "Add" msgstr "Hinzufügen" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "&Haltepunkt hinzufügen" @@ -1379,51 +1404,48 @@ msgstr "Speicherhaltepunkt hinzufügen" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Zur Über&wachung hinzufügen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Hinzufügen..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adresse" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Adressraum" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1505,14 +1527,14 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Erweitert" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" -msgstr "" +msgstr "Erweiterte Einstellungen" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 msgid "" @@ -1525,15 +1547,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1543,18 +1565,18 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" -msgstr "" +msgstr "Luft" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" -msgstr "" +msgstr "Alle" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:585 msgid "All Assembly files" @@ -1566,19 +1588,19 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 msgid "All Files" -msgstr "" +msgstr "Alle Dateien" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Alle Dateien (*)" @@ -1587,17 +1609,17 @@ msgstr "Alle Dateien (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" -msgstr "" +msgstr "Alle GC/Wii-Dateien" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 msgid "All Hexadecimal" -msgstr "" +msgstr "Alle Hexadezimalen" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Speicherstände (*.sav *.s##);; Alle Dateien (*)" @@ -1609,9 +1631,9 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" -msgstr "" +msgstr "Alle Dateien (*)" #: Source/Core/Core/NetPlayServer.cpp:1210 msgid "All players' codes synchronized." @@ -1621,15 +1643,15 @@ msgstr "Alle Codes der Spieler synchronisiert." msgid "All players' saves synchronized." msgstr "Alle Spielstände der Spieler synchronisiert." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Nicht übereinstimmende Regionseinstellungen zulassen" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten erlauben" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Schreiben auf SD-Karte zulassen" @@ -1651,7 +1673,7 @@ msgstr "Alternative Eingabequellen" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Always" -msgstr "" +msgstr "Immer" #. i18n: Treat a controller as always being connected regardless of what #. devices the user actually has plugged in @@ -1659,9 +1681,9 @@ msgstr "" msgid "Always Connected" msgstr "Immer verbunden" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" -msgstr "" +msgstr "Immer im &Vordergrund" #: Source/Core/Core/HW/DVD/DVDThread.cpp:115 msgid "An inserted disc was expected but not found." @@ -1698,15 +1720,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Beliebige Region" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Signatur anfügen an" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "An &vorhandene Signaturdatei anfügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Signaturdatei an&wenden..." @@ -1726,7 +1748,7 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Übernehmen" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Signaturdatei anwenden" @@ -1758,12 +1780,16 @@ msgstr "Bist du dir sicher?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Seitenverhältnis" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Seitenverhältnis:" @@ -1771,7 +1797,7 @@ msgstr "Seitenverhältnis:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1779,7 +1805,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1796,7 +1822,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "MotionPlus anfügen" @@ -1804,11 +1830,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" @@ -1820,12 +1846,12 @@ msgstr "Australien" msgid "Author" msgstr "Autor" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autoren" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatisch" @@ -1833,11 +1859,7 @@ msgstr "Automatisch" msgid "Auto (Multiple of 640x528)" msgstr "Automatisch (Vielfaches von 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Einstellungen automatisch updaten" @@ -1853,7 +1875,7 @@ msgstr "" "\n" "Bitte wähle eine spezifische interne Auflösung." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Fenstergröße automatisch anpassen" @@ -1861,15 +1883,15 @@ msgstr "Fenstergröße automatisch anpassen" msgid "Auto-Hide" msgstr "Automatisch verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "RSO-Module automatisch erkennen?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1877,18 +1899,18 @@ msgstr "" "Passt die Fenstergröße automatisch der internen Auflösung an." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Hilfs" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1896,7 +1918,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT inkorrekt. Dolphin wird beendet." -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1906,31 +1928,35 @@ msgstr "" "Nintendo GameCube MAC-Adresse verwendet werden. Generiere eine neue MAC-" "Adresse beginnend mit 00:09:bf oder 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 -msgid "BIOS:" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 +msgid "BIOS:" +msgstr "BIOS:" + +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP-Register" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Rückwärtskette" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1946,13 +1972,13 @@ msgstr "Hintergrundeingabe" msgid "Backward" msgstr "Rückwärts" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Unzulässige Adresse angegeben." @@ -1960,20 +1986,20 @@ msgstr "Unzulässige Adresse angegeben." msgid "Bad dump" msgstr "Schlechter Dump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Unzulässigen Wert angegeben." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1991,17 +2017,17 @@ msgstr "Leiste" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:417 msgid "Base Address" -msgstr "" +msgstr "Basisadresse" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Basispriorität" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Standard" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Grundeinstellungen" @@ -2009,17 +2035,17 @@ msgstr "Grundeinstellungen" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" "Der Batchmodus kann nicht verwendet werden, ween kein zu startendes Spiel " "angegeben wurde." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batterie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (einmal im Monat)" @@ -2041,33 +2067,35 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:132 msgid "Bilinear" -msgstr "" +msgstr "Bilinear" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbit/s):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Blockgröße" @@ -2076,7 +2104,7 @@ msgstr "Blockgröße" msgid "Block Size:" msgstr "Blockgröße:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blockierung" @@ -2105,32 +2133,143 @@ msgstr "" "Bluetooth-Durchleitungsmodus ist aktiviert, aber Dolphin wurde ohne libusb " "gebaut. Durchleitungsmodus kann nicht verwendet werden." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Pausieren nach Boot" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-Sicherungsdatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii Schlüsseldatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Randloses Vollbild" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Unten" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Entwicklungszweig: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Zweige" @@ -2168,11 +2307,11 @@ msgstr "Breitband-Adapter(XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Breitband-Adapter (Tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2182,11 +2321,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2221,7 +2360,7 @@ msgstr "Taste" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2237,7 +2376,7 @@ msgstr "Taste" msgid "Buttons" msgstr "Tasten" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2247,11 +2386,11 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "Signatu&rdatei erstellen..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP-Register " @@ -2263,7 +2402,7 @@ msgstr "CPU-Emulations-Engine:" msgid "CPU Options" msgstr "CPU-Optionen" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2271,7 +2410,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (langsamer)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2281,7 +2420,7 @@ msgstr "" "benötigt exponentiell mehr RAM, kann aber auch etwaiges Ruckeln beheben." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Berechnen" @@ -2298,11 +2437,11 @@ msgstr "" "gelegentlich Probleme oder Verlangsamung verursachen." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibrieren" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Kalibrierung" @@ -2310,19 +2449,19 @@ msgstr "Kalibrierung" msgid "Calibration Period" msgstr "Kalibrierungszeitraum" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" -msgstr "" +msgstr "Aufrufer" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" -msgstr "" +msgstr "Aufrufe" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Aufrufstapel" @@ -2331,67 +2470,79 @@ msgid "Camera 1" msgstr "Kamera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Sichtfeld der Kamera (beeinflusst die Empfindlichkeit des Zeigens)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Kalibrierung abbrechen" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "FIFO kann nicht SingleStep benutzen. Verwende stattdessen Frame Advance." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Kann dieses WAD nicht booten, da es nicht auf dem NAND installiert werden " "konnte." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Kann die GC IPL nicht finden." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2399,20 +2550,22 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2430,7 +2583,7 @@ msgstr "Mitte" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Zentrieren und Kalibrieren" @@ -2438,7 +2591,7 @@ msgstr "Zentrieren und Kalibrieren" msgid "Change &Disc" msgstr "Disc &wechseln" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Disc &wechseln..." @@ -2446,7 +2599,7 @@ msgstr "Disc &wechseln..." msgid "Change Disc" msgstr "Disc wechseln" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Discs automatisch wechseln" @@ -2454,7 +2607,7 @@ msgstr "Discs automatisch wechseln" msgid "Change the disc to {0}" msgstr "Wechsle die Disc zu {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2491,7 +2644,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2503,15 +2656,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Cheatcode-Editor" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cheatsuche" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Cheat-Verwaltung" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "NAND prüfen..." @@ -2519,7 +2672,7 @@ msgstr "NAND prüfen..." msgid "Check for Game List Changes in the Background" msgstr "Veränderungen der Spieleliste im Hintergrund prüfen" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Auf Updates prüfen" @@ -2539,27 +2692,27 @@ msgstr "Prüfsumme" msgid "China" msgstr "China" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Datei zum Öffnen auswählen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Vorrangige Eingabedatei auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Sekundäre Eingabedatei auswählen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2586,15 +2739,19 @@ msgstr "Klassischer Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Leeren" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Cache leeren" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2602,7 +2759,7 @@ msgstr "" msgid "Clock Override" msgstr "CPU-Taktüberschreibung" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Code b&earbeiten und klonen..." @@ -2611,36 +2768,20 @@ msgstr "Code b&earbeiten und klonen..." msgid "Close" msgstr "Schließen" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ko&nfiguration" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2661,13 +2802,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:180 msgid "Color Correction:" -msgstr "" +msgstr "Farbkorrektur:" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:58 msgid "Color Space" +msgstr "Farbraum" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "&Zwei Signaturdateien kombinieren..." @@ -2694,7 +2839,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Shader vor dem Start kompilieren" @@ -2702,9 +2847,9 @@ msgstr "Shader vor dem Start kompilieren" msgid "Compiling Shaders" msgstr "Kompiliere Shader" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Komprimierung" @@ -2717,10 +2862,16 @@ msgstr "Komprimierungsstufe:" msgid "Compression:" msgstr "Komprimierung:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2731,7 +2882,7 @@ msgstr "Bedingung" #. triggering the breakpoint. #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:178 msgid "Condition:" -msgstr "" +msgstr "Bedingung:" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:150 msgid "Conditional" @@ -2741,7 +2892,7 @@ msgstr "Bedingt" #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 msgid "Conditional help" -msgstr "" +msgstr "Bedingte Hilfe" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:327 msgid "" @@ -2793,7 +2944,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Einstellungen" @@ -2826,13 +2977,13 @@ msgstr "Ausgabe konfigurieren" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bestätigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Ändern des Backends bestätigen" @@ -2840,7 +2991,7 @@ msgstr "Ändern des Backends bestätigen" msgid "Confirm on Stop" msgstr "Beim Beenden bestätigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2851,15 +3002,15 @@ msgstr "Bestätigung" msgid "Connect" msgstr "Verbinden" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Balance Bord anschließen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB-Tastatur verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Wiimote %1 verbinden" @@ -2879,7 +3030,7 @@ msgstr "Wiimote 3 verbinden" msgid "Connect Wii Remote 4" msgstr "Wiimote 4 verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Wiimotes verbinden" @@ -2898,7 +3049,7 @@ msgstr "Verbunden" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 msgid "Connecting" -msgstr "" +msgstr "Wird verbunden" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:196 msgid "Connection Type:" @@ -2921,7 +3072,7 @@ msgstr "NetPlay Golf-Modus steuern" msgid "Control Stick" msgstr "Control Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Controller-Profil" @@ -2945,7 +3096,7 @@ msgstr "Controller-Profil 4" msgid "Controller Settings" msgstr "Controller-Einstellungen" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Controller" @@ -3026,18 +3177,18 @@ msgstr "Konvergenz" msgid "Convergence:" msgstr "Konvergenz:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." -msgstr "" +msgstr "Konvertierung fehlgeschlagen" #: Source/Core/DolphinQt/ConvertDialog.cpp:44 msgid "Convert" msgstr "Konvertieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -3045,9 +3196,9 @@ msgstr "" msgid "Convert File..." msgstr "Datei konvertieren..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -3070,8 +3221,8 @@ msgstr "" "Möchtest du trotzdem fortfahren?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konvertiere..." @@ -3080,6 +3231,8 @@ msgid "" "Converting...\n" "%1" msgstr "" +"Wird konvertiert...\n" +"%1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:34 msgid "" @@ -3107,37 +3260,37 @@ msgstr "" msgid "Copy" msgstr "Kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "&Funktion kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "&Hex kopieren" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Adresse kopieren" #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" -msgstr "" +msgstr "Kopieren fehlgeschlagen" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Hex kopieren" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" -msgstr "" +msgstr "Wert kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Codezei&le kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" -msgstr "" +msgstr "&Zieladresse kopieren" #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" @@ -3153,6 +3306,11 @@ msgstr "Nach B kopieren" msgid "Core" msgstr "Kern" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3162,7 +3320,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Einbußen" @@ -3258,7 +3416,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Konnte Datei {0} nicht erkennen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3303,13 +3461,13 @@ msgstr "Konnte Datei nicht lesen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" -msgstr "" +msgstr "Erstellen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3318,15 +3476,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "Neue Speicherkarte erstellen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3335,17 +3489,8 @@ msgstr "" msgid "Create..." msgstr "Erstellen..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Ersteller:" @@ -3353,11 +3498,11 @@ msgstr "Ersteller:" msgid "Critical" msgstr "Kritisch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Zuschneiden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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,26 +3514,26 @@ msgstr "" msgid "Crossfade" msgstr "Überblendung" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Aktuelle Region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Aktueller Kontext" @@ -3396,27 +3541,31 @@ msgstr "Aktueller Kontext" msgid "Current game" msgstr "Aktuelles Spiel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Aktueller Thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3428,13 +3577,13 @@ msgstr "Benutzerdefinierte Echtzeituhr" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" -msgstr "" +msgstr "Anpassen" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3459,7 +3608,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" @@ -3467,15 +3616,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)" @@ -3501,9 +3650,9 @@ msgstr "Tanzmatte" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" -msgstr "" +msgstr "Dunkel" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 msgid "Data" @@ -3511,13 +3660,13 @@ msgstr "Daten" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:145 msgid "Data Partition (%1)" -msgstr "" +msgstr "Datenpartition (%1)" #: Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp:46 msgid "Data Transfer" msgstr "Datentransfer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Datentyp" @@ -3550,8 +3699,8 @@ msgstr "Tote Zone" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Debug" @@ -3560,7 +3709,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:" @@ -3607,7 +3756,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" @@ -3619,11 +3768,11 @@ msgstr "Standardschriftart" msgid "Default ISO:" msgstr "Standard-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Standard-Thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB-Cache-Invalidierung zurückstellen" @@ -3631,7 +3780,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:384 +#: 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,26 +3826,53 @@ msgstr "Tiefe in Prozent:" msgid "Depth:" msgstr "Tiefe:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschreibung" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Beschreibung:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" +msgstr "Beschreibung: %1" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Gelöst" @@ -3704,7 +3880,7 @@ msgstr "Gelöst" msgid "Detect" msgstr "Erkenne" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3712,7 +3888,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministischer Doppelkern: " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Entwickler (mehrmals am Tag)" @@ -3721,7 +3897,7 @@ msgid "Device" msgstr "Gerät" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Geräte PID (z.b., 0305)" @@ -3730,11 +3906,11 @@ msgid "Device Settings" msgstr "Geräteeinstellungen" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3742,11 +3918,7 @@ msgstr "Gerät:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3758,14 +3930,14 @@ msgstr "Direktverbindung" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" -msgstr "" +msgstr "Deaktivieren" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" @@ -3775,7 +3947,7 @@ msgstr "Bounding Box deaktivieren" msgid "Disable Copy Filter" msgstr "Kopierfilter deaktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM-Kopien deaktivieren" @@ -3783,11 +3955,11 @@ msgstr "EFB VRAM-Kopien deaktivieren" msgid "Disable Emulation Speed Limit" msgstr "Geschwindigkeitsbegrenzung ausschalten" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Fastmem deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3795,17 +3967,17 @@ msgstr "" msgid "Disable Fog" msgstr "Nebel deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "JIT-Zwischenspeicher deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:214 msgid "Disabled" -msgstr "" +msgstr "Deaktiviert" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:278 msgid "" @@ -3818,7 +3990,7 @@ msgstr "" "funktionieren.

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4187,15 +4355,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holländisch" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Beenden" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4228,9 +4396,9 @@ msgstr "Frühe Speicher-Updates" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" -msgstr "" +msgstr "Erde" #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "East Asia" @@ -4239,11 +4407,11 @@ msgstr "Ostasien" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:40 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:60 msgid "Edit Breakpoint" -msgstr "" +msgstr "Haltepunkt bearbeiten" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." -msgstr "" +msgstr "Bearbeiten..." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:200 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:201 @@ -4257,15 +4425,15 @@ msgstr "Effekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effektiv" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Effektive Priorität" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4275,19 +4443,19 @@ msgstr "Disc auswerfen" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" -msgstr "" +msgstr "Element" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:45 msgid "Embedded Frame Buffer (EFB)" msgstr "Eingebetteter Bildspeicher (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Leer" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emu-Thread läuft bereits." @@ -4295,11 +4463,11 @@ msgstr "Emu-Thread läuft bereits." msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4313,9 +4481,9 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" -msgstr "" +msgstr "Emulierte USB-Geräte" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 msgid "Emulated Wii Remote" @@ -4336,28 +4504,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Emulationsgeschwindigkeit" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API-Validierungsschichten aktivieren" @@ -4367,19 +4523,19 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 msgid "Enable Achievements" -msgstr "" +msgstr "Errungenschaften aktivieren" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Audiodehnung aktivieren" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Cheats aktivieren" #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 msgid "Enable Controller Inpu&t" -msgstr "" +msgstr "Controller-&Eingabe aktivieren" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:162 msgid "Enable Custom RTC" @@ -4393,7 +4549,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Dual Core aktivieren" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Dual Core aktivieren (Beschleunigung)" @@ -4413,7 +4569,7 @@ msgstr "" msgid "Enable FPRF" msgstr "FPRF aktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4439,6 +4595,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4452,7 +4612,7 @@ msgstr "MMU aktivieren" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Progressiven Scan aktivieren" @@ -4465,11 +4625,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Rumble aktivieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Bildschirmschoner aktivieren" @@ -4481,15 +4641,15 @@ msgstr "Lautsprecherdaten aktivieren" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten aktivieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Drahtgittermodell aktivieren" @@ -4559,7 +4719,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4594,7 +4754,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4602,7 +4762,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4622,7 +4782,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 " @@ -4652,7 +4812,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4660,7 +4820,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4668,7 +4828,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4695,7 +4855,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Englisch" @@ -4704,7 +4864,7 @@ msgstr "Englisch" msgid "Enhancements" msgstr "Verbesserungen" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4726,11 +4886,17 @@ msgstr "Neue Breitband-Adapter MAC-Adresse eingeben:" msgid "Enter password" msgstr "Passwort eingeben" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Geben Sie die RSO-Moduladresse ein:" @@ -4739,8 +4905,8 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4751,45 +4917,51 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4799,16 +4971,16 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Fehler" @@ -4825,9 +4997,9 @@ msgstr "Fehler beim Öffnen des Adapters: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4841,7 +5013,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Fehler beim Abrufen der Sitzungsliste: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4909,7 +5081,7 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4918,7 +5090,7 @@ msgstr "" "nicht geladen. Das Spiel wird die Schriftarten vielleicht nicht anzeigen, " "oder abstürzen." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4941,40 +5113,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4982,7 +5126,7 @@ msgstr "" msgid "Exit" msgstr "Beenden" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Erwartete + oder schließende runde Klammer." @@ -4990,7 +5134,7 @@ msgstr "Erwartete + oder schließende runde Klammer." msgid "Expected arguments: " msgstr "Erwartete Argumente: " -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Erwartete schließende runde Klammer." @@ -5002,15 +5146,15 @@ msgstr "Erwartetes Komma." msgid "Expected end of expression." msgstr "Erwartetes Ende des Ausdrucks." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Erwarteter Name der Eingabe." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Erwartete öffnende runde Klammer." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Erwarteter Beginn des Ausdrucks." @@ -5018,11 +5162,11 @@ msgstr "Erwarteter Beginn des Ausdrucks." msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Alle Wii-Spielstände exportieren" @@ -5031,13 +5175,13 @@ msgstr "Alle Wii-Spielstände exportieren" #: Source/Core/DolphinQt/GCMemcardManager.cpp:493 #: Source/Core/DolphinQt/GCMemcardManager.cpp:500 msgid "Export Failed" -msgstr "" +msgstr "Exportieren fehlgeschlagen" #: Source/Core/Core/HotkeyManager.cpp:57 msgid "Export Recording" msgstr "Aufnahme exportieren" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Aufnahme exportieren..." @@ -5059,20 +5203,20 @@ msgstr "Wii-Spielstände exportieren" #: Source/Core/DolphinQt/GCMemcardManager.cpp:118 msgid "Export as .&gcs..." -msgstr "" +msgstr "Als .&gcs exportieren..." #: Source/Core/DolphinQt/GCMemcardManager.cpp:119 msgid "Export as .&sav..." -msgstr "" +msgstr "Als .&sav exportieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n Spielstand/stände exportiert" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Erweiterung" @@ -5093,7 +5237,7 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externer Bildspeicher (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Zertifikate aus NAND extrahieren" @@ -5126,12 +5270,12 @@ msgid "Extracting Directory..." msgstr "Verzeichnis wird extrahiert..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO-Player" @@ -5151,7 +5295,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' anfügen." @@ -5159,12 +5303,12 @@ msgstr "Konnte nicht an Signaturdatei '%1' anfügen." msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -5192,19 +5336,20 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -5226,15 +5371,15 @@ msgstr "Konnte die ausgewählte Datei nicht löschen." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Fehler beim Lösen des Kernel-Treibers für BT-Durchleitung: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Download der Codes fehlgeschlagen." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Konnte %1 nicht dumpen: Fehler beim Öffnen der Datei" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Konnte %1 nicht dumpen: Fehler beim Schreiben in Datei" @@ -5247,7 +5392,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Konnte folgende Spielstände nicht exportieren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Konnte Zertifikate aus NAND nicht extrahieren" @@ -5273,22 +5418,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Ein oder mehrere D3D-Symbole konnten nicht gefunden werden" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Konnte \"%1\" nicht importieren." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5296,7 +5437,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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5307,7 +5448,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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Konnte Kern nicht initiieren" @@ -5318,7 +5459,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Renderer-Klassen konnten nicht initialisiert werden" @@ -5327,11 +5468,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Konnte diesen Titel nicht in den NAND installieren." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5339,8 +5480,8 @@ msgstr "" "Fehler beim Lauschen auf Port %1. Wird eine andere Instanz des NetPlay-" "Servers ausgeführt?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Konnte RSO-Modul an %1 nicht laden" @@ -5352,19 +5493,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:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Konnte Kartendatei '%1' nicht laden" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Konnte die ausführbare Datei nicht in den Speicher laden." @@ -5376,13 +5519,21 @@ msgstr "" "Konnte {0} nicht laden. Wenn du Windows 7 verwendest, versuche das " "Updatepaket KB4019990 zu installieren." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Konnte '&1' nicht öffnen" @@ -5390,6 +5541,10 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Konnte Einstellungsdatei nicht öffnen!" @@ -5420,28 +5575,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Konnte Server nicht öffnen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5464,7 +5623,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Konnte Daten von Redump.org nicht parsen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5486,31 +5645,34 @@ 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5551,31 +5713,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Konnte FIFO-Log nicht speichern." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Konnte Codekarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Konnte Signaturdatei '%1' nicht speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Konnte Symbolkarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5628,7 +5790,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Fehler" @@ -5636,11 +5798,11 @@ msgstr "Fehler" msgid "Fair Input Delay" msgstr "Faire Eingangsverzögerung" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Zurückgreifende Region" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Zurückgreifende Region:" @@ -5653,7 +5815,7 @@ msgstr "Schnell" msgid "Fast Depth Calculation" msgstr "Schnelle Tiefenberechnung" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5666,11 +5828,11 @@ msgstr "" msgid "Field of View" msgstr "Sichtfeld" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5678,9 +5840,9 @@ msgstr "" msgid "File Details" msgstr "Dateidetails" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Dateiformat" @@ -5692,20 +5854,20 @@ msgstr "Dateiformat:" msgid "File Info" msgstr "Datei-Informationen" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Dateiname" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Dateipfad" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Dateigröße" @@ -5713,13 +5875,13 @@ msgstr "Dateigröße" msgid "File Size:" msgstr "Dateigröße:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Datei enthielt keine Codes." #: Source/Core/DolphinQt/GCMemcardManager.cpp:150 msgid "Filename" -msgstr "" +msgstr "Dateiname" #: Source/Core/DiscIO/CompressedBlob.cpp:294 msgid "Files opened, ready to compress." @@ -5751,15 +5913,15 @@ msgstr "Dateisystem" msgid "Filters" msgstr "Filter" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "&Nächste finden" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "&Vorherige finden" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Kalibrierung abschließen" @@ -5773,9 +5935,9 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" -msgstr "" +msgstr "Feuer" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:47 msgid "First Person" @@ -5789,31 +5951,32 @@ msgstr "Prüfsummen korrigieren" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bitschalter" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "&Zweig folgen" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Für beste Ergebnisse, verschiebe die Eingabe bitte langsam in alle möglichen " @@ -5825,13 +5988,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5839,7 +6002,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" @@ -5871,11 +6034,11 @@ msgstr "Lauschport erzwingen:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5916,17 +6079,17 @@ msgstr "Vorwärts" msgid "Forward port (UPnP)" msgstr "Port öffnen (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "%1 Ergebnisse gefunden für \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Bild %1" @@ -5947,7 +6110,7 @@ msgstr "Verringere Einzelbildwiedergabegeschwindigkeit" msgid "Frame Advance Reset Speed" msgstr "Einzelbildwiedergabegeschwindigkeit zurücksetzen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Frame-Dump" @@ -5955,7 +6118,7 @@ msgstr "Frame-Dump" msgid "Frame Range" msgstr "Bildbereich" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Frame-Dump Bild(er) '{0}' existiert bereits. Überschreiben?" @@ -5969,17 +6132,17 @@ msgstr "Frankreich" #: Source/Core/DolphinQt/GCMemcardManager.cpp:312 msgid "Free Blocks: %1" -msgstr "" +msgstr "Freie Blöcke: %1" #: Source/Core/DolphinQt/GCMemcardManager.cpp:313 msgid "Free Files: %1" -msgstr "" +msgstr "Freie Dateien: %1" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:49 msgid "Free Look Control Type" msgstr "Freies Umsehen-Steuerungstyp" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Freies Umsehen-Controller %1" @@ -6014,7 +6177,7 @@ msgstr "Freies Umsehen umschalten" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Französisch" @@ -6038,7 +6201,7 @@ msgstr "Von" msgid "From:" msgstr "Von:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Vollbild" @@ -6052,11 +6215,11 @@ msgstr "Funktionen" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:42 msgid "GBA (Integrated)" -msgstr "" +msgstr "GBA (Integriert)" #: 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:" @@ -6064,15 +6227,15 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:358 msgid "GBA Core" -msgstr "" +msgstr "GBA-Kern" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:35 msgid "GBA Port %1" -msgstr "" +msgstr "GBA-Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" -msgstr "" +msgstr "GBA-Einstellungen" #: Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp:27 msgid "GBA TAS Input %1" @@ -6080,11 +6243,11 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:359 msgid "GBA Volume" -msgstr "" +msgstr "GBA-Lautstärke" #: Source/Core/Core/HotkeyManager.cpp:360 msgid "GBA Window Size" -msgstr "" +msgstr "GBA-Fenstergröße" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 msgid "GBA%1 ROM changed to \"%2\"" @@ -6104,7 +6267,7 @@ msgstr "GCI-Ordner" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:121 msgid "GCI Folder Path:" -msgstr "" +msgstr "GCI-Ordnerpfad:" #: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:428 msgid "GCMemcardDirectory: ClearBlock called with invalid block address" @@ -6203,32 +6366,34 @@ msgstr "" "GPU: Unterstützt deine Grafikkarte OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Spiel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" -msgstr "" +msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Module (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" +"Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" +"Alle Dateien (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" -msgstr "" +msgstr "Game Boy Advance auf Port %1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:73 msgid "Game Color Space:" -msgstr "" +msgstr "Spielfarbraum:" #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:69 msgid "Game Config" @@ -6250,8 +6415,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Spielkennung" @@ -6313,11 +6478,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube-Controller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "GameCube-Controller an Port %1" @@ -6325,11 +6490,11 @@ msgstr "GameCube-Controller an Port %1" msgid "GameCube Controllers" msgstr "GameCube-Controller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube-Tastatur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-Tastatur an Port %1" @@ -6342,11 +6507,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube Memory Cards (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube Mikrofonslot %1" @@ -6374,7 +6539,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-Codes" @@ -6384,35 +6549,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Allgemein" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Allgemeines und Optionen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "ActionReplay-Code generieren" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Neue Statistikidentität erzeugen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Deutsch" @@ -6424,20 +6589,20 @@ msgstr "Deutschland" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" -msgstr "" +msgstr "Riese" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" -msgstr "" +msgstr "Riesen" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 msgid "Golf Mode" @@ -6448,8 +6613,8 @@ msgid "Good dump" msgstr "Guter Dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6493,7 +6658,7 @@ msgstr "Grün links" msgid "Green Right" msgstr "Grün rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Tabellenansicht" @@ -6502,7 +6667,7 @@ msgstr "Tabellenansicht" msgid "Guitar" msgstr "Gitarre" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Gyroskop" @@ -6512,7 +6677,7 @@ msgstr "HDMI 3D" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:130 msgid "HDR" -msgstr "" +msgstr "HDR" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:139 msgid "HDR Paper White Nits" @@ -6530,36 +6695,35 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Kopf" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Hilfe" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" -msgstr "" +msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" -msgstr "" +msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" -msgstr "" +msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" -msgstr "" +msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6572,7 +6736,11 @@ msgstr "Hexadezimal" msgid "Hide" msgstr "Verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Alles verbergen" @@ -6588,12 +6756,12 @@ msgstr "Inkompatible Sitzungen ausblenden" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6602,14 +6770,8 @@ msgstr "Höchste" msgid "Hit Strength" msgstr "Schlagstärke" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Horizontales Sichtfeld" @@ -6626,7 +6788,7 @@ msgstr "Hostcode:" msgid "Host Input Authority" msgstr "Host-Eingabeautorität" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Hostgröße" @@ -6655,16 +6817,16 @@ msgstr "Host-Eingabeautorität aktiviert" msgid "Host with NetPlay" msgstr "Mit NetPlay ausrichten" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" -msgstr "" +msgstr "Hostname" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Tastenkürzel-Einstellungen" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Tastenkürzel" @@ -6673,7 +6835,7 @@ msgstr "Tastenkürzel" msgid "Hotkeys Require Window Focus" msgstr "Tastaturkürzel benötigen Fensterfokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6687,22 +6849,22 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Ich bin mir der Risiken bewusst und möchte weitermachen" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "Kennung" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:136 msgid "IOS Version:" -msgstr "" +msgstr "IOS-Version:" #: Source/Core/Core/IOS/Network/SSL.cpp:181 msgid "" @@ -6737,7 +6899,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR-Empfindlichkeit:" @@ -6790,11 +6952,11 @@ msgstr "" "Geeignet für rundenbasierte Spiele mit zeitabhängiger Steuerung, zum " "Beispiel Golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Indentitätserzeugung" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6850,11 +7012,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorieren" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Formatänderungen ignorieren" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "In dieser Sitzung ignorieren" @@ -6886,7 +7052,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Sofort dargestellter XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6901,7 +7067,7 @@ msgstr "" "Performance etwas.

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-Sicherung importieren..." @@ -6910,21 +7076,21 @@ msgstr "BootMii-NAND-Sicherung importieren..." #: Source/Core/DolphinQt/GCMemcardManager.cpp:573 #: Source/Core/DolphinQt/GCMemcardManager.cpp:615 msgid "Import Failed" -msgstr "" +msgstr "Importieren fehlgeschlagen" #: Source/Core/DolphinQt/GCMemcardManager.cpp:587 msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Wii-Spielstand importieren..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "NAND-Sicherung wird importiert" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6937,15 +7103,6 @@ msgstr "" msgid "In-Game?" msgstr "In-Game?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6959,27 +7116,27 @@ msgstr "" "Kosten zusätzlicher Speicher-/Ladezeit.

Im Zweifel " "aktiviert lassen." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -7024,15 +7181,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7052,8 +7210,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Information" @@ -7067,10 +7225,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Eingabe" @@ -7084,20 +7242,26 @@ msgstr "Eingabefestigkeit, die zur Aktivierung benötigt wird." msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "&nop einfügen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD-Karte einfügen" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7111,7 +7275,7 @@ msgstr "" msgid "Install Update" msgstr "Update installieren" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WAD installieren..." @@ -7119,11 +7283,13 @@ msgstr "WAD installieren..." msgid "Install to the NAND" msgstr "In NAND installieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Anweisung" @@ -7132,7 +7298,7 @@ msgstr "Anweisung" msgid "Instruction Breakpoint" msgstr "Anweisungshaltepunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Anweisung:" @@ -7141,7 +7307,7 @@ msgstr "Anweisung:" msgid "Instruction: %1" msgstr "Anweisung: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7158,19 +7324,19 @@ msgstr "Intensität" msgid "Interface" msgstr "Benutzeroberfläche" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7183,19 +7349,19 @@ msgstr "Interner LZO-Fehler - Komprimierung fehlgeschlagen" msgid "Internal LZO Error - decompression failed" msgstr "Interner LZO-Fehler - Dekomprimierung fehlgeschlagen" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7210,7 +7376,7 @@ msgstr "Interne Auflösung" msgid "Internal Resolution:" msgstr "Interne Auflösung:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -7218,11 +7384,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (am langsamsten)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreterkern" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Ungültiger Ausdruck." @@ -7234,7 +7400,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ungültiger gemischter Code" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Ungültiges Paket %1 angegeben: &2" @@ -7243,11 +7409,11 @@ msgstr "Ungültiges Paket %1 angegeben: &2" msgid "Invalid Player ID" msgstr "Ungültige Spieler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Ungültige RSO-Moduladresse: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Ungültiger Aufrufstapel" @@ -7257,7 +7423,7 @@ msgstr "Ungültige Prüfsummen." #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:158 msgid "Invalid game." -msgstr "" +msgstr "Ungültiges Spiel." #: Source/Core/Core/NetPlayClient.cpp:1984 msgid "Invalid host" @@ -7276,7 +7442,7 @@ msgstr "Ungültige Eingabe eingegeben" msgid "Invalid literal." msgstr "Ungültig" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -7288,19 +7454,19 @@ msgstr "Ungültiges Passwort angegeben." msgid "Invalid recording file" msgstr "Ungültige Aufnahmedatei" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Ungültige Suchparameter (kein Objekt ausgewählt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Ungültiger Suchbegriff (konnte nicht zu Zahl konvertieren)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Ungültiger Suchbegriff (nur gerade Zeichenlängen werden unterstützt)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Ungültige Titelkennung" @@ -7310,7 +7476,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italienisch" @@ -7319,63 +7485,63 @@ msgid "Italy" msgstr "Italien" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT-Blockverbindung Aus" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT-Blöcke" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Zweig Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FließKomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Ganzahl Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LadenSpeichern Fließkomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LadenSpeichern Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LadenSpeichern Gekoppelt Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LadenSpeichern lXz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LadenSpeichern lbzx Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LadenSpeichern lwz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Aus (JIT-Kern)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Gekoppelt Aus" @@ -7387,16 +7553,16 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT-Register-Cache Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT-SystemRegister Aus" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7405,12 +7571,16 @@ msgstr "" "niemals passieren. Melde bitte diesen Vorfall im Bug-Tracker. Dolphin wird " "jetzt beendet." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanisch" @@ -7421,13 +7591,13 @@ msgstr "Japanisch" msgid "Japanese (Shift-JIS)" msgstr "Japanisch (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7441,7 +7611,7 @@ msgstr "Fenster immer im Vordergrund" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7451,7 +7621,7 @@ msgstr "Tastatur" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:45 msgid "Keyboard Controller" -msgstr "" +msgstr "Tastatur-Controller" #: Source/Core/Core/HW/GCKeyboardEmu.cpp:60 #: Source/Core/Core/HW/GCKeyboardEmu.cpp:64 @@ -7462,7 +7632,7 @@ msgstr "" msgid "Keys" msgstr "Tasten" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7470,12 +7640,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Spieler hinauswerfen" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreanisch" @@ -7486,9 +7656,9 @@ msgstr "Koreanisch" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." -msgstr "" +msgstr "ROM l&aden..." #. i18n: The left trigger button (labeled L on real controllers) used as an analog input #: Source/Core/Core/HW/GCPadEmu.h:77 @@ -7496,7 +7666,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR-Sicherung" @@ -7504,37 +7674,39 @@ msgstr "LR-Sicherung" msgid "Label" msgstr "Bezeichnung" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" -msgstr "" +msgstr "Letzter Wert" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" +msgstr "Latenz: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" -msgstr "" +msgstr "Latenz: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" -msgstr "" +msgstr "Latenz: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" -msgstr "" +msgstr "Latenz: ~80 ms" #: Source/Core/DolphinQt/NANDRepairDialog.cpp:81 msgid "Launching these titles may also fix the issues." @@ -7608,27 +7780,27 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Lizenz" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" -msgstr "" +msgstr "Leben" #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:35 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:53 msgid "Lift" -msgstr "" +msgstr "Lift" #. i18n: Noun. This is used as a label for a control group that represents lights on controllers. #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7636,11 +7808,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Uploadblock-Geschwindigkeit begrenzen:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Listen-Spalten" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Listenansicht" @@ -7651,29 +7823,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "&Ungültige Kartendatei laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 -msgid "Load &Other Map File..." -msgstr "&Andere Kartendatei laden..." +#: Source/Core/DolphinQt/MenuBar.cpp:1043 +msgid "Load &Other Map File..." +msgstr "&Andere Kartendatei laden..." + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Lade benutzerdefinierte Texturen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" -msgstr "" +msgstr "Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "GameCube-Hauptmenü laden" @@ -7692,9 +7871,9 @@ msgstr "Ladepfad:" #: Source/Core/Core/HotkeyManager.cpp:185 msgid "Load ROM" -msgstr "" +msgstr "ROM laden" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7783,19 +7962,19 @@ msgstr "Spielstand in Slot 8 laden" msgid "Load State Slot 9" msgstr "Spielstand in Slot 9 laden" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Spielstand von Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Spielstand von Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Wii-Systemmenü laden %1" @@ -7807,16 +7986,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Lade von Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Kartendatei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7824,11 +8003,11 @@ msgstr "" msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Geladene Symbole von '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -7838,7 +8017,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/.

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

If unsure, leave this unchecked." @@ -7858,7 +8037,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7868,17 +8047,17 @@ msgstr "Protokollkonfiguration" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 msgid "Log In" -msgstr "" +msgstr "Anmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "JIT-Anweisungsabdeckung protokollieren" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 msgid "Log Out" -msgstr "" +msgstr "Abmelden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Protokolliert Renderzeit in Datei" @@ -7892,9 +8071,9 @@ msgstr "Logger-Ausgabe" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Login Failed" -msgstr "" +msgstr "Anmeldung fehlgeschlagen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7909,16 +8088,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Die Verbindung zum NetPlay-Server wurde getrennt..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7926,7 +8105,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -7936,45 +8115,45 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" -msgstr "" +msgstr "Magie" #: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:29 msgid "Main Stick" msgstr "Main Stick" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Hersteller" @@ -7995,12 +8174,12 @@ msgstr "" "machen, die die korrekte Nebelemulation benötigen." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "NAND verwalten" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -8012,7 +8191,7 @@ msgstr "Mapping" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Übereinstimmung gefunden" @@ -8029,16 +8208,16 @@ msgstr "Maximale Puffergröße auf %1 geändert" msgid "Maximum tilt angle." msgstr "Maximaler Neigungswinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Mittel" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Speicher" @@ -8050,19 +8229,19 @@ msgstr "Speicherhaltepunkt" msgid "Memory Card" msgstr "Speicherkarte" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Speicherkartenverwaltung" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:109 msgid "Memory Card Path:" -msgstr "" +msgstr "Speicherkartenpfad:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:120 msgid "Memory Override" msgstr "Speicherüberschreibung" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Speicherhaltepunktoptionen" @@ -8080,7 +8259,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8092,29 +8271,33 @@ 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:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" -msgstr "" +msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Sonstiges" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Sonstige Einstellungen" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8136,12 +8319,16 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifikator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " @@ -8151,24 +8338,25 @@ msgstr "" "

Benötigt in den meisten Fällen einen Reset der Emulation." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" -msgstr "" +msgstr "Module gefunden: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" -msgstr "" +msgstr "Geld:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8180,22 +8368,22 @@ msgstr "Monoskopische Schatten" msgid "Monospaced Font" msgstr "Proportionale Schriftart" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Bewegungseingabe" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Bewegungssimulation" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 msgid "Mouse Cursor Visibility" -msgstr "" +msgstr "Mauszeigersichtbarkeit" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "" @@ -8204,11 +8392,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 msgid "Mouse Cursor will always be visible." -msgstr "" +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 "" +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 @@ -8226,19 +8414,23 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" -msgstr "" +msgstr "Multiplikator" #: qtbase/src/gui/kernel/qplatformtheme.cpp:722 msgid "N&o to All" -msgstr "" +msgstr "N&ein zu allen" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-Prüfung" @@ -8247,23 +8439,23 @@ msgstr "NAND-Prüfung" msgid "NKit Warning" msgstr "NKit-Warnung" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" 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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" 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 "" @@ -8274,25 +8466,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Name" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Name für ein neues Tag:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Name des Tag, das entfernt werden soll:" @@ -8301,7 +8493,7 @@ msgid "Name of your session shown in the server browser" msgstr "Name deiner Sitzung im Server-Browser" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8316,7 +8508,7 @@ msgstr "Nativ (640x528)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:399 #: Source/Core/DolphinQt/GCMemcardManager.cpp:406 msgid "Native GCI File" -msgstr "" +msgstr "Native GCI-Datei" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 msgid "NetPlay" @@ -8358,13 +8550,13 @@ msgstr "" msgid "Network" msgstr "Netzwerk" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 msgid "Never" -msgstr "" +msgstr "Nie" #: Source/Core/DolphinQt/Updater.cpp:84 msgid "Never Auto-Update" @@ -8382,13 +8574,13 @@ msgstr "Neuer Haltepunkt" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:706 msgid "New File" -msgstr "" +msgstr "Neue Datei" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:708 msgid "New File (%1)" -msgstr "" +msgstr "Neue Datei (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Neue Suche" @@ -8396,7 +8588,7 @@ msgstr "Neue Suche" msgid "New Tag..." msgstr "Neues Tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Neue identität erzeugt." @@ -8404,7 +8596,7 @@ msgstr "Neue identität erzeugt." msgid "New instruction:" msgstr "Neue Anweisung:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Neues Tag" @@ -8413,7 +8605,7 @@ msgstr "Neues Tag" msgid "Next Game Profile" msgstr "Nächstes Spielprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Nächste Übereinstimmung" @@ -8427,7 +8619,7 @@ msgid "Nickname is too long." msgstr "Nickname is too long." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Spitzname:" @@ -8441,9 +8633,9 @@ msgstr "Nein" msgid "No Adapter Detected" msgstr "Kein Adapter erkannt" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" -msgstr "" +msgstr "Keine Ausrichtung" #: Source/Core/Core/Config/MainSettings.h:17 msgid "No Audio Output" @@ -8455,7 +8647,7 @@ msgstr "Keine Audioausgabe" msgid "No Compression" msgstr "Keine Komprimierung" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Keine Übereinstimmung" @@ -8463,16 +8655,16 @@ msgstr "Keine Übereinstimmung" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Keine Beschreibung vorhanden" @@ -8488,24 +8680,24 @@ msgstr "Keine Erweiterung ausgewählt." msgid "No file loaded / recorded." msgstr "Keine Datei geladen / aufgezeichnet." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." -msgstr "" +msgstr "Es läuft kein Spiel." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:59 #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:107 msgid "No input" -msgstr "" +msgstr "Keine Eingabe" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Es wurden keine Probleme festgestellt." @@ -8517,10 +8709,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "Keine Pfade in der M3U-Datei \"{0}\" gefunden." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Es wurden keine Probleme gefunden." @@ -8536,11 +8724,11 @@ msgstr "" "bedeutet dies, dass es höchstwahrscheinlich keine Probleme gibt, die sich " "auf die Emulation auswirken." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Keine Profile für Spieleinstellung '{0}' gefunden" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Keine Aufnahme geladen." @@ -8549,7 +8737,7 @@ msgstr "Keine Aufnahme geladen." msgid "No save data found." msgstr "Keine gespeicherten Daten gefunden." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Keine undo.dtm gefunden, undo load state ab wird abgebrochen, um Film-" @@ -8558,11 +8746,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Keine" @@ -8596,7 +8784,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 msgid "Not found" -msgstr "" +msgstr "Nicht gefunden" #: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:28 msgid "" @@ -8622,7 +8810,7 @@ msgid "Null" msgstr "Null" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "AnzAusf" @@ -8640,7 +8828,7 @@ msgstr "Nunchuk" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 msgid "Nunchuk Accelerometer" -msgstr "" +msgstr "Nunchuk-Beschleunigungssensor" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 msgid "Nunchuk Buttons" @@ -8657,10 +8845,58 @@ msgstr "Nunchuck-Stick" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Objekt %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Objektreichweite" @@ -8674,7 +8910,7 @@ msgstr "Ozeanien" msgid "Off" msgstr "Aus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8684,24 +8920,39 @@ msgstr "Ein" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "On Movement" -msgstr "" +msgstr "Bei Bewegung" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online-&Dokumentation" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:50 msgid "Only Show Collection" -msgstr "" +msgstr "Nur Sammlung anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8709,7 +8960,7 @@ msgstr "" "Nur Symbole anhängen mit dem Präfix:\n" "(Leer für alle Symbole)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8719,7 +8970,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Öffnen" @@ -8728,11 +8979,11 @@ msgstr "Öffnen" msgid "Open &Containing Folder" msgstr "Über&geordneten Ordner öffnen" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" -msgstr "" +msgstr "&Benutzerordner öffnen" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Verzeichnis öffnen..." @@ -8753,7 +9004,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "Wii-&Spielstand-Ordner öffnen" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8786,11 +9037,11 @@ msgid "Operators" msgstr "Operatoren" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Einstellungen" @@ -8803,26 +9054,49 @@ msgstr "Orange" msgid "Orbital" msgstr "Orbital" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Andere" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:158 msgid "Other Partition (%1)" -msgstr "" +msgstr "Andere Partition (%1)" #: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Tastenkürzel anderer Spielstand" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Verwaltung anderer Spielstand" @@ -8832,7 +9106,7 @@ msgstr "Anderes Spiel..." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:446 msgid "Output" -msgstr "" +msgstr "Ausgabe" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 msgid "Output Resampling" @@ -8842,45 +9116,45 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" -msgstr "" +msgstr "Überschrieben" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Eingabeau&fzeichnung wiedergeben..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" 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:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" -msgstr "" +msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" -msgstr "" +msgstr "PNG-Komprimierungsstufe" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" -msgstr "" +msgstr "PNG-Komprimierungsstufe:" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:195 msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG-Bilddatei (*.png);; Alle Dateien (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC-Größe" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8893,11 +9167,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parameter" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8948,11 +9222,15 @@ msgstr "Pfad:" msgid "Paths" msgstr "Pfade" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pause am Filmende" @@ -8991,7 +9269,7 @@ msgstr "Spitzengeschwindigkeit von nach außen gerichteten Schwenkbewegungen." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Lighting" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Online-Systemaktualisierung durchführen" @@ -8999,33 +9277,33 @@ msgstr "Online-Systemaktualisierung durchführen" msgid "Perform System Update" msgstr "Systemaktualisierung durchführen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Physikalisch" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Wähle eine Debug-Schriftart" @@ -9041,12 +9319,12 @@ msgstr "Nicken abwärts" msgid "Pitch Up" msgstr "Nicken aufwärts" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plattform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Start" @@ -9058,7 +9336,7 @@ msgstr "Abspielen / Aufnahme" msgid "Play Recording" msgstr "Aufnahme abspielen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -9070,27 +9348,27 @@ msgstr "Wiedergabeoptionen" msgid "Player" msgstr "Spieler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" -msgstr "" +msgstr "Spieler Eins" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" -msgstr "" +msgstr "Spieler Zwei" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -9099,9 +9377,10 @@ msgstr "" msgid "Players" msgstr "Spieler" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" -msgstr "" +msgstr "Spielzeit:" #. i18n: Please leave SyncOnSkipIdle and True untranslated. #. The user needs to enter these terms as-is in an INI file. @@ -9111,32 +9390,36 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Zeige" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: 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 "Port:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -9159,11 +9442,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Shader-Konfiguration nach der Verarbeitung" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Benutzerdefinierte Texturen vorladen" @@ -9171,11 +9454,11 @@ msgstr "Benutzerdefinierte Texturen vorladen" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Vorzeitiges Filmende in PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Vorzeitiges Filmende in PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Vorzeitiges Filmende in PlayWiimote. {0} > {1}" @@ -9200,7 +9483,7 @@ msgstr "Sync-Taste drücken" msgid "Pressure" msgstr "Druck" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9220,7 +9503,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Vorheriges Spielprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Vorherige Übereinstimmung" @@ -9231,7 +9514,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -9243,7 +9526,7 @@ msgstr "Privat" msgid "Private and Public" msgstr "Privat und öffentlich" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problem" @@ -9283,8 +9566,8 @@ msgstr "Programmzähler" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Fortschritt" @@ -9292,11 +9575,11 @@ msgstr "Fortschritt" msgid "Public" msgstr "Öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Spielelisten Cache leeren" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9316,14 +9599,14 @@ 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." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Frage" @@ -9344,19 +9627,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "BEREIT" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO-Module" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "Automatische RSO-Erkennung" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "LÄUFT" @@ -9369,23 +9652,27 @@ msgstr "RVZ GC/Wii-Abbilder (*.rvz)" msgid "Range" msgstr "Reichweite" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 msgid "Rank %1" -msgstr "" +msgstr "Rang %1" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:409 msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Anweisung er&setzen" @@ -9397,14 +9684,14 @@ msgstr "Lesen" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Lesen und schreiben" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Nur Lesen" @@ -9425,10 +9712,15 @@ msgstr "Echtes Balance Board" msgid "Real Wii Remote" msgstr "Reale Wiimote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9442,7 +9734,7 @@ msgstr "Aufnahme" msgid "Record Inputs" msgstr "Eingaben aufzeichnen" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Aufzeichnung" @@ -9483,7 +9775,7 @@ msgstr "" "wendet sie auch bei Belichtung, Shader-Effekten und Texturen an." "

Im Zweifel, wähle Keine." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org Status:" @@ -9491,14 +9783,14 @@ msgstr "Redump.org Status:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Aktualisieren" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9506,11 +9798,11 @@ msgstr "" msgid "Refresh Game List" msgstr "Spieleliste aktualisieren" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9519,8 +9811,8 @@ msgstr "" msgid "Refreshing..." msgstr "Aktualisiere..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9549,7 +9841,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Entfernen" @@ -9566,7 +9858,7 @@ msgstr "Junk-Daten entfernen (unwiederruflich):" msgid "Remove Tag..." msgstr "Tag entfernen..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Tag entfernen" @@ -9580,8 +9872,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Symbol umbenennen" @@ -9589,11 +9881,11 @@ msgstr "Symbol umbenennen" msgid "Render Window" msgstr "Renderfenster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Im Hauptfenster rendern" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9611,25 +9903,24 @@ msgstr "Anfrage deiner Gruppe beizutreten" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Zurücksetzen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" -msgstr "" +msgstr "Alles zurücksetzen" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" -msgstr "" +msgstr "Ergebnisse zurücksetzen" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:391 msgid "Reset Traversal Server" @@ -9645,7 +9936,7 @@ msgstr "Übergangseinstellungen zurücksetzen." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:333 msgid "Reset Values" -msgstr "" +msgstr "Werte zurücksetzen" #: Source/Core/Core/FreeLookManager.cpp:103 msgid "Reset View" @@ -9655,6 +9946,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Ressourcenpaketverwaltung" @@ -9671,7 +9966,7 @@ msgstr "Neustart erforderlich" msgid "Restore Defaults" msgstr "Standard wiederherstellen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Anweisung wiederherstellen" @@ -9688,7 +9983,7 @@ msgstr "Rücklaufgeschwindigkeit" msgid "Revision" msgstr "Revision" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revision: %1" @@ -9747,9 +10042,9 @@ msgstr "Rollen rechts" msgid "Room ID" msgstr "Raum-ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" -msgstr "" +msgstr "Drehung" #. i18n: Refering to emulated wii remote swing movement. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:63 @@ -9765,26 +10060,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Bis &hier ausführen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9800,27 +10121,27 @@ msgstr "Russland" msgid "SD Card" msgstr "SD-Karte" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" -msgstr "" +msgstr "SD-Karten-Dateigröße" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-Karten-Pfad:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" -msgstr "" +msgstr "SD-Karten-Einstellungen" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:186 msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9833,7 +10154,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9841,11 +10162,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL-Kontext" @@ -9855,11 +10176,11 @@ msgstr "SSL-Kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Code speich&ern" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "S&pielstand speichern" @@ -9872,7 +10193,6 @@ msgstr "Sicher" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9882,9 +10202,17 @@ msgstr "Speichern" msgid "Save All" msgstr "Alle speichern" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Export speichern" @@ -9893,24 +10221,24 @@ msgid "Save FIFO log" msgstr "FIFO-Log speichern" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Datei speichern unter" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Import speichern" @@ -9922,13 +10250,13 @@ msgstr "Ältesten Spielstand überschreiben" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Spielstand speichern" @@ -9972,23 +10300,23 @@ msgstr "In Slot 8 speichern" msgid "Save State Slot 9" msgstr "In Slot 9 speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Spielstand in Datei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Spielstand in ältesten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Spielstand in Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Symbolkarte speichern &als..." @@ -9996,7 +10324,7 @@ msgstr "Symbolkarte speichern &als..." msgid "Save Texture Cache to State" msgstr "Texturen-Cache in Spielstand speichern" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Spielstand speichern und laden" @@ -10008,11 +10336,11 @@ msgstr "" msgid "Save as..." msgstr "Speichern unter..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Kombinierte Ausgabedatei speichern als" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10022,15 +10350,15 @@ msgstr "" "eine Sicherung der aktuellen Spielstände zu erstellen.\n" "Jetzt überschreiben?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Kartendatei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Signaturdatei speichern" @@ -10038,7 +10366,7 @@ msgstr "Signaturdatei speichern" msgid "Save to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Spielstand in Slot %1 - %2 speichern" @@ -10052,7 +10380,7 @@ msgstr "" "Gespeicherte Wiimote-Kopplungen können nur zurückgesetzt werden, wenn ein " "Wii-Spiel läuft." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -10064,26 +10392,26 @@ msgstr "Spielstandfilm {0} ist fehlerhaft, breche die Filmaufnahme ab..." msgid "Scaled EFB Copy" msgstr "Skalierte EFB-Kopie" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "ScrShot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Suche" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Adresse suchen" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Derzeitiges Objekt suchen" @@ -10091,17 +10419,17 @@ msgstr "Derzeitiges Objekt suchen" msgid "Search Subfolders" msgstr "Unterordner durchsuchen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Suche nach einer Anweisung" @@ -10109,13 +10437,13 @@ msgstr "Suche nach einer Anweisung" msgid "Search games..." msgstr "Suche Spiele..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Suchanweisung" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" -msgstr "" +msgstr "Suchen:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:59 msgid "Section that contains all Action Replay cheat codes." @@ -10134,36 +10462,44 @@ msgid "Section that contains most CPU and Hardware related settings." msgstr "" "Abschnitt, der die meisten CPU- und Hardware-basierten Einstellungen enthält." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" -msgstr "" +msgstr "Sicherheitsoptionen" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:261 msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Dump-Pfad auswählen" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Export-Verzeichnis auswählen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -10183,15 +10519,15 @@ msgstr "Ressourcenpaket-Pfad auswählen" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2 auswählen" @@ -10199,7 +10535,7 @@ msgstr "Slot %1 - %2 auswählen" msgid "Select State" msgstr "Spielstand auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Spielstand-Slot auswählen" @@ -10245,7 +10581,7 @@ msgstr "Slot 9 auswählen" #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" -msgstr "" +msgstr "WFS-Pfad auswählen" #: Source/Core/DolphinQt/Settings/PathPane.cpp:60 msgid "Select Wii NAND Root" @@ -10258,15 +10594,15 @@ msgstr "Verzeichnis auswählen" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Datei auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10274,11 +10610,11 @@ msgstr "" msgid "Select a Game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SD-Kartenabbild auswählen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10286,19 +10622,19 @@ msgstr "" msgid "Select a game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Wähle einen Titel zum Installieren in den NAND aus." -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Wählen Sie die RSO-Moduladresse aus:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -10306,12 +10642,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Wähle die Schlüsseldateien (OTP/SEEPROM Dump)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Wii-Spielstand auswählen" @@ -10327,7 +10663,7 @@ msgstr "Wähle aus, wo die konvertierten Abbilder gespeichert werden sollen" msgid "Selected Font" msgstr "Ausgewählte Schriftart" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Ausgewähltes Controller-Profil existiert nicht" @@ -10339,21 +10675,21 @@ msgstr "Ausgewähltes Controller-Profil existiert nicht" 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:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Ausgewählter Thread-Aufrufstapel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Ausgewählter Thread-Kontext" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10361,6 +10697,25 @@ msgstr "" "Wählt ein Anzeigegerät aus.

Im Zweifel, wähle das " "Erste." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10380,18 +10735,29 @@ 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:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10405,7 +10771,7 @@ msgstr "" msgid "Send" msgstr "Senden" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Position der Sensorleiste:" @@ -10431,16 +10797,12 @@ msgstr "Server-Port" msgid "Server rejected traversal attempt" msgstr "Server hat Übergangsversuch abgelehnt." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "&Wert zuweisen" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "PC zuweisen" @@ -10456,23 +10818,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Symbol-&Endadresse festlegen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "&Symbolgröße festlegen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Symbol-Endadresse festlegen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Symbolgröße festlegen (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10482,17 +10844,17 @@ msgstr "" "Spiele.\n" "Funktioniert nicht bei allen Spielen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Stellt die Wii Systemsprache ein." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10504,20 +10866,20 @@ msgstr "" msgid "Settings" msgstr "Einstellungen" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMem: setting.txt kann nicht erstellt werden" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Schweregrad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Shader-Kompilierung" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Schütteln" @@ -10528,22 +10890,22 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:232 msgid "Shinkansen" -msgstr "" +msgstr "Shinkansen" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:23 msgid "Shinkansen Controller" -msgstr "" +msgstr "Shinkansen-Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "&Log anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "&Werkzeugleiste anzeigen" @@ -10551,53 +10913,53 @@ msgstr "&Werkzeugleiste anzeigen" msgid "Show Active Title in Window Title" msgstr "Aktiven Titel in Fenstertitel anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Alles anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Australien anzeigen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Zeige momentanes Spiel auf Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL anzeigen" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Bildzähler anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Frankreich anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "GameCube anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Deutschland anzeigen" @@ -10609,23 +10971,23 @@ msgstr "Golf-Modus-Überlagerung anzeigen" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Eingabebildschirm anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Italien anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" -msgstr "" +msgstr "JPN anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Korea anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Lag-Zähler anzeigen" @@ -10633,19 +10995,19 @@ msgstr "Lag-Zähler anzeigen" msgid "Show Language:" msgstr "Anzeigesprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Protokoll&konfiguration anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "NetPlay-Nachrichten anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay-Ping anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Niederlande anzeigen" @@ -10653,32 +11015,36 @@ msgstr "Niederlande anzeigen" msgid "Show On-Screen Display Messages" msgstr "Bildschirmnachrichten zeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Plattformen anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Regionen anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Russland anzeigen" @@ -10686,84 +11052,84 @@ msgstr "Russland anzeigen" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Spanien anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Statistiken anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Systemuhr anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Taiwan anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "USA anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Unbekannte anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" -msgstr "" +msgstr "VPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Welt anzeigen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Im &Speicher anzeigen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" -msgstr "" +msgstr "Im Code anzeigen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" -msgstr "" +msgstr "Im Speicher anzeigen" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Im Code anzeigen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" -msgstr "" +msgstr "Im Speicher anzeigen" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:143 msgid "Show in server browser" msgstr "Im Server-Browser anzeigen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" -msgstr "" +msgstr "&Ziel im Speicher anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -10772,42 +11138,42 @@ msgstr "" "Desynchronisierungswarnungen an.

Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

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

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10837,34 +11209,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Nebeneinander" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Seitwärts halten" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Seitwärts umschalten" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wiimote seitwärts" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Signaturendatenbank" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10873,7 +11245,7 @@ msgid "Signed Integer" msgstr "Signiertes Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinesisch (Vereinfacht)" @@ -10890,7 +11262,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." @@ -10898,11 +11270,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Überspringen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10942,24 +11314,24 @@ msgstr "" "

Im Zweifel aktiviert lassen." #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" -msgstr "" +msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" -msgstr "" +msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky);;Alle Dateien (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10967,10 +11339,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10980,7 +11348,7 @@ msgstr "Schieberleiste" msgid "Slot A" msgstr "Slot A:" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Slot A:" @@ -10988,7 +11356,7 @@ msgstr "Slot A:" msgid "Slot B" msgstr "Slot B:" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Slot B:" @@ -10996,7 +11364,7 @@ msgstr "Slot B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Rastet die Stick-Position auf die nächste achteckige Achse ein." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Sockel Tabelle" @@ -11024,12 +11392,12 @@ msgstr "" "Einige der angegebenen Werte sind ungültig.\n" "Bitte überprüfe die markierten Werte." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Alphabetisch sortieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Klang:" @@ -11043,27 +11411,27 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanisch" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Lautsprecherregler" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Lautsprecher-Lautstärke" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Spezifisch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11084,15 +11452,15 @@ msgstr "Geschwindigkeit" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Stapelende" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Stapelstart" @@ -11105,25 +11473,28 @@ msgstr "Standard-Controller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "&NetPlay starten..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Aufzeichnung der Eingabe starten" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Aufnahme starten" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Im Vollbildmodus starten" @@ -11139,10 +11510,10 @@ msgstr "" msgid "Started game" msgstr "Spiel gestartet" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Status" @@ -11152,7 +11523,7 @@ msgstr "Lenkrad" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Schritt" @@ -11164,13 +11535,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Schritt über" @@ -11186,7 +11557,7 @@ msgstr "Zeitüberschreitung bei Schritt heraus!" msgid "Step over in progress..." msgstr "Schritt über in Bearbeitung..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Schritt erfolgreich!" @@ -11195,7 +11566,7 @@ msgstr "Schritt erfolgreich!" msgid "Stepping" msgstr "Schrittweite" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11225,18 +11596,14 @@ msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Wiedergabe/Aufzeichnung der Eingabe stoppen" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Spiel gestoppt" @@ -11279,7 +11646,7 @@ msgstr "" "Texturen) ablegen

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "An Fenstergröße anpassen" @@ -11299,7 +11666,7 @@ msgstr "Klimpern" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 msgid "Style:" -msgstr "" +msgstr "Stil:" #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:29 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:48 @@ -11314,8 +11681,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Erfolg" @@ -11342,7 +11709,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Spielstände wurden erfolgreich exportiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Zertifikate aus NAND erfolgreich extrahiert" @@ -11354,12 +11721,12 @@ msgstr "Datei erfolgreich extrahiert." msgid "Successfully extracted system data." msgstr "Systemdaten erfolgreich extrahiert." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Spielstand wurde erfolgreich importiert." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Der Titel wurde erfolgreich in den NAND installiert." @@ -11370,28 +11737,28 @@ msgstr "Der Titel wurde erfolgreich aus dem NAND gelöscht." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Unterstützung" #: Source/Core/DolphinQt/GCMemcardManager.cpp:589 msgid "Supported file formats" -msgstr "" +msgstr "Unterstützte Dateiformate" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Ausgesetzt" @@ -11401,12 +11768,12 @@ msgstr "Augen vertauschen" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -11420,7 +11787,7 @@ msgstr "" "lassen." #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Schwingen" @@ -11434,34 +11801,21 @@ msgid "Switch to B" msgstr "Zu B wechseln" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Symbol (%1) Endadresse:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Symbolname:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symbole" @@ -11489,7 +11843,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11508,24 +11862,24 @@ msgid "Synchronizing save data..." msgstr "Synchronisiere Spielstände..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemsprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS-Werkzeuge" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Tags" @@ -11535,7 +11889,7 @@ msgstr "Tags" msgid "Taiko Drum" msgstr "Taiko-Trommel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Schweif" @@ -11543,15 +11897,15 @@ msgstr "Schweif" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Screenshot erstellen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11559,14 +11913,20 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" -msgstr "" +msgstr "Tech" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:263 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11576,19 +11936,19 @@ msgstr "Texturen-Cache" msgid "Texture Cache Accuracy" msgstr "Texturen-Cache-Genauigkeit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texturdump" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "Texture Filtering" -msgstr "" +msgstr "Texturfilterung" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:172 msgid "Texture Filtering:" -msgstr "" +msgstr "Texturfilterung:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Texturenformat-Überlagerung" @@ -11613,7 +11973,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "Die H3-Hash-Tabelle für die {0} Partition ist nicht korrekt." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "Die IPL-Datei ist kein bekannter guter Dump. (CRC32: {0:x})" @@ -11627,7 +11987,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11635,7 +11995,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "Das NAND wurde repariert." @@ -11646,11 +12006,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11687,6 +12047,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11707,7 +12074,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Die Disc, die eingelesen werden sollte, konnte nicht gefunden werden." @@ -11727,17 +12094,17 @@ msgstr "Die emulierte Wii-Konsole ist bereits auf dem neuesten Stand." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Die eingegebene PID ist ungültig." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Die eingegebene VID ist ungültig." @@ -11745,7 +12112,7 @@ msgstr "Die eingegebene VID ist ungültig." msgid "The expression contains a syntax error." msgstr "Der Ausdruck enthält einen Syntaxfehler." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11765,7 +12132,7 @@ msgstr "" "Die Datei %1 existiert bereits.\n" "Soll diese Datei ersetzt werden?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11785,7 +12152,7 @@ msgstr "" "Die Datei {0} wurde bereits geöffnet, der Header für die Datei wird nicht " "geschrieben." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11796,7 +12163,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:573 +#: 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 " @@ -11863,9 +12230,9 @@ msgstr "Die Hashes stimmen nicht überein!" msgid "The hashes match!" msgstr "Die Hashes stimmen überein!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11881,11 +12248,11 @@ msgstr "" msgid "The install partition is missing." msgstr "Die Installationspartition fehlt." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11899,8 +12266,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11933,12 +12300,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Der resultierende entschlüsselte AR-Code enthält keine Zeilen." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11979,7 +12346,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Die ausgewählte Datei \"{0}\" existiert nicht" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11994,11 +12361,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "Das Ticket ist nicht korrekt signiert." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -12006,15 +12373,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "Der Typ einer Partition konnte nicht gelesen werden." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12040,7 +12407,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12066,14 +12433,19 @@ msgstr "Die {0} Partition ist nicht richtig ausgerichtet." msgid "There are too many partitions in the first partition table." msgstr "Es gibt zu viele Partitionen in der ersten Partitionstabelle." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Es gibt nichts zum rückgängig machen!" @@ -12118,19 +12490,19 @@ msgstr "" "koreanischen Konsolen verwendet wird. Dies führt wahrscheinlich zu ERROR " "#002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Dieses USB-Gerät ist bereits freigegeben." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Dieses WAD ist nicht bootfähig." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Dieses WAD ist nicht gültig." @@ -12272,6 +12644,10 @@ msgstr "" msgid "This is a good dump." msgstr "Dies ist ein guter Dump." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Diese Sitzung erfordert ein Passwort:" @@ -12288,13 +12664,13 @@ msgstr "" "\n" "Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Dieses Programm sollte nicht verwendet werden, um Spiele zu spielen, die Sie " "nicht legal besitzen." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Dieser Titel kann nicht gebootet werden." @@ -12307,7 +12683,7 @@ msgstr "Dieser Titel wird ein ungültiges IOS verwenden." msgid "This title is set to use an invalid common key." msgstr "Dieser Titel wird einen ungültigen gemeinsamen Schlüssel verwenden." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12319,7 +12695,7 @@ msgstr "" "\n" "DSPHLE: Unbekannter ucode (CRC = {0:08x}) - erzwinge AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12345,6 +12721,13 @@ msgstr "" "Dieser Wert wird mit der in den Grafikeinstellungen festgelegten Farbtiefe " "multipliziert." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12365,11 +12748,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Thread-Kontext" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Threads" @@ -12377,12 +12760,12 @@ msgstr "Threads" msgid "Threshold" msgstr "Schwelle" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Neigung" @@ -12398,10 +12781,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titel" @@ -12415,7 +12798,7 @@ msgstr "Zu" msgid "To:" msgstr "Zu:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Vollbildmodus umschalten" @@ -12440,7 +12823,7 @@ msgid "Toggle Aspect Ratio" msgstr "Seitenverhältnis umschalten" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Haltepunkt umschalten" @@ -12492,15 +12875,19 @@ msgstr "XFB-Kopien umschalten" msgid "Toggle XFB Immediate Mode" msgstr "Sofortigen XFB-Modus umschalten" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Tokenisierung fehlgeschlagen." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Werkzeugleiste" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Oben" @@ -12508,9 +12895,8 @@ msgstr "Oben" msgid "Top-and-Bottom" msgstr "Übereinander" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -12547,28 +12933,28 @@ msgstr "Gesamte Bewegungs-Distanz" msgid "Touch" msgstr "Touch" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinesisch (Traditionell)" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12607,26 +12993,26 @@ msgid "Triggers" msgstr "Schultertasten" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" -msgstr "" +msgstr "Trophäe" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Typ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "UNBEKANNT" @@ -12636,27 +13022,27 @@ msgstr "USA" #: Source/Core/DolphinQt/Config/Mapping/HotkeyUSBEmu.cpp:21 msgid "USB Device Emulation" -msgstr "" +msgstr "USB-Geräteemulation" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" -msgstr "" +msgstr "USB-Emulation" #: Source/Core/Core/HotkeyManager.cpp:361 msgid "USB Emulation Devices" -msgstr "" +msgstr "USB-Emulationsgeräte" #: Source/Core/Core/HW/EXI/EXI_Device.h:102 msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB-Whitelist-Fehler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -12667,7 +13053,7 @@ msgstr "" "Low-End-Hardware.

Im Zweifel diesen Modus wählen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -12679,7 +13065,7 @@ msgstr "" "

Nur benutzen, falls Hybrid Ubershader ruckeln und " "du eine sehr leistungsfähige GPU hast." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12693,7 +13079,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:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Konnte RSO-Module nicht automatisch erkennen" @@ -12705,11 +13091,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12736,7 +13122,7 @@ msgstr "" "\n" "Möchtest du diese Zeile ignorieren und mit dem Parsen fortfahren?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12759,15 +13145,15 @@ msgstr "Unkomprimierte GC/Wii-Abbilder (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Spielstand Laden rückgängig machen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Spielstand Speichern rückgängig machen" @@ -12788,11 +13174,11 @@ msgstr "" "Titels aus dem NAND entfernt, ohne die gespeicherten Daten zu löschen. " "Fortsetzen?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Vereinigte Staaten" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12803,12 +13189,13 @@ msgstr "Vereinigte Staaten" msgid "Unknown" msgstr "Unbekannt" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" -msgstr "" +msgstr "Unbekannt (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Unbekannter DVD-Befehl {0:08x} - fataler Fehler" @@ -12836,29 +13223,29 @@ msgstr "" "Unbekannte SYNC_SAVE_DATA Meldung mit ID:{0} von Spieler:{1} erhalten. " "Spieler wird herausgeworfen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" #: Source/Core/DolphinQt/ResourcePackManager.cpp:120 msgid "Unknown author" -msgstr "" +msgstr "Unbekannter Autor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" -msgstr "" +msgstr "Unbekannter Datentyp" #: Source/Core/DiscIO/VolumeVerifier.cpp:357 msgid "Unknown disc" msgstr "Unbekannte Disc" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." -msgstr "" +msgstr "Unbekannter Fehler aufgetreten." #: Source/Core/Core/NetPlayClient.cpp:1987 msgid "Unknown error {0:x}" @@ -12866,7 +13253,7 @@ msgstr "Unbekannter Fehler {0:x}" #: Source/Core/DolphinQt/GCMemcardManager.cpp:869 msgid "Unknown error." -msgstr "" +msgstr "Unbekannter Fehler" #: Source/Core/Core/NetPlayClient.cpp:480 msgid "Unknown message received with id : {0}" @@ -12878,22 +13265,24 @@ msgstr "" "Unbekannte Meldung mit ID:{0} von Spieler:{1} erhalten. Spieler wird " "herausgeworfen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" -msgstr "" +msgstr "Unbekannt(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" -msgstr "" +msgstr "Unbekannt(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Unbegrenzt" #: Source/Core/Core/HotkeyManager.cpp:186 msgid "Unload ROM" -msgstr "" +msgstr "ROM entladen" #: Source/Core/Core/HotkeyManager.cpp:37 msgid "Unlock Cursor" @@ -12901,7 +13290,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 msgid "Unlocked" -msgstr "" +msgstr "Entsperrt" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 msgid "Unlocked %1 times this session" @@ -12920,22 +13309,22 @@ msgid "Unpacking" msgstr "Auspacken" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" -msgstr "" +msgstr "Ungespeicherte Änderungen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12999,23 +13388,23 @@ msgstr "" "Titel %1 wird geupdated...\n" "Dies kann eine Weile dauern." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Aufrecht halten" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Aufrecht umschalten" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wiimote aufrecht" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Einstellungen zur Berichterstattung von Nutzungsdaten" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -13027,15 +13416,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Eingebaute Datenbank von Spielnamen verwenden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Benutze verlustfreien Codec (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60-Modus (EuRGB60) verwenden" @@ -13043,7 +13432,7 @@ msgstr "PAL60-Modus (EuRGB60) verwenden" msgid "Use Panic Handlers" msgstr "Warnmeldungen anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13063,43 +13452,18 @@ msgstr "" "Verwende einen einzigen Tiefenpuffer für beide Augen. Wird von einigen " "Spielen benötigt." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Benutzereinstellungen" @@ -13110,7 +13474,7 @@ msgstr "Benutzeroberfläche" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:328 msgid "User Variables" -msgstr "" +msgstr "Benutzervariablen" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:330 msgid "" @@ -13121,7 +13485,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 msgid "Username" -msgstr "" +msgstr "Benutzername" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -13135,7 +13499,7 @@ msgstr "" "GPU einen ordentlichen Geschwindigkeitsvorteil bringen." "

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13145,7 +13509,7 @@ msgstr "" "stattdessen ein Renderfenster erstellt.

Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Benutzt Qt %1" @@ -13163,31 +13527,31 @@ msgstr "Benutzt Qt %1" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Hilfsmittel" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync" @@ -13195,11 +13559,11 @@ msgstr "V-Sync" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Wert" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -13207,19 +13571,19 @@ msgstr "" msgid "Value:" msgstr "Wert:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" -msgstr "" +msgstr "Variante:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" -msgstr "" +msgstr "Fahrzeug" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:36 msgid "Velocity" @@ -13233,16 +13597,16 @@ msgstr "Ausführlichkeit" msgid "Verify" msgstr "Prüfen" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Integrität prüfen" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Zertifikate verifizieren" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Prüfe" @@ -13256,7 +13620,7 @@ msgid "Vertex Rounding" msgstr "Vertex-Rundung" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Vertikales Sichtfeld" @@ -13270,12 +13634,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "&Code ansehen" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "&Speicher ansehen" @@ -13283,14 +13647,14 @@ msgstr "&Speicher ansehen" msgid "Virtual Notches" msgstr "Virtuelle Kerben" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Lautstärke" @@ -13310,38 +13674,38 @@ msgstr "Lautstärke erhöhen" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD-Dateien (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "WAD-Installation fehlgeschlagen: Konnte Wii-Shop Logdateien nicht erstellen." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "WAD-Installation fehlgeschlagen: Titelimport konnte nicht abgeschlossen " "werden." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" "WAD-Installation fehlgeschlagen: Konnte Inhalt {0:08x} nicht importieren." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "WAD-Installation fehlgeschlagen: Konnte Titelimport (Fehler {0}) nicht " "initialisieren." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "WAD-Installation fehlgeschlagen: Die ausgewählte Datei ist kein gültiges WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "WARTEN" @@ -13384,18 +13748,18 @@ msgstr "WASAPI (Exklusivmodus)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:231 msgid "WFS Path:" -msgstr "" +msgstr "WFS-Pfad:" #: Source/Core/DolphinQt/ConvertDialog.cpp:353 msgid "WIA GC/Wii images (*.wia)" msgstr "WIA GC/Wii-Abbilder (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13413,7 +13777,7 @@ msgstr "" "reduzieren kann.

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13445,7 +13809,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Warnungen" @@ -13549,9 +13913,9 @@ msgstr "Überwachungsfenster" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" -msgstr "" +msgstr "Wasser" #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Website" @@ -13566,7 +13930,7 @@ msgstr "Westeuropäisch (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13578,7 +13942,7 @@ msgstr "" "\"Willkürliche Mipmaps erkennen\" in \"Verbesserungen\" aktiviert ist." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13590,7 +13954,7 @@ msgstr "" "\"Willkürliche Mipmaps erkennen\" in \"Verbesserungen\" aktiviert ist." "

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Freigegebene USB-Durchleitungsgeräte" @@ -13614,7 +13978,7 @@ msgstr "Wii-Menü" msgid "Wii NAND Root:" msgstr "Wii-NAND-Root:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wiimote" @@ -13622,7 +13986,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13640,7 +14004,7 @@ msgstr "Wiimote-Tasten" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wiimote-Einstellungen" @@ -13660,7 +14024,7 @@ msgstr "Wii TAS-Eingabe %1 - Wiimote" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS-Eingabe %1 - Wiimote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii und Wiimote" @@ -13668,11 +14032,11 @@ msgstr "Wii und Wiimote" msgid "Wii data is not public yet" msgstr "Wii-Daten sind noch nicht öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-Spielstände (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools MEGA-Signaturdatei" @@ -13682,9 +14046,21 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" +msgstr "Fenstergröße" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 @@ -13700,10 +14076,14 @@ msgstr "Weltweit" msgid "Write" msgstr "Schreiben" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Nur Schreiben" @@ -13739,10 +14119,18 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 msgid "Wrong region" -msgstr "" +msgstr "Falsche Region" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 msgid "Wrong revision" +msgstr "Falsche Revision" + +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) @@ -13753,11 +14141,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF-Register" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13790,16 +14178,16 @@ msgstr "Ja" #: qtbase/src/gui/kernel/qplatformtheme.cpp:718 msgid "Yes to &All" -msgstr "" +msgstr "Ja zu &allen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13916,7 +14304,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13934,29 +14322,33 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3-Code wird nicht unterstützt" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Der Zero-Code ist Dolphin unbekannt: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" -msgstr "" +msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" -msgstr "" +msgstr "[%1, %2] und [%3, %4]" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:292 msgid "^ Xor" msgstr "^ Xor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" -msgstr "" +msgstr "beliebiger Wert" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96 msgid "auto" @@ -13973,21 +14365,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll konnte nicht geladen werden." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" -msgstr "" +msgstr "Standard" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "getrennt" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -13995,33 +14387,37 @@ msgstr "errno" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 -msgid "is equal to" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +msgid "is equal to" +msgstr "ist gleich" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" -msgstr "" +msgstr "ist größer als" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" -msgstr "" +msgstr "ist größer als oder gleich" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" -msgstr "" +msgstr "ist kleiner als" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" -msgstr "" +msgstr "ist kleiner als oder gleich" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" -msgstr "" +msgstr "ist nicht gleich" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" -msgstr "" +msgstr "letzter Wert" #. i18n: The symbol/abbreviation for meters per second. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:44 @@ -14029,23 +14425,25 @@ msgstr "" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" msgstr "" +"mGBA-Spielstände (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." +"ss9);;Alle Dateien (*)" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96 msgid "none" msgstr "kein" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" -msgstr "" +msgstr "aus" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "am" @@ -14060,10 +14458,14 @@ msgstr "s" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:101 msgid "sRGB" -msgstr "" +msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" +msgstr "dieser Wert:" + +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 @@ -14071,7 +14473,7 @@ msgstr "" msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -14086,11 +14488,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "{0} (Meisterstück)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{0} IPL im {1} Verzeichnis gefunden. Die Disc wird möglicherweise nicht " @@ -14130,7 +14532,7 @@ msgstr "| Oder" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14141,8 +14543,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index 774d689f8c99..cd002bf6ba9b 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -56,8 +56,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -76,19 +76,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -109,7 +110,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -148,6 +149,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -171,13 +177,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -193,12 +199,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +221,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -223,26 +229,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -280,20 +286,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -303,23 +309,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -327,12 +333,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -340,27 +346,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -368,15 +374,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -384,19 +390,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -404,7 +415,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -421,9 +432,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -431,23 +442,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -455,55 +466,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -511,19 +520,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "" @@ -531,15 +540,19 @@ msgstr "" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -549,23 +562,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -574,23 +587,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "" @@ -598,15 +611,15 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "" @@ -614,41 +627,45 @@ msgstr "" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "" @@ -656,15 +673,19 @@ msgstr "" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -674,17 +695,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -696,11 +717,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -716,7 +737,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -724,7 +745,7 @@ msgstr "" msgid "(off)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -744,15 +765,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -763,12 +784,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -780,7 +801,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -788,11 +809,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -804,17 +825,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -826,11 +847,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -842,7 +863,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -854,25 +875,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -886,11 +907,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -898,7 +919,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -914,7 +935,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -926,22 +947,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -949,11 +970,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -965,13 +986,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -987,7 +1008,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -999,11 +1020,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1033,12 +1054,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1048,7 +1069,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1058,11 +1079,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1078,6 +1099,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1099,7 +1124,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1108,8 +1133,8 @@ msgstr "" msgid "AR Codes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1123,7 +1148,7 @@ msgid "About Dolphin" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1142,7 +1167,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1228,19 +1253,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1248,7 +1273,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "" @@ -1258,7 +1283,7 @@ msgstr "" msgid "Add" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1287,51 +1312,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1392,12 +1414,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1412,15 +1434,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1430,16 +1452,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1453,11 +1475,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1465,7 +1487,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1474,7 +1496,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1483,8 +1505,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1496,7 +1518,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1508,15 +1530,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1544,7 +1566,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1582,15 +1604,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1608,7 +1630,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1640,12 +1662,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "" @@ -1653,7 +1679,7 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1661,7 +1687,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1678,7 +1704,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1686,11 +1712,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 "" @@ -1702,12 +1728,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "" @@ -1715,11 +1741,7 @@ msgstr "" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1731,7 +1753,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1739,32 +1761,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1772,38 +1794,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1819,13 +1845,13 @@ msgstr "" msgid "Backward" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1833,20 +1859,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "" @@ -1866,15 +1892,15 @@ msgstr "" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "" @@ -1882,15 +1908,15 @@ msgstr "" msgid "Bass" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1914,31 +1940,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1947,7 +1975,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1974,32 +2002,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2037,11 +2176,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2051,11 +2190,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2087,7 +2226,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2103,7 +2242,7 @@ msgstr "" msgid "Buttons" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2113,11 +2252,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2129,7 +2268,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2137,14 +2276,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2156,11 +2295,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2168,19 +2307,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2189,64 +2328,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2254,19 +2405,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2284,7 +2437,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2292,7 +2445,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "" @@ -2300,7 +2453,7 @@ msgstr "" msgid "Change Disc" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2308,7 +2461,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2334,7 +2487,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2346,15 +2499,15 @@ msgstr "" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2362,7 +2515,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2380,27 +2533,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2427,15 +2580,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2443,7 +2600,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2452,36 +2609,20 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2508,7 +2649,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2535,7 +2680,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2543,9 +2688,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2558,10 +2703,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2634,7 +2785,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "" @@ -2667,13 +2818,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2681,7 +2832,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2692,15 +2843,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2720,7 +2871,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2761,7 +2912,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2785,7 +2936,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2848,8 +2999,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2857,9 +3008,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2867,9 +3018,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2889,8 +3040,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2926,15 +3077,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2942,19 +3093,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2972,6 +3123,11 @@ msgstr "" msgid "Core" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2981,7 +3137,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3054,7 +3210,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3091,13 +3247,13 @@ msgstr "" msgid "Country:" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3106,15 +3262,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3123,17 +3275,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3141,11 +3284,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3157,26 +3300,26 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3184,27 +3327,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3216,13 +3363,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3247,7 +3394,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 "" @@ -3255,15 +3402,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 "" @@ -3285,7 +3432,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3301,7 +3448,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3334,8 +3481,8 @@ msgstr "" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "" @@ -3344,7 +3491,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3391,7 +3538,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 "" @@ -3403,11 +3550,11 @@ msgstr "" msgid "Default ISO:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3415,7 +3562,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3455,26 +3602,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3482,7 +3656,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3490,7 +3664,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3499,7 +3673,7 @@ msgid "Device" msgstr "" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3508,11 +3682,11 @@ msgid "Device Settings" msgstr "" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3520,11 +3694,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3536,12 +3706,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3553,7 +3723,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3561,11 +3731,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3573,11 +3743,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3592,7 +3762,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3938,15 +4104,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3972,7 +4138,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3985,7 +4151,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4001,15 +4167,15 @@ msgstr "" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4019,7 +4185,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4027,11 +4193,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "" @@ -4039,11 +4205,11 @@ msgstr "" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4057,7 +4223,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4077,28 +4243,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4110,11 +4264,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "" @@ -4134,7 +4288,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "" @@ -4154,7 +4308,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4180,6 +4334,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4193,7 +4351,7 @@ msgstr "" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "" @@ -4206,11 +4364,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4222,15 +4380,15 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "" @@ -4300,7 +4458,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4331,7 +4489,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4339,7 +4497,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4356,7 +4514,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 "" @@ -4382,7 +4540,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4390,7 +4548,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4398,7 +4556,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4423,7 +4581,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "" @@ -4432,7 +4590,7 @@ msgstr "" msgid "Enhancements" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4454,11 +4612,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4467,8 +4631,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4479,45 +4643,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4527,16 +4697,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "" @@ -4553,9 +4723,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4567,7 +4737,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4633,13 +4803,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4658,40 +4828,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4699,7 +4841,7 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4707,7 +4849,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4719,15 +4861,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4735,11 +4877,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "" @@ -4754,7 +4896,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "" @@ -4782,14 +4924,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "" @@ -4810,7 +4952,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4843,12 +4985,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "" @@ -4866,7 +5008,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4874,12 +5016,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4907,19 +5049,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4939,15 +5082,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4960,7 +5103,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4983,33 +5126,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5020,7 +5159,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5029,18 +5168,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5052,19 +5191,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5074,13 +5215,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5088,6 +5237,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5114,28 +5267,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5155,7 +5312,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5177,31 +5334,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5235,31 +5395,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5310,7 +5470,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5318,11 +5478,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5335,7 +5495,7 @@ msgstr "" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5346,11 +5506,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5358,9 +5518,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5372,20 +5532,20 @@ msgstr "" msgid "File Info" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5393,7 +5553,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "" @@ -5427,15 +5587,15 @@ msgstr "" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5447,7 +5607,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5463,31 +5623,32 @@ msgstr "" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5497,13 +5658,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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 "" @@ -5511,7 +5672,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 "" @@ -5543,11 +5704,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5584,17 +5745,17 @@ msgstr "" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5615,7 +5776,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5623,7 +5784,7 @@ msgstr "" msgid "Frame Range" msgstr "" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5647,7 +5808,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5678,7 +5839,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "" @@ -5702,7 +5863,7 @@ msgstr "" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "" @@ -5734,7 +5895,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5850,26 +6011,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5897,8 +6058,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5958,11 +6119,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5970,11 +6131,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5987,11 +6148,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6019,7 +6180,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6029,35 +6190,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "" @@ -6069,18 +6230,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6093,8 +6254,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "" @@ -6133,7 +6294,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6142,7 +6303,7 @@ msgstr "" msgid "Guitar" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6170,36 +6331,35 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6212,7 +6372,11 @@ msgstr "" msgid "Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6228,12 +6392,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6242,14 +6406,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6266,7 +6424,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6290,16 +6448,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "" @@ -6308,7 +6466,7 @@ msgstr "" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6322,16 +6480,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6366,7 +6524,7 @@ msgid "IR" msgstr "" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "" @@ -6399,11 +6557,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6449,11 +6607,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6477,7 +6639,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6486,7 +6648,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6501,15 +6663,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6520,15 +6682,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6537,27 +6690,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6602,15 +6755,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6630,8 +6784,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "" @@ -6645,10 +6799,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "" @@ -6662,18 +6816,24 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 -msgid "Insert &nop" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 -msgid "Insert SD Card" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +msgid "Insert SD Card" msgstr "" #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 @@ -6689,7 +6849,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6697,11 +6857,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6710,7 +6872,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6719,7 +6881,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6736,19 +6898,19 @@ msgstr "" msgid "Interface" msgstr "" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6761,19 +6923,19 @@ msgstr "" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6788,7 +6950,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6796,11 +6958,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6812,7 +6974,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6821,11 +6983,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6854,7 +7016,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6866,19 +7028,19 @@ msgstr "" msgid "Invalid recording file" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6888,7 +7050,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "" @@ -6897,63 +7059,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6965,27 +7127,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "" @@ -6996,13 +7162,13 @@ msgstr "" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7016,7 +7182,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7037,7 +7203,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7045,12 +7211,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "" @@ -7061,7 +7227,7 @@ msgstr "" msgid "L" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7071,7 +7237,7 @@ msgstr "" msgid "L-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7079,35 +7245,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7174,13 +7342,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7194,7 +7362,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7202,11 +7370,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7217,29 +7385,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7260,7 +7435,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7349,19 +7524,19 @@ msgstr "" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7373,16 +7548,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7390,18 +7565,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7421,7 +7596,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7433,7 +7608,7 @@ msgstr "" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7441,7 +7616,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7457,7 +7632,7 @@ msgstr "" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7472,16 +7647,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7489,7 +7664,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7499,7 +7674,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7507,37 +7682,37 @@ msgstr "" msgid "Main Stick" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7554,12 +7729,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7571,7 +7746,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7588,16 +7763,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7609,7 +7784,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7621,7 +7796,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7637,7 +7812,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7645,29 +7820,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7687,36 +7866,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7728,16 +7912,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "" @@ -7774,6 +7958,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7783,10 +7971,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7795,8 +7983,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7805,7 +7993,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7822,25 +8010,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7849,7 +8037,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7906,7 +8094,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7936,7 +8124,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7944,7 +8132,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7952,7 +8140,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7961,7 +8149,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7975,7 +8163,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -7989,7 +8177,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8003,7 +8191,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8011,16 +8199,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "" @@ -8036,15 +8224,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8053,7 +8241,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8065,10 +8253,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8080,11 +8264,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8093,18 +8277,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "" @@ -8164,7 +8348,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8199,10 +8383,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "" @@ -8216,7 +8448,7 @@ msgstr "" msgid "Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8228,14 +8460,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "" @@ -8243,13 +8490,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8257,7 +8504,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "" @@ -8266,11 +8513,11 @@ msgstr "" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8291,7 +8538,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8324,11 +8571,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "" @@ -8341,13 +8588,36 @@ msgstr "" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "" @@ -8360,7 +8630,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8380,16 +8650,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8398,15 +8668,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8414,11 +8684,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8431,11 +8701,11 @@ msgstr "" msgid "Pads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8486,11 +8756,15 @@ msgstr "" msgid "Paths" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8529,7 +8803,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8537,33 +8811,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8579,12 +8853,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "" @@ -8596,7 +8870,7 @@ msgstr "" msgid "Play Recording" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8608,27 +8882,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8637,7 +8911,8 @@ msgstr "" msgid "Players" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8649,23 +8924,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8674,7 +8953,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8695,11 +8974,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8707,11 +8986,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8734,7 +9013,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8749,7 +9028,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8760,7 +9039,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8772,7 +9051,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8806,8 +9085,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8815,11 +9094,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8839,14 +9118,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "" @@ -8867,19 +9146,19 @@ msgstr "" msgid "R-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8892,11 +9171,11 @@ msgstr "" msgid "Range" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8908,7 +9187,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8920,14 +9203,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8948,10 +9231,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8965,7 +9253,7 @@ msgstr "" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9000,7 +9288,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9008,14 +9296,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9023,11 +9311,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9036,8 +9324,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9066,7 +9354,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "" @@ -9083,7 +9371,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9094,8 +9382,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9103,11 +9391,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9123,23 +9411,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9167,6 +9454,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9183,7 +9474,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9200,7 +9491,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9259,7 +9550,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9277,26 +9568,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9312,19 +9629,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9332,7 +9649,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9345,7 +9662,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9353,11 +9670,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9367,11 +9684,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "" @@ -9384,7 +9701,6 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9394,9 +9710,17 @@ msgstr "" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9405,24 +9729,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9434,13 +9758,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" @@ -9484,23 +9808,23 @@ msgstr "" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9508,7 +9832,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9520,26 +9844,26 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9547,7 +9871,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9559,7 +9883,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9571,26 +9895,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9598,17 +9922,17 @@ msgstr "" msgid "Search Subfolders" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9616,11 +9940,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9640,7 +9964,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9648,28 +9972,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9689,15 +10021,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9705,7 +10037,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9764,15 +10096,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9780,11 +10112,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9792,19 +10124,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9812,12 +10144,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "" @@ -9833,7 +10165,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "" @@ -9845,26 +10177,45 @@ msgstr "" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9876,18 +10227,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9901,7 +10263,7 @@ msgstr "" msgid "Send" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "" @@ -9925,16 +10287,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9950,40 +10308,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -9995,20 +10353,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "" @@ -10025,16 +10383,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "" @@ -10042,53 +10400,53 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10100,23 +10458,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10124,19 +10482,19 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10144,32 +10502,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10177,72 +10539,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10250,65 +10612,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10318,34 +10686,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10354,7 +10722,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "" @@ -10371,17 +10739,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10416,24 +10784,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10441,10 +10809,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10454,7 +10818,7 @@ msgstr "" msgid "Slot A" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10462,7 +10826,7 @@ msgstr "" msgid "Slot B" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10470,7 +10834,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10494,12 +10858,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10513,27 +10877,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10554,15 +10918,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10575,25 +10939,28 @@ msgstr "" msgid "Start" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10609,10 +10976,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10622,7 +10989,7 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10634,13 +11001,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10656,7 +11023,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10665,7 +11032,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10695,18 +11062,14 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10739,7 +11102,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "" @@ -10774,8 +11137,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10802,7 +11165,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10814,12 +11177,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10830,11 +11193,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10842,16 +11205,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10861,12 +11224,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10877,7 +11240,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "" @@ -10891,34 +11254,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10944,7 +11294,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10963,24 +11313,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -10990,7 +11340,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -10998,15 +11348,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11014,7 +11364,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11022,6 +11372,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11031,7 +11387,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11043,7 +11399,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11066,7 +11422,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11080,13 +11436,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11097,11 +11453,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11134,6 +11490,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11151,7 +11514,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11171,17 +11534,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11189,7 +11552,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11203,7 +11566,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11219,7 +11582,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11230,7 +11593,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11287,9 +11650,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11303,11 +11666,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11321,8 +11684,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11349,12 +11712,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11388,7 +11751,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11403,11 +11766,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11415,15 +11778,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11446,7 +11809,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11472,14 +11835,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11513,19 +11881,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11640,6 +12008,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11652,11 +12024,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11669,7 +12041,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11677,7 +12049,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11696,6 +12068,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11710,11 +12089,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11722,12 +12101,12 @@ msgstr "" msgid "Threshold" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "" @@ -11741,10 +12120,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "" @@ -11758,7 +12137,7 @@ msgstr "" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11783,7 +12162,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11835,15 +12214,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "" @@ -11851,9 +12234,8 @@ msgstr "" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11890,28 +12272,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11948,26 +12330,26 @@ msgid "Triggers" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11979,7 +12361,7 @@ msgstr "" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -11991,20 +12373,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12012,7 +12394,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12021,7 +12403,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12033,11 +12415,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12057,7 +12439,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12080,15 +12462,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "" @@ -12106,11 +12488,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12121,12 +12503,13 @@ msgstr "" msgid "Unknown" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12150,11 +12533,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12162,7 +12545,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12170,7 +12553,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12190,16 +12573,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12232,22 +12617,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12309,23 +12694,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12337,15 +12722,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12353,7 +12738,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12371,43 +12756,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12439,21 +12799,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12461,31 +12821,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "" @@ -12493,11 +12853,11 @@ msgstr "" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12505,17 +12865,17 @@ msgstr "" msgid "Value:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12531,16 +12891,16 @@ msgstr "" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12554,7 +12914,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12568,12 +12928,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12581,14 +12941,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "" @@ -12608,31 +12968,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12671,12 +13031,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12687,7 +13047,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12709,7 +13069,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "" @@ -12781,7 +13141,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12798,7 +13158,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12806,7 +13166,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12814,7 +13174,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12838,7 +13198,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12846,7 +13206,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12864,7 +13224,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12884,7 +13244,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12892,11 +13252,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12906,11 +13266,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "" @@ -12924,10 +13296,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12969,6 +13345,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12977,11 +13361,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13016,14 +13400,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13120,7 +13504,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13138,15 +13522,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13154,11 +13542,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13177,21 +13565,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13199,31 +13587,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13233,7 +13625,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13243,13 +13635,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13266,16 +13658,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13290,11 +13686,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13329,7 +13725,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13338,8 +13734,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/el.po b/Languages/po/el.po index fec8bafc01b4..d50be8692b72 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -67,8 +67,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -87,19 +87,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -120,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -159,6 +160,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -182,13 +188,13 @@ msgstr "" msgid "%1 has left" msgstr "%1 έχει φύγει" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -204,12 +210,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +232,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -234,26 +240,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -291,20 +297,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -314,23 +320,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Περί" @@ -338,12 +344,12 @@ msgstr "&Περί" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -351,27 +357,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Ρυθμίσεις Ήχου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Αυτόματη Ενημέρωση:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Σημεία Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Ιχνηλάτης Σφαλμάτων" @@ -379,15 +385,15 @@ msgstr "&Ιχνηλάτης Σφαλμάτων" msgid "&Cancel" msgstr "&Ακύρωση" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Έλεγχος για Ενημερώσεις..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -395,19 +401,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Ρυθμίσεις Χειριστηρίων" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -415,7 +426,7 @@ msgstr "" msgid "&Create..." msgstr "&Δημιουργία..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Διαγραφή" @@ -432,9 +443,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -442,23 +453,23 @@ msgstr "" msgid "&Edit..." msgstr "&Επεξεργασία..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Εξαγωγή Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Εξομοίωση" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -466,55 +477,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Αρχείο" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Γραμματοσειρά..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Προώθηση ανά Καρέ" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Ρυθμίσεις Γραφικών" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Βοήθεια" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Ρυθμίσεις Πλήκτρων Συντόμευσης" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -522,19 +531,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -542,15 +551,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Γλώσσα:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Φόρτωση Σημείου Αποθήκευσης" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -560,23 +573,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Μνήμη" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Ταινία" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Δίκτυο" @@ -585,23 +598,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Άνοιγμα..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Ρυθμίσεις" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Παύση" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Αναπαραγωγή" @@ -609,15 +622,15 @@ msgstr "&Αναπαραγωγή" msgid "&Properties" msgstr "&Ιδιότητες" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Μόνο Για Ανάγνωση" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Καταχωρητές" @@ -625,41 +638,45 @@ msgstr "&Καταχωρητές" msgid "&Remove" msgstr "&Αφαίρεση" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Επανεκκίνηση" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Όριο Ταχύτητας:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Διακοπή" @@ -667,15 +684,19 @@ msgstr "&Διακοπή" msgid "&Theme:" msgstr "&Θέμα:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Εργαλεία" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -685,17 +706,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Ιστοσελίδα" @@ -707,11 +728,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ναι" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -727,7 +748,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -735,7 +756,7 @@ msgstr "" msgid "(off)" msgstr "(ανενεργό)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -755,15 +776,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -774,12 +795,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -791,7 +812,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -799,11 +820,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -815,17 +836,17 @@ msgstr "16 Mbit (251 blocks)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -837,11 +858,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -853,7 +874,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -865,25 +886,25 @@ msgstr "" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -897,11 +918,11 @@ msgstr "3D Βάθος" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -909,7 +930,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -925,7 +946,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -937,22 +958,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -960,11 +981,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -976,13 +997,13 @@ msgstr "8 Mbit (123 blocks)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -998,7 +1019,7 @@ msgstr "" msgid "< Less-than" msgstr "< Λιγότερο-από" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "<Τίποτα>" @@ -1010,11 +1031,11 @@ msgstr "<Γλώσσα Συστήματος>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1047,12 +1068,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Περισσότερο-από" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1062,7 +1083,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1072,11 +1093,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1092,6 +1113,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1113,7 +1138,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Κωδικός AR" @@ -1122,8 +1147,8 @@ msgstr "Κωδικός AR" msgid "AR Codes" msgstr "Κωδικοί AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1137,7 +1162,7 @@ msgid "About Dolphin" msgstr "Σχετικά με το Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Επιταχυνσιόμετρο" @@ -1156,7 +1181,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1242,19 +1267,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Ενεργά νήματα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1262,7 +1287,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Προσαρμογέας Εντοπίστηκε" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Προσαρμογέας:" @@ -1272,7 +1297,7 @@ msgstr "Προσαρμογέας:" msgid "Add" msgstr "Προσθήκη" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1301,51 +1326,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Προσθήκη..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Διεύθυνση" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1406,12 +1428,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Για προχωρημένους" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1426,15 +1448,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1444,16 +1466,16 @@ msgstr "Αφρική" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1467,11 +1489,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1479,7 +1501,7 @@ msgid "All Files" msgstr "Όλα τα Αρχεία" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Όλα τα Αρχεία (*)" @@ -1488,7 +1510,7 @@ msgstr "Όλα τα Αρχεία (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Όλα τα GC/Wii αρχεία" @@ -1497,8 +1519,8 @@ msgstr "Όλα τα GC/Wii αρχεία" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1510,7 +1532,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1522,15 +1544,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Να Επιτρέπονται Ασύμφωνες Ρυθμίσεις Περιοχών" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Άδεια Μετάδοσης Στατιστικών Χρήσης " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1558,7 +1580,7 @@ msgstr "Πάντοτε" msgid "Always Connected" msgstr "Πάντα Συνδεδεμένο" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1596,15 +1618,15 @@ msgstr "Εξομάλυνση Ορίων:" msgid "Any Region" msgstr "Οποιαδήποτε Περιοχή" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1622,7 +1644,7 @@ msgstr "Apploader Ημερομηνία:" msgid "Apply" msgstr "Εφαρμογή" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1654,12 +1676,16 @@ msgstr "Είστε σίγουροι;" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Αναλογία Οθόνης" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Αναλογία Οθόνης:" @@ -1667,7 +1693,7 @@ msgstr "Αναλογία Οθόνης:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1675,7 +1701,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1692,7 +1718,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Σύνδεση MotionPlus" @@ -1700,11 +1726,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 "Ρυθμίσεις Ελαστικότητας Ήχου" @@ -1716,12 +1742,12 @@ msgstr "Αυστραλία" msgid "Author" msgstr "Συγγραφέας" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Συγγραφείς" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Αυτόματα" @@ -1729,11 +1755,7 @@ msgstr "Αυτόματα" msgid "Auto (Multiple of 640x528)" msgstr "Αυτόματα (Πολλαπλάσιο του 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Ρυθμίσεις Αυτόματης Ενημέρωσης" @@ -1745,7 +1767,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρου" @@ -1753,32 +1775,32 @@ msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρο msgid "Auto-Hide" msgstr "Αυτόματη Απόκρυψη" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1786,38 +1808,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT εσφαλμένο. Το Dolphin τώρα θα τερματιστεί" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP Καταχωρητές" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1833,13 +1859,13 @@ msgstr "Χειρισμός με Ανεστίαστο Παραθ." msgid "Backward" msgstr "Πίσω" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1847,20 +1873,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Εικονίδιο" @@ -1880,15 +1906,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Βασικές" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Βασικές Ρυθμίσεις" @@ -1896,15 +1922,15 @@ msgstr "Βασικές Ρυθμίσεις" msgid "Bass" msgstr "Μπάσο" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Μπαταρία" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (μια φορά τον μήνα)" @@ -1928,31 +1954,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1961,7 +1989,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1988,32 +2016,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Πλήρης Οθόνη Χωρίς Περιθώρια " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Βάση" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2051,11 +2190,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2065,11 +2204,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Μέγεθος Buffer:" @@ -2101,7 +2240,7 @@ msgstr "Κουμπί" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2117,7 +2256,7 @@ msgstr "Κουμπί" msgid "Buttons" msgstr "Κουμπιά" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2127,11 +2266,11 @@ msgstr "" msgid "C Stick" msgstr "Stick Κάμερας " -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP Καταχωρητές" @@ -2143,7 +2282,7 @@ msgstr "Μηχανή Εξομοίωσης CPU:" msgid "CPU Options" msgstr "Ρυθμίσεις CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2151,14 +2290,14 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (πιο αργή)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Υπολογισμός" @@ -2170,11 +2309,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2182,19 +2321,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2203,64 +2342,76 @@ msgid "Camera 1" msgstr "Κάμερα 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Άκυρο" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Δεν μπορεί να βρεθεί το GC IPL." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2268,19 +2419,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Δεν μπορεί να ξεκινήσει το παιχνίδι, γιατί το GC IPL δεν βρέθηκε." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2298,7 +2451,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2306,7 +2459,7 @@ msgstr "" msgid "Change &Disc" msgstr "Αλλαγή &Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Αλλαγή &Δίσκου..." @@ -2314,7 +2467,7 @@ msgstr "Αλλαγή &Δίσκου..." msgid "Change Disc" msgstr "Αλλαγή Δίσκου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Αυτόματη Αλλαγή Δίσκων" @@ -2322,7 +2475,7 @@ msgstr "Αυτόματη Αλλαγή Δίσκων" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2348,7 +2501,7 @@ msgstr "Η αλλαγή cheats θα τεθεί σε ισχύ μόνο όταν msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2360,15 +2513,15 @@ msgstr "Συνομιλία" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Αναζήτηση Cheat" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Έλεγχος NAND..." @@ -2376,7 +2529,7 @@ msgstr "Έλεγχος NAND..." msgid "Check for Game List Changes in the Background" msgstr "Έλεγχος Αλλαγών στην Λίστα Παιχνιδιών στο Παρασκήνιο" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Έλεγχος για ενημερώσεις" @@ -2394,27 +2547,27 @@ msgstr "" msgid "China" msgstr "Κίνα" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Επιλέξτε ένα αρχείο για άνοιγμα" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2441,15 +2594,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Καθάρισ." -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2457,7 +2614,7 @@ msgstr "" msgid "Clock Override" msgstr "Παράκαμψη Ρολογιού" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2466,36 +2623,20 @@ msgstr "" msgid "Close" msgstr "Κλείσιμο" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ρυ&θμίσεις" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Κώδικας" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2522,7 +2663,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2549,7 +2694,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2557,9 +2702,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Συμπίεση" @@ -2572,10 +2717,16 @@ msgstr "Επίπεδο Συμπίεσης:" msgid "Compression:" msgstr "Συμπίεση:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2648,7 +2799,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Ρυθμίσεις" @@ -2681,13 +2832,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Επιβεβαίωση" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Επιβεβαίωση αλλαγής backend " @@ -2695,7 +2846,7 @@ msgstr "Επιβεβαίωση αλλαγής backend " msgid "Confirm on Stop" msgstr "Επιβεβαίωση Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2706,15 +2857,15 @@ msgstr "Επιβεβαίωση" msgid "Connect" msgstr "Σύνδεση" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Σύνδεση Σανίδας Ισορροπίας" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Σύνδεση Πληκτρολογίου USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Σύνδεση Wii Remote %1" @@ -2734,7 +2885,7 @@ msgstr "Σύνδεση Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Σύνδεση Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Σύνδεση Wii Remotes" @@ -2775,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "Stick Ελέγχου " -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2799,7 +2950,7 @@ msgstr "" msgid "Controller Settings" msgstr "Ρυθμίσεις Χειριστηρίων" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Χειριστήρια" @@ -2862,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "Σύγκλιση:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2871,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "Μετατροπή" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2881,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "Μετατροπή Αρχείου..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2903,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Μετατροπή..." @@ -2942,15 +3093,15 @@ msgstr "" msgid "Copy" msgstr "Αντιγραφή" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2958,19 +3109,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2988,6 +3139,11 @@ msgstr "" msgid "Core" msgstr "Πυρήνας" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2997,7 +3153,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3070,7 +3226,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3107,13 +3263,13 @@ msgstr "Αδυναμία ανάγνωσης αρχείου." msgid "Country:" msgstr "Χώρα:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3122,15 +3278,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "Δημιουργία Νέας Κάρτας Μνήμης" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3139,17 +3291,8 @@ msgstr "" msgid "Create..." msgstr "Δημιουργία..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Δημιουργός:" @@ -3157,11 +3300,11 @@ msgstr "Δημιουργός:" msgid "Critical" msgstr "Κρίσιμο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Κόψιμο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3173,26 +3316,26 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Τρέχουσα Περιοχή" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3200,27 +3343,31 @@ msgstr "" msgid "Current game" msgstr "Τρέχων παιχνίδι" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Τρέχων νήμα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3232,13 +3379,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3263,7 +3410,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" @@ -3271,15 +3418,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 "" @@ -3301,7 +3448,7 @@ msgstr "Χαλάκι Χορού" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3317,7 +3464,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3350,8 +3497,8 @@ msgstr "Νεκρή Ζώνη" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Debugging" @@ -3360,7 +3507,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Δεκαδικός" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Ποιότητα Αποκωδικοποίησης:" @@ -3407,7 +3554,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 "Προεπιλεγμένη Συσκευή" @@ -3419,11 +3566,11 @@ msgstr "" msgid "Default ISO:" msgstr "Προεπιλεγμένο ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3431,7 +3578,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3471,26 +3618,53 @@ msgstr "" msgid "Depth:" msgstr "Βάθος:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Περιγραφή" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Περιγραφή:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3498,7 +3672,7 @@ msgstr "" msgid "Detect" msgstr "Ανίχνευση" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3506,7 +3680,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (πολλαπλές φορές την ημέρα)" @@ -3515,7 +3689,7 @@ msgid "Device" msgstr "Συσκευή" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3524,11 +3698,11 @@ msgid "Device Settings" msgstr "Ρυθμίσεις Συσκευής" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Συσκευή:" @@ -3536,11 +3710,7 @@ msgstr "Συσκευή:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" "Σκοτεινιάζει την οθόνη μετά από έλλειψη δραστηριότητας για πέντε λεπτά." @@ -3553,12 +3723,12 @@ msgstr "" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3570,7 +3740,7 @@ msgstr "Απενεργοποίηση Bounding Box" msgid "Disable Copy Filter" msgstr "Απενεργοποίηση Φίλτρου Αντιγραφής " -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" @@ -3578,11 +3748,11 @@ msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" msgid "Disable Emulation Speed Limit" msgstr "Απενεργοποίηση Ορίου Ταχύτητας Εξομοίωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3590,11 +3760,11 @@ msgstr "" msgid "Disable Fog" msgstr "Απενεργοποίηση Ομίχλης" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Απενεργοποίηση JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3609,7 +3779,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3960,15 +4126,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Ολλανδικά" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "Έ&ξοδος" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3994,7 +4160,7 @@ msgstr "Ενημερώσεις Μνήμης Νωρίς" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4007,7 +4173,7 @@ msgstr "Ανατολική Ασία" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4023,15 +4189,15 @@ msgstr "Εφέ" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4041,7 +4207,7 @@ msgstr "Εξαγωγή Δίσκου" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4049,11 +4215,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Κενή" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Το νήμα εξομοίωσης εκτελείται ήδη" @@ -4061,11 +4227,11 @@ msgstr "Το νήμα εξομοίωσης εκτελείται ήδη" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4079,7 +4245,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4099,28 +4265,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Ταχύτητα Εξομοίωσης" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4132,11 +4286,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Ενεργοποίηση Ελαστικότητας Ήχου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Ενεργοποίηση Cheat" @@ -4156,7 +4310,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Ενεργοποίηση Διπλού Πυρήνα" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Ενεργοποίηση Διπλού Πυρήνα (επιτάχυνση)" @@ -4176,7 +4330,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Ενεργοποίηση FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4202,6 +4356,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4215,7 +4373,7 @@ msgstr "Ενεργοποίηση MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Ενεργοποίηση Προοδευτικής Σάρωσης" @@ -4228,11 +4386,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Ενεργοποίηση Δόνησης" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ενεργοποίηση Προφύλαξης Οθόνης" @@ -4244,15 +4402,15 @@ msgstr "Ενεργοποίηση Δεδομένων Ηχείου" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ενεργοποίηση Wireframe" @@ -4322,7 +4480,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4355,7 +4513,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4363,7 +4521,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4380,7 +4538,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 "" @@ -4408,7 +4566,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4416,7 +4574,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4424,7 +4582,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4449,7 +4607,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Αγγλικά" @@ -4458,7 +4616,7 @@ msgstr "Αγγλικά" msgid "Enhancements" msgstr "Βελτιώσεις" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4480,11 +4638,17 @@ msgstr "" msgid "Enter password" msgstr "Εισαγωγή κωδικού" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4493,8 +4657,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4505,45 +4669,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4553,16 +4723,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Σφάλμα" @@ -4579,9 +4749,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4595,7 +4765,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4661,13 +4831,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4686,40 +4856,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Ευρώπη" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4727,7 +4869,7 @@ msgstr "" msgid "Exit" msgstr "Έξοδος" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4735,7 +4877,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4747,15 +4889,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4763,11 +4905,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Πειραματικός" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Εξαγωγή Όλων Των Αποθηκεύσεων Wii" @@ -4782,7 +4924,7 @@ msgstr "Η Εξαγωγή Απέτυχε" msgid "Export Recording" msgstr "Εξαγωγή Εγγραφής" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Εξαγωγή Εγγραφής..." @@ -4810,14 +4952,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Επέκταση" @@ -4838,7 +4980,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4871,12 +5013,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Αναπαραγωγή FIFO" @@ -4894,7 +5036,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4902,12 +5044,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4935,19 +5077,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4967,15 +5110,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Αποτυχία μεταφόρτωσης κωδικών." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4988,7 +5131,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5011,33 +5154,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5048,7 +5187,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5057,18 +5196,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5080,19 +5219,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5102,13 +5243,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5116,6 +5265,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5142,28 +5295,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5183,7 +5340,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5205,31 +5362,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5263,31 +5423,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5338,7 +5498,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Αποτυχία" @@ -5346,11 +5506,11 @@ msgstr "Αποτυχία" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5363,7 +5523,7 @@ msgstr "Γρήγορη" msgid "Fast Depth Calculation" msgstr "Γρήγορος Υπολογισμός Βάθους" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5374,11 +5534,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5386,9 +5546,9 @@ msgstr "" msgid "File Details" msgstr "Πληροφορίες Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5400,20 +5560,20 @@ msgstr "" msgid "File Info" msgstr "Πληροφορίες Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Όνομα Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Διαδρομή Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Μέγεθος Αρχείου" @@ -5421,7 +5581,7 @@ msgstr "Μέγεθος Αρχείου" msgid "File Size:" msgstr "Μέγεθος Αρχείου:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Το αρχείο δεν περιείχε κωδικούς." @@ -5455,15 +5615,15 @@ msgstr "Αρχεία δίσκου" msgid "Filters" msgstr "Φίλτρα" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5475,7 +5635,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5491,31 +5651,32 @@ msgstr "Επιδιόρθωση Checksum" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5525,13 +5686,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5539,7 +5700,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" @@ -5571,11 +5732,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5612,17 +5773,17 @@ msgstr "Μπροστά" msgid "Forward port (UPnP)" msgstr "Προώθηση θύρας (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5643,7 +5804,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5651,7 +5812,7 @@ msgstr "" msgid "Frame Range" msgstr "Εύρος Καρέ" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5675,7 +5836,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5706,7 +5867,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Γαλλικά" @@ -5730,7 +5891,7 @@ msgstr "Από" msgid "From:" msgstr "Από:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Πλήρης Οθόνη" @@ -5762,7 +5923,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5878,26 +6039,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Παιχνίδι" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Carts (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5925,8 +6086,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID Παιχνιδιού" @@ -5986,11 +6147,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5998,11 +6159,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube Χειριστήρια" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6015,11 +6176,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6047,7 +6208,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Κωδικοί Gecko" @@ -6057,35 +6218,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Γενικά" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Γερμανικά" @@ -6097,18 +6258,18 @@ msgstr "Γερμανία" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6121,8 +6282,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Γραφικά" @@ -6161,7 +6322,7 @@ msgstr "Αριστερό Πράσινο" msgid "Green Right" msgstr "Δεξί Πράσινο" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Προβολή Πλέγματος" @@ -6170,7 +6331,7 @@ msgstr "Προβολή Πλέγματος" msgid "Guitar" msgstr "Κιθάρα" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6198,36 +6359,35 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6240,7 +6400,11 @@ msgstr "" msgid "Hide" msgstr "Απόκρυψη" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6256,12 +6420,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "Μέγιστη" @@ -6270,14 +6434,8 @@ msgstr "Μέγιστη" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6294,7 +6452,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6318,16 +6476,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Πλήκτρα Συντόμευσης" @@ -6336,7 +6494,7 @@ msgstr "Πλήκτρα Συντόμευσης" msgid "Hotkeys Require Window Focus" msgstr "Τα Πλήκτρα Συντόμευσης Απαιτούν Εστίαση Παραθύρου" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6350,16 +6508,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6394,7 +6552,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Ευαισθησία IR:" @@ -6427,11 +6585,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6477,11 +6635,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Αγνόηση Αλλαγών Format" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6505,7 +6667,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6514,7 +6676,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6529,15 +6691,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6548,15 +6710,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6565,27 +6718,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6630,15 +6783,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6658,8 +6812,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Πληροφορίες" @@ -6673,10 +6827,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Είσοδος" @@ -6690,20 +6844,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Εισαγωγή Κάρτας SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6717,7 +6877,7 @@ msgstr "" msgid "Install Update" msgstr "Εγκατάσταση Ενημέρωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Εγκατάσταση WAD..." @@ -6725,11 +6885,13 @@ msgstr "Εγκατάσταση WAD..." msgid "Install to the NAND" msgstr "Εγκατάσταση στην NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6738,7 +6900,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6747,7 +6909,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6764,19 +6926,19 @@ msgstr "" msgid "Interface" msgstr "Διεπαφή" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6789,19 +6951,19 @@ msgstr "Εσωτερικό Σφάλμα LZO - αποτυχία συμπίεση msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6816,7 +6978,7 @@ msgstr "Εσωτερική Ανάλυση" msgid "Internal Resolution:" msgstr "Εσωτερική Ανάλυση:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6824,11 +6986,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (πιο αργή απ' όλες)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6840,7 +7002,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6849,11 +7011,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6882,7 +7044,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6894,19 +7056,19 @@ msgstr "" msgid "Invalid recording file" msgstr "Μη έγκυρο αρχείο εγγραφής" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Μη έγκυρες παράμετροι αναζήτησης (δεν επιλέχθηκε αντικείμενο)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Μη έγκυρο string αναζήτησης (δεν μπορεί να γίνει μετατροπή σε νούμερο)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Μη έγκυρο string αναζήτησης (μόνο ζυγά μήκη string υποστηρίζονται)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6916,7 +7078,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Ιταλικά" @@ -6925,63 +7087,63 @@ msgid "Italy" msgstr "Ιταλία" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6993,27 +7155,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Ιαπωνία" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Ιαπωνικά" @@ -7024,13 +7190,13 @@ msgstr "Ιαπωνικά" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7044,7 +7210,7 @@ msgstr "Διατήρηση Παραθύρου στην Κορυφή" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7065,7 +7231,7 @@ msgstr "" msgid "Keys" msgstr "Πλήκτρα" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7073,12 +7239,12 @@ msgstr "" msgid "Kick Player" msgstr "Διώξιμο Παίκτη" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Κορέα" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Κορεάτικα" @@ -7089,7 +7255,7 @@ msgstr "Κορεάτικα" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7099,7 +7265,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Αναλογική" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7107,35 +7273,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7205,13 +7373,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Άδεια" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7225,7 +7393,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7233,11 +7401,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Λίστα Στηλών" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Προβολή Λίστας" @@ -7248,29 +7416,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Φόρτωσ." -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Φόρτωση Τροποποιημένων Υφών" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Φόρτωση Κυρίως Μενού GameCube" @@ -7291,7 +7466,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7380,19 +7555,19 @@ msgstr "Φόρτωση Σημείου Αποθήκευσης 8" msgid "Load State Slot 9" msgstr "Φόρτωση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7404,16 +7579,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7421,18 +7596,18 @@ msgstr "" msgid "Load..." msgstr "Φόρτωση..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7452,7 +7627,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Καταγραφή" @@ -7464,7 +7639,7 @@ msgstr "Ρυθμίσεις Καταγραφής" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7472,7 +7647,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Καταγραφή σε Αρχείο Χρόνου Απόδοσης" @@ -7488,7 +7663,7 @@ msgstr "Έξοδοι Καταγραφής" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7503,16 +7678,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "Ελάχιστη" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7520,7 +7695,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7530,7 +7705,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7538,37 +7713,37 @@ msgstr "" msgid "Main Stick" msgstr "Κύριο Stick" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Δημιουργός" @@ -7585,12 +7760,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Διαχείριση NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7602,7 +7777,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7619,18 +7794,18 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Μνήμη" @@ -7642,7 +7817,7 @@ msgstr "" msgid "Memory Card" msgstr "Κάρτα Μνήμης" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Διαχειριστής Καρτών Μνήμης" @@ -7654,7 +7829,7 @@ msgstr "" msgid "Memory Override" msgstr "Παράκαμψη Μνήμης" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7670,7 +7845,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7678,29 +7853,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Μικρόφωνο" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Διάφορα" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Διάφορες Ρυθμίσεις" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7720,36 +7899,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7761,16 +7945,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Μοτέρ" @@ -7807,6 +7991,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7816,10 +8004,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Έλεγχος NAND " @@ -7828,8 +8016,8 @@ msgstr "Έλεγχος NAND " msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -7838,7 +8026,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7855,25 +8043,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Όνομα" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7882,7 +8070,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7939,7 +8127,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7969,7 +8157,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Νέα Αναζήτηση" @@ -7977,7 +8165,7 @@ msgstr "Νέα Αναζήτηση" msgid "New Tag..." msgstr "Νέα Ετικέτα..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7985,7 +8173,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7994,7 +8182,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8008,7 +8196,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Ψευδώνυμο:" @@ -8022,7 +8210,7 @@ msgstr "Όχι" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8036,7 +8224,7 @@ msgstr "Καμία Έξοδος Ήχου" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8044,16 +8232,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Μη διαθέσιμη περιγραφή" @@ -8069,15 +8257,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8086,7 +8274,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Δεν εντοπίστηκαν προβλήματα." @@ -8098,10 +8286,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Δεν βρέθηκαν προβλήματα." @@ -8113,11 +8297,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8126,18 +8310,18 @@ msgstr "" msgid "No save data found." msgstr "Δεν βρέθηκαν δεδομένα αποθήκευσης." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Καμία" @@ -8197,7 +8381,7 @@ msgid "Null" msgstr "Κανένα" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8232,10 +8416,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Εύρος Αντικειμένου" @@ -8249,7 +8481,7 @@ msgstr "Ωκεανία" msgid "Off" msgstr "Ανενεργός" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8261,14 +8493,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online &Εγχειρίδια " @@ -8276,13 +8523,13 @@ msgstr "Online &Εγχειρίδια " msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8290,7 +8537,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Άνοιγμα" @@ -8299,11 +8546,11 @@ msgstr "Άνοιγμα" msgid "Open &Containing Folder" msgstr "Άνοιγμα &Περιεχόμενου Φακέλου" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8324,7 +8571,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "Άνοιγμα Wii &Φακέλου Αποθήκευσης" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8357,11 +8604,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Ρυθμίσεις" @@ -8374,13 +8621,36 @@ msgstr "Πορτοκαλί" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Άλλα" @@ -8393,7 +8663,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8413,16 +8683,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Α&ναπαραγωγή Εγγραφής Χειρισμών..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8431,15 +8701,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8447,11 +8717,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8464,11 +8734,11 @@ msgstr "Χειριστήριο" msgid "Pads" msgstr "Χειριστήρια" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8519,11 +8789,15 @@ msgstr "" msgid "Paths" msgstr "Φάκελοι" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Παύση" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Παύση στο Τέλος της Ταινίας" @@ -8562,7 +8836,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Φωτισμός ανά Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστήματος" @@ -8570,33 +8844,33 @@ msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστή msgid "Perform System Update" msgstr "Εκτέλεση Ενημέρωσης Συστήματος" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8612,12 +8886,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Πλατφόρμα" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Αναπαραγωγή" @@ -8629,7 +8903,7 @@ msgstr "" msgid "Play Recording" msgstr "Αναπαραγωγή Εγγραφής" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8641,27 +8915,27 @@ msgstr "Ρυθμίσεις Αναπαραγωγής" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8670,7 +8944,8 @@ msgstr "" msgid "Players" msgstr "Παίχτες" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8682,23 +8957,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8707,7 +8986,7 @@ msgstr "" msgid "Port:" msgstr "Θύρα:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8728,11 +9007,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Προφόρτωση Τροποποιημένων Υφών" @@ -8740,11 +9019,11 @@ msgstr "Προφόρτωση Τροποποιημένων Υφών" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8767,7 +9046,7 @@ msgstr "" msgid "Pressure" msgstr "Πίεση" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8782,7 +9061,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8793,7 +9072,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8805,7 +9084,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Πρόβλημα" @@ -8839,8 +9118,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8848,11 +9127,11 @@ msgstr "" msgid "Public" msgstr "Δημόσιος" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Εκκαθάριση Μνήμης Cache Λίστας Παιχνιδιών " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8872,14 +9151,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Ερώτηση" @@ -8900,19 +9179,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Αναλογική" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8925,11 +9204,11 @@ msgstr "" msgid "Range" msgstr "Εύρος" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8941,7 +9220,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8953,14 +9236,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8981,10 +9264,15 @@ msgstr "Πραγματική Σανίδα Ισορροπίας" msgid "Real Wii Remote" msgstr "Πραγματικό Wii Remote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8998,7 +9286,7 @@ msgstr "Εγγραφή" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9033,7 +9321,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org Κατάσταση:" @@ -9041,14 +9329,14 @@ msgstr "Redump.org Κατάσταση:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Ανανέωση" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9056,11 +9344,11 @@ msgstr "" msgid "Refresh Game List" msgstr "Ανανέωση Λίστας Παιχνιδιών" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9069,8 +9357,8 @@ msgstr "" msgid "Refreshing..." msgstr "Ανανέωση..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Περιοχή" @@ -9099,7 +9387,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Αφαίρεση" @@ -9116,7 +9404,7 @@ msgstr "" msgid "Remove Tag..." msgstr "Αφαίρεση Ετικέτας..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9127,8 +9415,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9136,11 +9424,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Αναπαραγωγή στο Κεντρικό Παράθυρο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9156,23 +9444,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Επανεκκίνηση" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9200,6 +9487,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9216,7 +9507,7 @@ msgstr "Απαιτείται Επανεκκίνηση" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9233,7 +9524,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9292,7 +9583,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9310,26 +9601,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Δόνηση" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9345,19 +9662,19 @@ msgstr "Ρωσία" msgid "SD Card" msgstr "SD Κάρτα" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9365,7 +9682,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9378,7 +9695,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9386,11 +9703,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9400,11 +9717,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Απ&οθήκευση Σημείου Αποθήκευσης" @@ -9417,7 +9734,6 @@ msgstr "Ασφαλής" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9427,9 +9743,17 @@ msgstr "Αποθήκ." msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9438,24 +9762,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9467,13 +9791,13 @@ msgstr "Αποθήκευση Παλαιότερου Σημείου" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Αποθήκευση Σημείου" @@ -9517,23 +9841,23 @@ msgstr "Αποθήκευση Σημείου Αποθήκευσης 8" msgid "Save State Slot 9" msgstr "Αποθήκευση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9541,7 +9865,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9553,26 +9877,26 @@ msgstr "" msgid "Save as..." msgstr "Αποθήκευση ως..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9580,7 +9904,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9592,7 +9916,7 @@ msgstr "Αποθήκευση..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9604,26 +9928,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Κλιμακούμενα EFB Αντίγραφα" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Στιγμιότυπο" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Αναζήτηση" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9631,17 +9955,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Αναζήτηση σε Υποφακέλους" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9649,11 +9973,11 @@ msgstr "" msgid "Search games..." msgstr "Αναζήτηση παιχνιδιών..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9673,7 +9997,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9681,28 +10005,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9722,15 +10054,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Επιλογή Θέσης %1 - %2" @@ -9738,7 +10070,7 @@ msgstr "Επιλογή Θέσης %1 - %2" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Επιλογή Θέσης Αποθήκευσης" @@ -9797,15 +10129,15 @@ msgstr "Επιλέξτε ένα Φάκελο" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Επιλέξτε ένα Αρχείο" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9813,11 +10145,11 @@ msgstr "" msgid "Select a Game" msgstr "Επιλέξτε ένα Παιχνίδι" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9825,19 +10157,19 @@ msgstr "" msgid "Select a game" msgstr "Επιλέξτε ένα παιχνίδι" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Επιλέξτε ένα αρχείο για εγκατάσταση στην NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9845,12 +10177,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Επιλέξτε αρχείο αποθήκευσης" @@ -9866,7 +10198,7 @@ msgstr "" msgid "Selected Font" msgstr "Επιλεγμένη Γραμματοσειρά" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Το επιλεγμένο προφίλ χειρισμού δεν υπάρχει" @@ -9878,26 +10210,45 @@ msgstr "Το επιλεγμένο προφίλ χειρισμού δεν υπά msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9909,18 +10260,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9934,7 +10296,7 @@ msgstr "" msgid "Send" msgstr "Αποστολή" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Θέση Sensor Bar:" @@ -9958,16 +10320,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9983,23 +10341,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10009,17 +10367,17 @@ msgstr "" "(576i) για τα PAL παιχνίδια.\n" "Μπορεί να μην λειτουργεί για όλα τα παιχνίδια." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Ορίζει την γλώσσα συστήματος του Wii." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10031,20 +10389,20 @@ msgstr "" msgid "Settings" msgstr "Ρυθμίσεις" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Αδυναμία δημιουργίας αρχείου setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Σοβαρότητα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Κούνημα" @@ -10061,16 +10419,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Εμφάνιση Παραθύρου Κατα&γραφής " -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Εμφάνιση Γραμμής &Εργαλείων" @@ -10078,53 +10436,53 @@ msgstr "Εμφάνιση Γραμμής &Εργαλείων" msgid "Show Active Title in Window Title" msgstr "Εμφάνιση Ενεργού Τίτλου στον Τίτλο Παραθύρου" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Εμφάνιση Αυστραλίας" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Εμφάνιση Τρέχοντος Παιχνιδιού σε Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Εμφάνιση ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Εμφάνιση FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Εμφάνιση Μετρητή Καρέ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Εμφάνιση Γαλλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Εμφάνιση GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Εμφάνιση Γερμανίας" @@ -10136,23 +10494,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Εμφάνιση Προβολής Χειρισμών" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Εμφάνιση Ιταλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Εμφάνιση Κορέας" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Εμφάνιση Μετρητή Καθυστέρησης " @@ -10160,19 +10518,19 @@ msgstr "Εμφάνιση Μετρητή Καθυστέρησης " msgid "Show Language:" msgstr "Εμφάνιση Γλώσσας:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Εμφάνιση Ρυθμίσεων &Καταγραφέα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Εμφάνιση Μηνυμάτων NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Εμφάνιση NetPlay Ping" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Εμφάνιση Ολλανδίας" @@ -10180,32 +10538,36 @@ msgstr "Εμφάνιση Ολλανδίας" msgid "Show On-Screen Display Messages" msgstr "Εμφάνιση Μηνυμάτων στην Οθόνη " -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Εμφάνιση Πλατφόρμας" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Εμφάνιση Περιοχών" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Εμφάνιση Ρωσίας" @@ -10213,72 +10575,72 @@ msgstr "Εμφάνιση Ρωσίας" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Εμφάνιση Ισπανίας" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Εμφάνιση Στατιστικών" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Εμφάνιση Ώρας Συστήματος" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Εμφάνιση Ταϊβάν" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Εμφάνιση USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Εμφάνιση Αγνώστων" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Εμφάνιση WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Εμφάνιση Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Εμφάνιση Κόσμου" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10286,65 +10648,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10354,34 +10722,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Δίπλα - Δίπλα" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Πλαγιαστό Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10390,7 +10758,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Κινέζικα Απλοποιημένα" @@ -10407,17 +10775,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Παράλειψη" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10452,24 +10820,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10477,10 +10845,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10490,7 +10854,7 @@ msgstr "" msgid "Slot A" msgstr "Θέση Α" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Θέση Α:" @@ -10498,7 +10862,7 @@ msgstr "Θέση Α:" msgid "Slot B" msgstr "Θέση Β" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Θέση Β:" @@ -10506,7 +10870,7 @@ msgstr "Θέση Β:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10530,12 +10894,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10549,27 +10913,27 @@ msgstr "Ισπανία" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Ισπανικά" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Ένταση Ηχείου:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10590,15 +10954,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10611,25 +10975,28 @@ msgstr "Τυπικός Controller" msgid "Start" msgstr "Εκκίνηση" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Έναρξη &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Εκκίνηση Ε&γγραφής Χειρισμών" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Εκκίνηση Εγγραφής" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10645,10 +11012,10 @@ msgstr "" msgid "Started game" msgstr "Εκκίνηση παιχνιδιού" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10658,7 +11025,7 @@ msgstr "Τιμόνι" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10670,13 +11037,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10692,7 +11059,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10701,7 +11068,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10731,18 +11098,14 @@ msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Διακοπή" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Διακοπή παιχνιδιού" @@ -10775,7 +11138,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Προσαρμογή στο Παράθυρο" @@ -10810,8 +11173,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Επιτυχία" @@ -10838,7 +11201,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10850,12 +11213,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10866,11 +11229,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Υποστήριξη" @@ -10878,16 +11241,16 @@ msgstr "Υποστήριξη" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10897,12 +11260,12 @@ msgstr "Εναλλαγή Ματιών" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10913,7 +11276,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Swing" @@ -10927,34 +11290,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10980,7 +11330,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10999,24 +11349,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Γλώσσα Συστήματος:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Ετικέτες" @@ -11026,7 +11376,7 @@ msgstr "Ετικέτες" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11034,15 +11384,15 @@ msgstr "" msgid "Taiwan" msgstr "Ταϊβάν" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Δημιουργία Στιγμιότυπου" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11050,7 +11400,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11058,6 +11408,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11067,7 +11423,7 @@ msgstr "Cache Υφών" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11079,7 +11435,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Επικάλυψη Του Format Υφών" @@ -11102,7 +11458,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11116,13 +11472,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11133,11 +11489,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11170,6 +11526,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11187,7 +11550,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11207,17 +11570,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11225,7 +11588,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11239,7 +11602,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11255,7 +11618,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11266,7 +11629,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11323,9 +11686,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11339,11 +11702,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11357,8 +11720,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11386,12 +11749,12 @@ msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "" "Το αποτέλεσμα αποκρυπτογράφησης του κωδικού AR δεν περιέχει καθόλου γραμμές." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11425,7 +11788,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11440,11 +11803,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11452,15 +11815,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11483,7 +11846,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11509,14 +11872,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Δεν υπάρχει τίποτα προς αναίρεση!" @@ -11553,19 +11921,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11682,6 +12050,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11694,13 +12066,13 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Αυτό το λογισμικό δεν πρέπει να χρησιμοποιείται για το παίξιμο παιχνιδιών " "που δεν κατέχονται νόμιμα." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11713,7 +12085,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11721,7 +12093,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11740,6 +12112,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11754,11 +12133,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11766,12 +12145,12 @@ msgstr "" msgid "Threshold" msgstr "Κατώφλι" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Πλάγιασμα" @@ -11785,10 +12164,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Τίτλος" @@ -11802,7 +12181,7 @@ msgstr "Εώς" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Εναλλαγή &Πλήρους Οθόνης" @@ -11827,7 +12206,7 @@ msgid "Toggle Aspect Ratio" msgstr "Εναλλαγή Αναλογίας Οθόνης" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11879,15 +12258,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Γραμμή εργαλείων" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Κορυφή" @@ -11895,9 +12278,8 @@ msgstr "Κορυφή" msgid "Top-and-Bottom" msgstr "Πάνω - Κάτω" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11934,28 +12316,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Κινέζικα Παραδοσιακά " #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11992,26 +12374,26 @@ msgid "Triggers" msgstr "Σκανδάλες" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Τύπος" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -12023,7 +12405,7 @@ msgstr "ΗΠΑ" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12035,20 +12417,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12056,7 +12438,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12065,7 +12447,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12077,11 +12459,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12101,7 +12483,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12124,15 +12506,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Αναίρεση Φόρτωσης Σημείου Αποθ. " -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Αναίρεση Αποθήκευσης Σημείου Αποθ. " @@ -12150,11 +12532,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Ηνωμένες Πολιτείες" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12165,12 +12547,13 @@ msgstr "Ηνωμένες Πολιτείες" msgid "Unknown" msgstr "Άγνωστο" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12194,11 +12577,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12206,7 +12589,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12214,7 +12597,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12234,16 +12617,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Απεριόριστη" @@ -12276,22 +12661,22 @@ msgid "Unpacking" msgstr "Αποσυμπίεση" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12355,23 +12740,23 @@ msgstr "" "Ενημέρωση τίτλου %1...\n" "Αυτό μπορεί να διαρκέσει λίγο." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12383,15 +12768,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Χρήση Ενσωματωμένης Βάσης Δεδομένων για Ονόματα Παιχνιδιών" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Χρήση Λειτουργίας PAL60 (EuRGB60)" @@ -12399,7 +12784,7 @@ msgstr "Χρήση Λειτουργίας PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Χρήση Οθονών Πανικού" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12417,43 +12802,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Ρυθμίσεις Χρήστη" @@ -12485,21 +12845,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12507,31 +12867,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Εργαλεία" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Κάθετος Συγχρονισμός" @@ -12539,11 +12899,11 @@ msgstr "Κάθετος Συγχρονισμός" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Τιμή" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12551,17 +12911,17 @@ msgstr "" msgid "Value:" msgstr "Τιμή:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12577,16 +12937,16 @@ msgstr "Αναλυτικότητα" msgid "Verify" msgstr "Επαλήθευση" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Επαλήθευση Ακεραιότητας" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12600,7 +12960,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12614,12 +12974,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12627,14 +12987,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Ένταση" @@ -12654,31 +13014,31 @@ msgstr "Αύξηση Έντασης" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD αρχεία (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12717,12 +13077,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12733,7 +13093,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12755,7 +13115,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Προειδοποίηση" @@ -12827,7 +13187,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12844,7 +13204,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12852,7 +13212,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12860,7 +13220,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12884,7 +13244,7 @@ msgstr "Wii Μενού" msgid "Wii NAND Root:" msgstr "Wii NAND Ρίζα:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12892,7 +13252,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12910,7 +13270,7 @@ msgstr "Wii Remote Κουμπιά" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote Ρυθμίσεις" @@ -12930,7 +13290,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12938,11 +13298,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12952,11 +13312,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Αναδίπλωση Λέξεων" @@ -12970,10 +13342,14 @@ msgstr "Κόσμος" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -13015,6 +13391,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13023,11 +13407,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF Καταχωρητές" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13062,14 +13446,14 @@ msgstr "Ναι" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13167,7 +13551,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13185,15 +13569,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Δεν υποστηρίζεται ο Zero 3 code" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13201,11 +13589,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13224,21 +13612,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll δεν μπόρεσε να φορτώσει." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "αποσύνδεση" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13246,31 +13634,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13280,7 +13672,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13290,13 +13682,13 @@ msgstr "" msgid "none" msgstr "κανένα" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13313,16 +13705,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13337,11 +13733,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13376,7 +13772,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13388,8 +13784,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/en.po b/Languages/po/en.po index e4f1a476b4ba..c1cddb99aef1 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -55,8 +55,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -75,19 +75,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -108,7 +109,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -147,6 +148,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -170,13 +176,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -192,12 +198,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +220,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -222,26 +228,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -279,20 +285,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -302,23 +308,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -326,12 +332,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -339,27 +345,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -367,15 +373,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -383,19 +389,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -403,7 +414,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -420,9 +431,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -430,23 +441,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -454,55 +465,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -510,19 +519,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "" @@ -530,15 +539,19 @@ msgstr "" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -548,23 +561,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -573,23 +586,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "" @@ -597,15 +610,15 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "" @@ -613,41 +626,45 @@ msgstr "" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "" @@ -655,15 +672,19 @@ msgstr "" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -673,17 +694,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -695,11 +716,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -715,7 +736,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -723,7 +744,7 @@ msgstr "" msgid "(off)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -743,15 +764,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -762,12 +783,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -779,7 +800,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -787,11 +808,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -803,17 +824,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -825,11 +846,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -841,7 +862,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -853,25 +874,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -885,11 +906,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -897,7 +918,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -913,7 +934,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -925,22 +946,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -948,11 +969,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -964,13 +985,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -986,7 +1007,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -998,11 +1019,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1032,12 +1053,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1047,7 +1068,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1057,11 +1078,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1077,6 +1098,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1098,7 +1123,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1107,8 +1132,8 @@ msgstr "" msgid "AR Codes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1122,7 +1147,7 @@ msgid "About Dolphin" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1141,7 +1166,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1227,19 +1252,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1247,7 +1272,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "" @@ -1257,7 +1282,7 @@ msgstr "" msgid "Add" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1286,51 +1311,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1391,12 +1413,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1411,15 +1433,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1429,16 +1451,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1452,11 +1474,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1464,7 +1486,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1473,7 +1495,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1482,8 +1504,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1495,7 +1517,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1507,15 +1529,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1543,7 +1565,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1581,15 +1603,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1607,7 +1629,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1639,12 +1661,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "" @@ -1652,7 +1678,7 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1660,7 +1686,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1677,7 +1703,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1685,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 "" @@ -1701,12 +1727,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "" @@ -1714,11 +1740,7 @@ msgstr "" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1730,7 +1752,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1738,32 +1760,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1771,38 +1793,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1818,13 +1844,13 @@ msgstr "" msgid "Backward" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1832,20 +1858,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "" @@ -1865,15 +1891,15 @@ msgstr "" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "" @@ -1881,15 +1907,15 @@ msgstr "" msgid "Bass" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1913,31 +1939,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1946,7 +1974,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1973,32 +2001,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2036,11 +2175,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2050,11 +2189,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2086,7 +2225,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2102,7 +2241,7 @@ msgstr "" msgid "Buttons" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2112,11 +2251,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2128,7 +2267,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2136,14 +2275,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2155,11 +2294,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2167,19 +2306,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2188,64 +2327,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2253,19 +2404,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2283,7 +2436,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2291,7 +2444,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "" @@ -2299,7 +2452,7 @@ msgstr "" msgid "Change Disc" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2307,7 +2460,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2333,7 +2486,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2345,15 +2498,15 @@ msgstr "" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2361,7 +2514,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2379,27 +2532,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2426,15 +2579,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2442,7 +2599,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2451,36 +2608,20 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2507,7 +2648,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2534,7 +2679,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2542,9 +2687,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2557,10 +2702,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2633,7 +2784,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "" @@ -2666,13 +2817,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2680,7 +2831,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2691,15 +2842,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2719,7 +2870,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2760,7 +2911,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2784,7 +2935,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2847,8 +2998,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2856,9 +3007,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2866,9 +3017,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2888,8 +3039,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2925,15 +3076,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2941,19 +3092,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2971,6 +3122,11 @@ msgstr "" msgid "Core" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2980,7 +3136,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3053,7 +3209,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3090,13 +3246,13 @@ msgstr "" msgid "Country:" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3105,15 +3261,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3122,17 +3274,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3140,11 +3283,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3156,26 +3299,26 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3183,27 +3326,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3215,13 +3362,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3246,7 +3393,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 "" @@ -3254,15 +3401,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 "" @@ -3284,7 +3431,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3300,7 +3447,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3333,8 +3480,8 @@ msgstr "" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "" @@ -3343,7 +3490,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3390,7 +3537,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 "" @@ -3402,11 +3549,11 @@ msgstr "" msgid "Default ISO:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3414,7 +3561,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3454,26 +3601,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3481,7 +3655,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3489,7 +3663,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3498,7 +3672,7 @@ msgid "Device" msgstr "" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3507,11 +3681,11 @@ msgid "Device Settings" msgstr "" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3519,11 +3693,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3535,12 +3705,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3552,7 +3722,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3560,11 +3730,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3572,11 +3742,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3591,7 +3761,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3937,15 +4103,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3971,7 +4137,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3984,7 +4150,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4000,15 +4166,15 @@ msgstr "" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4018,7 +4184,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4026,11 +4192,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "" @@ -4038,11 +4204,11 @@ msgstr "" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4056,7 +4222,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4076,28 +4242,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4109,11 +4263,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "" @@ -4133,7 +4287,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "" @@ -4153,7 +4307,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4179,6 +4333,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4192,7 +4350,7 @@ msgstr "" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "" @@ -4205,11 +4363,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4221,15 +4379,15 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "" @@ -4299,7 +4457,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4330,7 +4488,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4338,7 +4496,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4355,7 +4513,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 "" @@ -4381,7 +4539,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4389,7 +4547,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4397,7 +4555,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4422,7 +4580,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "" @@ -4431,7 +4589,7 @@ msgstr "" msgid "Enhancements" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4453,11 +4611,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4466,8 +4630,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4478,45 +4642,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4526,16 +4696,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "" @@ -4552,9 +4722,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4566,7 +4736,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4632,13 +4802,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4657,40 +4827,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4698,7 +4840,7 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4706,7 +4848,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4718,15 +4860,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4734,11 +4876,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "" @@ -4753,7 +4895,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "" @@ -4781,14 +4923,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "" @@ -4809,7 +4951,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4842,12 +4984,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "" @@ -4865,7 +5007,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4873,12 +5015,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4906,19 +5048,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4938,15 +5081,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4959,7 +5102,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4982,33 +5125,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5019,7 +5158,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5028,18 +5167,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5051,19 +5190,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5073,13 +5214,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5087,6 +5236,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5113,28 +5266,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5154,7 +5311,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5176,31 +5333,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5234,31 +5394,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5309,7 +5469,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5317,11 +5477,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5334,7 +5494,7 @@ msgstr "" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5345,11 +5505,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5357,9 +5517,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5371,20 +5531,20 @@ msgstr "" msgid "File Info" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5392,7 +5552,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "" @@ -5426,15 +5586,15 @@ msgstr "" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5446,7 +5606,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5462,31 +5622,32 @@ msgstr "" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5496,13 +5657,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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 "" @@ -5510,7 +5671,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 "" @@ -5542,11 +5703,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5583,17 +5744,17 @@ msgstr "" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5614,7 +5775,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5622,7 +5783,7 @@ msgstr "" msgid "Frame Range" msgstr "" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5646,7 +5807,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5677,7 +5838,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "" @@ -5701,7 +5862,7 @@ msgstr "" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "" @@ -5733,7 +5894,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5849,26 +6010,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5896,8 +6057,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5957,11 +6118,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5969,11 +6130,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5986,11 +6147,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6018,7 +6179,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6028,35 +6189,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "" @@ -6068,18 +6229,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6092,8 +6253,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "" @@ -6132,7 +6293,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6141,7 +6302,7 @@ msgstr "" msgid "Guitar" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6169,36 +6330,35 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6211,7 +6371,11 @@ msgstr "" msgid "Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6227,12 +6391,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6241,14 +6405,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6265,7 +6423,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6289,16 +6447,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "" @@ -6307,7 +6465,7 @@ msgstr "" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6321,16 +6479,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6365,7 +6523,7 @@ msgid "IR" msgstr "" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "" @@ -6398,11 +6556,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6448,11 +6606,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6476,7 +6638,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6485,7 +6647,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6500,15 +6662,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6519,15 +6681,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6536,27 +6689,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6601,15 +6754,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6629,8 +6783,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "" @@ -6644,10 +6798,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "" @@ -6661,18 +6815,24 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 -msgid "Insert &nop" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 -msgid "Insert SD Card" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +msgid "Insert SD Card" msgstr "" #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 @@ -6688,7 +6848,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6696,11 +6856,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6709,7 +6871,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6718,7 +6880,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6735,19 +6897,19 @@ msgstr "" msgid "Interface" msgstr "" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6760,19 +6922,19 @@ msgstr "" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6787,7 +6949,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6795,11 +6957,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6811,7 +6973,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6820,11 +6982,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6853,7 +7015,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6865,19 +7027,19 @@ msgstr "" msgid "Invalid recording file" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6887,7 +7049,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "" @@ -6896,63 +7058,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6964,27 +7126,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "" @@ -6995,13 +7161,13 @@ msgstr "" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7015,7 +7181,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7036,7 +7202,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7044,12 +7210,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "" @@ -7060,7 +7226,7 @@ msgstr "" msgid "L" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7070,7 +7236,7 @@ msgstr "" msgid "L-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7078,35 +7244,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7173,13 +7341,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7193,7 +7361,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7201,11 +7369,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7216,29 +7384,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7259,7 +7434,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7348,19 +7523,19 @@ msgstr "" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7372,16 +7547,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7389,18 +7564,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7420,7 +7595,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7432,7 +7607,7 @@ msgstr "" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7440,7 +7615,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7456,7 +7631,7 @@ msgstr "" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7471,16 +7646,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7488,7 +7663,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7498,7 +7673,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7506,37 +7681,37 @@ msgstr "" msgid "Main Stick" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7553,12 +7728,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7570,7 +7745,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7587,16 +7762,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7608,7 +7783,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7620,7 +7795,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7636,7 +7811,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7644,29 +7819,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7686,36 +7865,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7727,16 +7911,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "" @@ -7773,6 +7957,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7782,10 +7970,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7794,8 +7982,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7804,7 +7992,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7821,25 +8009,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7848,7 +8036,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7905,7 +8093,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7935,7 +8123,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7943,7 +8131,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7951,7 +8139,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7960,7 +8148,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7974,7 +8162,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -7988,7 +8176,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8002,7 +8190,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8010,16 +8198,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "" @@ -8035,15 +8223,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8052,7 +8240,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8064,10 +8252,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8079,11 +8263,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8092,18 +8276,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "" @@ -8163,7 +8347,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8198,10 +8382,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "" @@ -8215,7 +8447,7 @@ msgstr "" msgid "Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8227,14 +8459,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "" @@ -8242,13 +8489,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8256,7 +8503,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "" @@ -8265,11 +8512,11 @@ msgstr "" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8290,7 +8537,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8323,11 +8570,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "" @@ -8340,13 +8587,36 @@ msgstr "" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "" @@ -8359,7 +8629,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8379,16 +8649,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8397,15 +8667,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8413,11 +8683,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8430,11 +8700,11 @@ msgstr "" msgid "Pads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8485,11 +8755,15 @@ msgstr "" msgid "Paths" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8528,7 +8802,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8536,33 +8810,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8578,12 +8852,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "" @@ -8595,7 +8869,7 @@ msgstr "" msgid "Play Recording" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8607,27 +8881,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8636,7 +8910,8 @@ msgstr "" msgid "Players" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8648,23 +8923,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8673,7 +8952,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8694,11 +8973,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8706,11 +8985,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8733,7 +9012,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8748,7 +9027,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8759,7 +9038,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8771,7 +9050,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8805,8 +9084,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8814,11 +9093,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8838,14 +9117,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "" @@ -8866,19 +9145,19 @@ msgstr "" msgid "R-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8891,11 +9170,11 @@ msgstr "" msgid "Range" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8907,7 +9186,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8919,14 +9202,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8947,10 +9230,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8964,7 +9252,7 @@ msgstr "" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -8999,7 +9287,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9007,14 +9295,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9022,11 +9310,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9035,8 +9323,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9065,7 +9353,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "" @@ -9082,7 +9370,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9093,8 +9381,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9102,11 +9390,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9122,23 +9410,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9166,6 +9453,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9182,7 +9473,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9199,7 +9490,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9258,7 +9549,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9276,26 +9567,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9311,19 +9628,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9331,7 +9648,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9344,7 +9661,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9352,11 +9669,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9366,11 +9683,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "" @@ -9383,7 +9700,6 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9393,9 +9709,17 @@ msgstr "" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9404,24 +9728,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9433,13 +9757,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" @@ -9483,23 +9807,23 @@ msgstr "" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9507,7 +9831,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9519,26 +9843,26 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9546,7 +9870,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9558,7 +9882,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9570,26 +9894,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9597,17 +9921,17 @@ msgstr "" msgid "Search Subfolders" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9615,11 +9939,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9639,7 +9963,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9647,28 +9971,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9688,15 +10020,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9704,7 +10036,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9763,15 +10095,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9779,11 +10111,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9791,19 +10123,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9811,12 +10143,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "" @@ -9832,7 +10164,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "" @@ -9844,26 +10176,45 @@ msgstr "" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9875,18 +10226,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9900,7 +10262,7 @@ msgstr "" msgid "Send" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "" @@ -9924,16 +10286,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9949,40 +10307,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -9994,20 +10352,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "" @@ -10024,16 +10382,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "" @@ -10041,53 +10399,53 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10099,23 +10457,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10123,19 +10481,19 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10143,32 +10501,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10176,72 +10538,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10249,65 +10611,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10317,34 +10685,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10353,7 +10721,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "" @@ -10370,17 +10738,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10415,24 +10783,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10440,10 +10808,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10453,7 +10817,7 @@ msgstr "" msgid "Slot A" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10461,7 +10825,7 @@ msgstr "" msgid "Slot B" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10469,7 +10833,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10493,12 +10857,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10512,27 +10876,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10553,15 +10917,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10574,25 +10938,28 @@ msgstr "" msgid "Start" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10608,10 +10975,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10621,7 +10988,7 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10633,13 +11000,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10655,7 +11022,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10664,7 +11031,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10694,18 +11061,14 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10738,7 +11101,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "" @@ -10773,8 +11136,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10801,7 +11164,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10813,12 +11176,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10829,11 +11192,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10841,16 +11204,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10860,12 +11223,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10876,7 +11239,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "" @@ -10890,34 +11253,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10943,7 +11293,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10962,24 +11312,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -10989,7 +11339,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -10997,15 +11347,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11013,7 +11363,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11021,6 +11371,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11030,7 +11386,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11042,7 +11398,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11065,7 +11421,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11079,13 +11435,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11096,11 +11452,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11133,6 +11489,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11150,7 +11513,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11170,17 +11533,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11188,7 +11551,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11202,7 +11565,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11218,7 +11581,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11229,7 +11592,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11286,9 +11649,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11302,11 +11665,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11320,8 +11683,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11348,12 +11711,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11387,7 +11750,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11402,11 +11765,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11414,15 +11777,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11445,7 +11808,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11471,14 +11834,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11512,19 +11880,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11639,6 +12007,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11651,11 +12023,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11668,7 +12040,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11676,7 +12048,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11695,6 +12067,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11709,11 +12088,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11721,12 +12100,12 @@ msgstr "" msgid "Threshold" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "" @@ -11740,10 +12119,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "" @@ -11757,7 +12136,7 @@ msgstr "" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11782,7 +12161,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11834,15 +12213,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "" @@ -11850,9 +12233,8 @@ msgstr "" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11889,28 +12271,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11947,26 +12329,26 @@ msgid "Triggers" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11978,7 +12360,7 @@ msgstr "" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -11990,20 +12372,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12011,7 +12393,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12020,7 +12402,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12032,11 +12414,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12056,7 +12438,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12079,15 +12461,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "" @@ -12105,11 +12487,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12120,12 +12502,13 @@ msgstr "" msgid "Unknown" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12149,11 +12532,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12161,7 +12544,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12169,7 +12552,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12189,16 +12572,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12231,22 +12616,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12308,23 +12693,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12336,15 +12721,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12352,7 +12737,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12370,43 +12755,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12438,21 +12798,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12460,31 +12820,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "" @@ -12492,11 +12852,11 @@ msgstr "" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12504,17 +12864,17 @@ msgstr "" msgid "Value:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12530,16 +12890,16 @@ msgstr "" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12553,7 +12913,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12567,12 +12927,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12580,14 +12940,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "" @@ -12607,31 +12967,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12670,12 +13030,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12686,7 +13046,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12708,7 +13068,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "" @@ -12780,7 +13140,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12797,7 +13157,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12805,7 +13165,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12813,7 +13173,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12837,7 +13197,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12845,7 +13205,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12863,7 +13223,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12883,7 +13243,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12891,11 +13251,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12905,11 +13265,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "" @@ -12923,10 +13295,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12968,6 +13344,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12976,11 +13360,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13015,14 +13399,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13119,7 +13503,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13137,15 +13521,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13153,11 +13541,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13176,21 +13564,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13198,31 +13586,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13232,7 +13624,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13242,13 +13634,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13265,16 +13657,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13289,11 +13685,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13328,7 +13724,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13337,8 +13733,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/es.po b/Languages/po/es.po index 4157ed4f1c9d..3381ec884673 100644 --- a/Languages/po/es.po +++ b/Languages/po/es.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -92,8 +92,8 @@ msgstr "$ Variable del usuario" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -114,19 +114,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -147,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (predeterminado)" @@ -189,6 +190,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 no soporta esta característica en tu sistema." @@ -215,7 +221,7 @@ msgstr "%1 se ha unido" msgid "%1 has left" msgstr "%1 se ha salido" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -223,7 +229,7 @@ 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 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" @@ -239,12 +245,12 @@ msgstr "%1 ahora está jugando al golf" msgid "%1 is playing %2" msgstr "%1 está jugando a %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -261,7 +267,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%" @@ -269,26 +275,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "El valor de %1 se ha utilizado" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -326,20 +332,20 @@ msgstr "Nativa %1x (%2x%3) para %4" msgid "%1x SSAA" msgstr "%1x SSAA " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "No se pudo acceder a %n dirección(ones) de la memoria emulada." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "Queda(n) %n dirección(ones)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -349,23 +355,23 @@ msgstr "Se quitaron %n dirección(ones)." msgid "& And" msgstr "& Y" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Acerca de" @@ -373,12 +379,12 @@ msgstr "&Acerca de" msgid "&Add Memory Breakpoint" msgstr "&Añadir punto de interrupción en memoria" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Añadir nuevo código..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Añadir función" @@ -386,27 +392,27 @@ msgstr "&Añadir función" msgid "&Add..." msgstr "&Añadir..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "&Ensamblador" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Ajustes de &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "Actualización automática:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "Ventana sin &bordes" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Puntos de interrupción" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Rastreador de errores" @@ -414,15 +420,15 @@ msgstr "&Rastreador de errores" msgid "&Cancel" msgstr "&Cancelar" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "Administrador de &trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Buscar actualizaciones..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Borrar símbolos" @@ -430,19 +436,24 @@ msgstr "&Borrar símbolos" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Código" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Ajustes de &mandos" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Copiar dirección:" @@ -450,7 +461,7 @@ msgstr "&Copiar dirección:" msgid "&Create..." msgstr "&Crear..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Borrar" @@ -467,9 +478,9 @@ msgstr "Borrar variables &vigiladas" msgid "&Delete Watches" msgstr "Borrar variables &vigiladas" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Editar código..." @@ -477,23 +488,23 @@ msgstr "&Editar código..." msgid "&Edit..." msgstr "&Editar..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Expulsar disco" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulación" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exportar..." -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Exportar guardado de juego..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Exportar estado" @@ -501,55 +512,53 @@ msgstr "&Exportar estado" msgid "&Export as .gci..." msgstr "&Exportar como .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Tipo de letra..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "Avanzar &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "Ajustes de &cámara libre" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Generar el mapa de símbolos a partir de..." -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&Repositorio en GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Ir al principio de la función" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Ajustes de &gráficos" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "A&yuda" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Ajustes de a&tajos" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importar..." -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Importar guardado de juego..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importar estado" @@ -557,19 +566,19 @@ msgstr "&Importar estado" msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "Base de &Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Insertar blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Fusión de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -577,15 +586,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Cargar estado" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "Cargar mapa de símbo&los" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Cargar archivo en dirección actual" @@ -595,23 +608,23 @@ msgstr "&Cargar archivo en dirección actual" msgid "&Lock Watches" msgstr "&Bloquear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "B&loquear posición de ventanas" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Grabación" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Silenciar" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Red" @@ -620,23 +633,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opciones" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Parchear funciones HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Jugar" @@ -644,15 +657,15 @@ msgstr "&Jugar" msgid "&Properties" msgstr "&Propiedades" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Modo de solo lectura" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Actualizar lista" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registros" @@ -660,41 +673,45 @@ msgstr "&Registros" msgid "&Remove" msgstr "&Borrar" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Quitar código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Renombrar símbolo" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reiniciar" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Administrador de paquetes de recursos" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Guardar mapa de símbolos" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "E%scanear tarjeta(s) de e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "Portal de &Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Límite de velocidad:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Detener" @@ -702,15 +719,19 @@ msgstr "&Detener" msgid "&Theme:" msgstr "&Tema visual:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Hilos" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Herramientas" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&Quitar ROM" @@ -720,17 +741,17 @@ msgstr "&Quitar ROM" msgid "&Unlock Watches" msgstr "Desblo&quear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Vigilar" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Página web" @@ -742,11 +763,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 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:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "No se encontró «%1», probando con la búsqueda de funciones comunes" @@ -762,7 +783,7 @@ msgstr "(Claro)" msgid "(System)" msgstr "(Del sistema)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(anfitrión)" @@ -770,7 +791,7 @@ msgstr "(anfitrión)" msgid "(off)" msgstr "(desactivado)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -790,15 +811,15 @@ msgstr ", Coma" msgid "- Subtract" msgstr "- Restar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Desconocido--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -809,12 +830,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Dividir" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -826,7 +847,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 bloques)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -834,11 +855,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -850,17 +871,17 @@ msgstr "16 Mbit (251 bloques)" msgid "16-bit" msgstr "16 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "Entero con signo de 16 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "Entero sin signo de 16 bits" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -872,11 +893,11 @@ msgstr "Anisotrópico x16" msgid "1x" msgstr "x1" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -888,7 +909,7 @@ msgstr "x2" msgid "2x Anisotropic" msgstr "Anisotrópico x2" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -900,25 +921,25 @@ msgstr "32 Mbit (507 bloques)" msgid "32-bit" msgstr "32 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "Valor en coma flotante de 32 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "Entero con signo de 32 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -932,11 +953,11 @@ msgstr "Profundidad 3D" msgid "3x" msgstr "x3" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -944,7 +965,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 bloques)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -960,7 +981,7 @@ msgstr "x4" msgid "4x Anisotropic" msgstr "Anisotrópico x4" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -972,22 +993,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 bloques)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "Valor en coma flotante de 64 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "Entero con signo de 64 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "Entero sin signo de 64 bits" @@ -995,11 +1016,11 @@ msgstr "Entero sin signo de 64 bits" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -1011,13 +1032,13 @@ msgstr "8 Mbit (123 bloques)" msgid "8-bit" msgstr "8 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "Entero con signo de 8 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "Entero sin signo de 8 bits" @@ -1033,7 +1054,7 @@ msgstr "Anisotrópico x8" msgid "< Less-than" msgstr "< Menor que" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1047,13 +1068,13 @@ msgstr "" "Característica desactivada en el modo «hardcore»." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1092,12 +1113,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Mayor que" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Ya hay una sesión de juego en red en marcha." -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1114,7 +1135,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:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Ya hay un disco en proceso de inserción." @@ -1127,13 +1148,13 @@ msgstr "" "fidedignos, igualando el espacio de color para el que fueron diseñados los " "juegos de Wii y GC." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Un estado de guardado no puede ser cargado sin especificar el juego a " "ejecutar." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1153,6 +1174,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1190,7 +1215,7 @@ msgstr "" "funcione correctamente.\n" "Úsalo bajo tu propio riesgo.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Código AR" @@ -1199,8 +1224,8 @@ msgstr "Código AR" msgid "AR Codes" msgstr "Códigos AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1214,7 +1239,7 @@ msgid "About Dolphin" msgstr "Acerca de Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Acelerómetro" @@ -1233,7 +1258,7 @@ msgid "Achievement Settings" msgstr "Ajustes de logros" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Logros" @@ -1338,19 +1363,19 @@ msgstr "Activar el chat del juego en red" msgid "Active" msgstr "Activo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Figuras de Infinity activas:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Cola de hilos activos" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Hilos activos" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adaptador" @@ -1358,7 +1383,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador detectado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptador:" @@ -1368,7 +1393,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Añadir" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Añadir &punto de interrupción" @@ -1397,51 +1422,48 @@ msgstr "Añadir punto de interrupción en memoria" msgid "Add memory &breakpoint" msgstr "Añadir punto de &interrupción en memoria" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Añadir a &variables vigiladas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Añadir..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Dirección:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Espacio de dirección" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Espacio de dirección según el estado de la CPU" @@ -1533,12 +1555,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avanzado" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Ajustes avanzados" @@ -1553,40 +1575,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"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]
De una forma 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" @@ -1594,16 +1593,16 @@ msgstr "África" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Aire" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Alineación a la longitud del tipo de datos" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Todas" @@ -1617,11 +1616,11 @@ msgid "All Double" msgstr "Todos los valores de coma flotante doble" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1629,7 +1628,7 @@ msgid "All Files" msgstr "Todos los archivos" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Todos los archivos (*)" @@ -1638,7 +1637,7 @@ msgstr "Todos los archivos (*)" msgid "All Float" msgstr "Todos los valores de coma flotante" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Todos los archivos GC/Wii" @@ -1647,8 +1646,8 @@ msgstr "Todos los archivos GC/Wii" msgid "All Hexadecimal" msgstr "Todos los valores hexadecimales" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos los estados guardados (*.sav *.s##);; Todos los archivos (*)" @@ -1660,7 +1659,7 @@ msgstr "Todos los valores enteros con signo" msgid "All Unsigned Integer" msgstr "Todos los valores enteros sin signo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Todos los archivos (*)" @@ -1672,15 +1671,15 @@ 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:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Permitir configuración de región independiente" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Permitir informes de estadísticas de uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Permitir acciones de escritura en la tarjeta SD" @@ -1710,7 +1709,7 @@ msgstr "Siempre" msgid "Always Connected" msgstr "Siempre conectado" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "Siempre &arriba" @@ -1748,15 +1747,15 @@ msgstr "Suavizado de bordes:" msgid "Any Region" msgstr "Cualquier región" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Añadir firma a" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Añadir al archivo de firma existente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Aplicar archivo de firma..." @@ -1777,7 +1776,7 @@ msgstr "Fecha del «apploader»:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Aplicar archivo de firma" @@ -1809,12 +1808,16 @@ msgstr "¿Seguro que quieres continuar?" msgid "Area Sampling" msgstr "Muestreado de áreas" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Relación de aspecto" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Relación de aspecto:" @@ -1822,7 +1825,7 @@ msgstr "Relación de aspecto:" msgid "Assemble" msgstr "Ensamblar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "Ensamblar instrucción" @@ -1830,7 +1833,7 @@ msgstr "Ensamblar instrucción" msgid "Assembler" msgstr "Ensamblador" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "Archivo de ensamblado" @@ -1849,7 +1852,7 @@ msgstr "" "Al menos dos de los archivos de guardado seleccionados tienen el mismo " "nombre de archivo interno." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Añadir MotionPlus" @@ -1857,11 +1860,11 @@ msgstr "Añadir MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Motor de audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Ajustes de expansión de audio" @@ -1873,12 +1876,12 @@ msgstr "Australia" msgid "Author" msgstr "Autor" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autores" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automática" @@ -1886,11 +1889,7 @@ msgstr "Automática" msgid "Auto (Multiple of 640x528)" msgstr "Automática (múltiplo de 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "Guardado automático" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Ajustes de actualización automática" @@ -1906,7 +1905,7 @@ msgstr "" "\n" "Por favor seleccione una resolución interna específica." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Autoajustar tamaño de ventana" @@ -1914,15 +1913,15 @@ msgstr "Autoajustar tamaño de ventana" msgid "Auto-Hide" msgstr "Ocultar automáticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "¿Autodetectar módulos RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Sincronizar automáticamente con carpeta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1931,18 +1930,18 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Actualizar autom. los valores actuales" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Auxiliar" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1950,7 +1949,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT incorrecto. Dolphin ha encontrado un error y se cerrará." -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1960,31 +1959,35 @@ msgstr "" "Se debe usar una dirección MAC válida. Genera una nueva empezando con 00:09:" "bf o 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Registro BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Secuencia regresiva" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Motor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motor:" @@ -2000,13 +2003,13 @@ msgstr "Funcionar en segundo plano" msgid "Backward" msgstr "Atrás" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Se ha proporcionado un valor incorrecto" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "La dirección elegida no existe." @@ -2014,20 +2017,20 @@ msgstr "La dirección elegida no existe." msgid "Bad dump" msgstr "Volcado malo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Ajuste proporcionado incorrecto." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "El valor elegido no es correcto." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Imagen" @@ -2047,15 +2050,15 @@ msgstr "Barra" msgid "Base Address" msgstr "Dirección base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Prioridad base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Ajustes básicos" @@ -2063,15 +2066,15 @@ msgstr "Ajustes básicos" msgid "Bass" msgstr "Bajo" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Modo Lote no puede ser usado sin especificar un juego para ejecutar." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batería" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (una vez al mes)" @@ -2095,33 +2098,33 @@ msgstr "Bicúbico: Mitchell-Netravali" msgid "Bilinear" msgstr "Bilineal" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "SSL binario" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "SSL binario (leer)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "SSL binario (escribir)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"No se ha podido crear una figura en blanco en:\n" -"%1, vuelve a intentarlo con otro personaje distinto" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Tamaño del bloque" @@ -2130,7 +2133,7 @@ msgstr "Tamaño del bloque" msgid "Block Size:" msgstr "Tamaño del bloque:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Bloqueando" @@ -2159,34 +2162,145 @@ 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:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Arrancar pausado" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 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:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Archivo de claves BootMii (*.bin);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Pantalla completa sin bordes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Inferior" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Rama master: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Ramas" @@ -2225,11 +2339,11 @@ msgstr "Adaptador de banda ancha (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Adaptador de banda ancha (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "Configuración de DNS del adaptador de banda ancha" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Error del adaptador para banda ancha" @@ -2239,11 +2353,11 @@ 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:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2277,7 +2391,7 @@ msgstr "Botón" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2293,7 +2407,7 @@ msgstr "Botón" msgid "Buttons" msgstr "Botones" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "Por: %1" @@ -2303,11 +2417,11 @@ msgstr "Por: %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "C&rear archivo de firma..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Registro CP" @@ -2319,7 +2433,7 @@ msgstr "Motor de emulación de CPU:" msgid "CPU Options" msgstr "Opciones del procesador" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2327,7 +2441,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Intérprete con caché (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2338,7 +2452,7 @@ msgstr "" "parones.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Calcular" @@ -2355,11 +2469,11 @@ msgstr "" "fallos gráficos.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Calibrar" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Calibración" @@ -2367,19 +2481,19 @@ msgstr "Calibración" msgid "Calibration Period" msgstr "Tiempo de calibración" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Llamada de lista de visualización en %1 con tamaño %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Llamadores" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Llamadas" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Pila de llamadas" @@ -2388,69 +2502,81 @@ msgid "Camera 1" msgstr "Cámara 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 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:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 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 " "en la memoria virtual." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "¡Todavía no se puede modificar!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "¡No se pueden editar los villanos de este trofeo!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" "No se puede encontrar ningún mando de Wii con el identificador de conexión " "{0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Cancelar calibración" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "No se puede ir paso a paso en FIFO, tienes que utilizar «Avanzar fotograma»." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "El juego no puede iniciar el WAD al no poder instalarlo en la NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "No se puede encontrar el IPL de GC" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "No se puede generar el código AR para esta dirección." @@ -2458,19 +2584,21 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 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:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Villano capturado %1:" @@ -2488,7 +2616,7 @@ msgstr "Centro" msgid "Center Mouse" msgstr "Centrar ratón" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Centrar y calibrar" @@ -2496,7 +2624,7 @@ msgstr "Centrar y calibrar" msgid "Change &Disc" msgstr "Cambiar &disco" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Cambiar &disco..." @@ -2504,7 +2632,7 @@ msgstr "Cambiar &disco..." msgid "Change Disc" msgstr "Cambiar disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Cambiar discos automáticamente" @@ -2512,7 +2640,7 @@ msgstr "Cambiar discos automáticamente" msgid "Change the disc to {0}" msgstr "Cambiar al disco {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2551,7 +2679,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:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "¡El personaje introducido no es válido!" @@ -2563,15 +2691,15 @@ msgstr "Conversación" msgid "Cheat Code Editor" msgstr "Editor de trucos" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Buscar trucos" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Administrador de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Comprobar NAND..." @@ -2579,7 +2707,7 @@ msgstr "Comprobar NAND..." msgid "Check for Game List Changes in the Background" msgstr "Comprobar en segundo plano si hay cambios en la lista de juegos" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Buscar actualizaciones" @@ -2599,27 +2727,27 @@ msgstr "Verificar" msgid "China" msgstr "China" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Seleccionar" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Selecciona un archivo para abrir" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "Selecciona un archivo a abrir o crear" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Selecciona un archivo de entrada principal" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Selecciona un archivo de entrada secundario" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Selecciona la carpeta base GCI" @@ -2646,15 +2774,19 @@ msgstr "Mando clásico" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Borrar" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Borrar caché" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Vaciar posición" @@ -2662,7 +2794,7 @@ msgstr "Vaciar posición" msgid "Clock Override" msgstr "Control manual del reloj de la CPU" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Clonar y &editar código..." @@ -2671,37 +2803,21 @@ msgstr "Clonar y &editar código..." msgid "Close" msgstr "Cerrar" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Co&nfiguración" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Código" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Herramienta de comparación de código" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Ayuda de la herramienta de comparación de código" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "El código no ha sido ejecutado" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "El código ha sido ejecutado" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2727,7 +2843,11 @@ msgstr "Corrección de color:" msgid "Color Space" msgstr "Espacio de color" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Combinar dos archivos de firmas..." @@ -2761,7 +2881,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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compilar sombreadores antes de jugar" @@ -2769,9 +2889,9 @@ msgstr "Compilar sombreadores antes de jugar" msgid "Compiling Shaders" msgstr "Compilación de sombreadores" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Compresión" @@ -2784,10 +2904,16 @@ msgstr "Nivel de compresión:" msgid "Compression:" msgstr "Compresión:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2911,7 +3037,7 @@ msgstr "" "en caso de generar un NaN y la variable que se haya convertido en NaN " "quedará registrada." -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Configuración" @@ -2944,13 +3070,13 @@ msgstr "Configurar salida" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Confirmar cambio de motor" @@ -2958,7 +3084,7 @@ msgstr "Confirmar cambio de motor" msgid "Confirm on Stop" msgstr "Confirmar detención" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2969,15 +3095,15 @@ msgstr "Confirmar" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Conectar la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectar teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Conectar mando de Wii %1" @@ -2997,7 +3123,7 @@ msgstr "Conectar mando de Wii 3" msgid "Connect Wii Remote 4" msgstr "Conectar mando de Wii 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Conectar mandos de Wii" @@ -3039,7 +3165,7 @@ msgstr "Controlar el modo golf del juego en red" msgid "Control Stick" msgstr "Stick de control" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Perfil del mando" @@ -3063,7 +3189,7 @@ msgstr "Perfil del mando 4" msgid "Controller Settings" msgstr "Ajustes del mando" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Mandos" @@ -3150,8 +3276,8 @@ msgstr "Convergencia" msgid "Convergence:" msgstr "Convergencia:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Fallo en la conversión." @@ -3159,9 +3285,9 @@ msgstr "Fallo en la conversión." msgid "Convert" msgstr "Convertir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3169,9 +3295,9 @@ msgstr "Convertir archivo a carpeta" msgid "Convert File..." msgstr "Convertir archivo..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3194,8 +3320,8 @@ msgstr "" "queriendo continuar?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Convirtiendo..." @@ -3247,15 +3373,15 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Copiar &función" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Copiar código &hexadecimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Copiar dirección" @@ -3263,19 +3389,19 @@ msgstr "Copiar dirección" msgid "Copy Failed" msgstr "Fallo al copiar" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Copiar en hexadecimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Copiar valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Copiar código de &línea" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Copiar dirección ob&jetivo" @@ -3293,6 +3419,11 @@ msgstr "Copiar a B" msgid "Core" msgstr "Núcleo" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Corregir espacio de color" @@ -3302,7 +3433,7 @@ msgid "Correct SDR Gamma" msgstr "Corregir gamma para SDR" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Coste" @@ -3397,7 +3528,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "No se pudo reconocer el archivo {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "¡No se han podido guardar los cambios!" @@ -3442,13 +3573,13 @@ msgstr "No se pudo leer el archivo." msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Crear" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Crear archivo de Infinity" @@ -3457,15 +3588,11 @@ msgstr "Crear archivo de Infinity" msgid "Create New Memory Card" msgstr "Crear nueva tarjeta de memoria" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Crear archivo de Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Crear carpeta de Skylanders" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Crear asignaciones para otros dispositivos" @@ -3474,23 +3601,8 @@ msgstr "Crear asignaciones para otros dispositivos" msgid "Create..." msgstr "Crear..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Crea volcados de fotogramas y capturas de pantalla en la resolución interna " -"del renderizador, en lugar del tamaño de la ventana en la que se muestra." -"

Si la relación de aspecto es panorámica, la imagen de salida se " -"escalará horizontalmente para preservar la resolución vertical.

Si tienes dudas, deja esta opción desactivada." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Creador:" @@ -3498,11 +3610,11 @@ msgstr "Creador:" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Recortar imagen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3518,11 +3630,11 @@ msgstr "" msgid "Crossfade" msgstr "Deslizador del mezclador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: 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:380 +#: 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, " @@ -3533,15 +3645,15 @@ msgstr "" "dibujado.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Región actual" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Valor actual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Contexto actual" @@ -3549,27 +3661,31 @@ msgstr "Contexto actual" msgid "Current game" msgstr "Juego actual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Hilo actual" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personalizada" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Espacio de dirección personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: 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:307 +#: 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:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Relación de aspecto personalizada:" @@ -3581,13 +3697,13 @@ msgstr "Opciones de fecha en tiempo real personalizada (RTC)" msgid "Custom:" msgstr "Personalizado:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Personalizar" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3614,7 +3730,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" @@ -3622,15 +3738,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)" @@ -3656,7 +3772,7 @@ msgstr "Alfombra de baile" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Oscuridad" @@ -3672,7 +3788,7 @@ msgstr "Partición de datos (%1)" msgid "Data Transfer" msgstr "Transferencia de datos" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Tipo de datos" @@ -3705,8 +3821,8 @@ msgstr "Zona muerta" msgid "Debug" msgstr "Depurar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Depuración" @@ -3715,7 +3831,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:" @@ -3762,7 +3878,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" @@ -3774,11 +3890,11 @@ msgstr "Tipografía predeterminada" msgid "Default ISO:" msgstr "ISO predeterminada:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Hilo predeterminado" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Retrasar invalidación de caché del EFB" @@ -3786,7 +3902,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:384 +#: 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 " @@ -3832,26 +3948,53 @@ msgstr "Porcentaje de profundidad:" msgid "Depth:" msgstr "Profundidad:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripción" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Descripción:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "Descripción: %1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Separado" @@ -3859,7 +4002,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Detección de módulos RSO" @@ -3867,7 +4010,7 @@ msgstr "Detección de módulos RSO" msgid "Deterministic dual core:" msgstr "Doble núcleo determinista:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (varias veces al día)" @@ -3876,7 +4019,7 @@ msgid "Device" msgstr "Dispositivo" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "PID del dispositivo (por ejemplo: 0305)" @@ -3885,11 +4028,11 @@ msgid "Device Settings" msgstr "Ajustes de dispositivos" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3897,11 +4040,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Comparación" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3913,12 +4052,12 @@ msgstr "Conexión directa" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "Des&conectado" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Desactivar" @@ -3930,7 +4069,7 @@ msgstr "Desactivar delimitado rectangular" msgid "Disable Copy Filter" msgstr "Desactivar filtrado de copia" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Desactivar copias del EFB a la VRAM" @@ -3938,11 +4077,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:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Desactivar FastMem" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "Desactivar Fastmem Arena" @@ -3950,11 +4089,11 @@ msgstr "Desactivar Fastmem Arena" msgid "Disable Fog" msgstr "Desactivar niebla" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Desactivar caché JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "Desactivar mapas grandes de puntos de entrada" @@ -3973,7 +4112,7 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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.
Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

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

If unsure, leave this unchecked." @@ -4360,15 +4495,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandés" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Salir" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "Copia del EFB %1" @@ -4402,7 +4537,7 @@ msgstr "Refresco temprano de memoria" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Tierra" @@ -4415,7 +4550,7 @@ msgstr "Asia Oriental" msgid "Edit Breakpoint" msgstr "Editar punto de interrupción" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Editar..." @@ -4431,15 +4566,15 @@ msgstr "Efectos" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Efectivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Prioridad efectiva" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4449,7 +4584,7 @@ msgstr "Expulsar disco" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Clase elemental" @@ -4457,11 +4592,11 @@ msgstr "Clase elemental" msgid "Embedded Frame Buffer (EFB)" msgstr "Búfer de imagen integrado (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Vacía" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "El hilo de emulación ya está ejecutándose" @@ -4469,11 +4604,11 @@ 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:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Emular base de Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Emular portal de Skylanders" @@ -4490,7 +4625,7 @@ msgstr "" "esta opción puede provocar problemas de estabilidad. Valor predeterminado: " "activado." -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Dispositivos USB emulados" @@ -4513,28 +4648,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Velocidad de emulación" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "Es necesario empezar la emulación antes de cargar un archivo." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "Es necesario empezar la emulación antes de guardar un archivo." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "Es necesario empezar la emulación para poder grabar." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Activar capas de validación de la API" @@ -4546,11 +4669,11 @@ msgstr "Activar emblemas de logros" msgid "Enable Achievements" msgstr "Activar logros" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Activar expansión de audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Activar trucos" @@ -4570,7 +4693,7 @@ msgstr "Activar opciones de depuración" msgid "Enable Dual Core" msgstr "Activar doble núcleo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Activar doble núcleo (más rápido)" @@ -4590,7 +4713,7 @@ msgstr "Activar repetición de logros («Encore»)" msgid "Enable FPRF" msgstr "Activar FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Activar modificaciones de gráficos" @@ -4633,6 +4756,10 @@ 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 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Activar tablas de clasificación" @@ -4646,7 +4773,7 @@ msgstr "Activar MMU" msgid "Enable Progress Notifications" msgstr "Activar notificaciones de progresos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activar escaneo progresivo" @@ -4659,11 +4786,11 @@ msgid "Enable Rich Presence" msgstr "Activar presencia en aplicación" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Activar vibración" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activar salvapantallas" @@ -4675,15 +4802,15 @@ msgstr "Activar envío de datos al altavoz" msgid "Enable Unofficial Achievements" msgstr "Activar logros no oficiales" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Informar de estadísticas de uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: 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:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ver mallas de polígonos" @@ -4783,7 +4910,7 @@ msgstr "" "RetroAchievements no considere oficiales, útiles para hacer pruebas o por " "puro placer." -#: 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." @@ -4834,7 +4961,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4847,7 +4974,7 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4875,7 +5002,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." @@ -4915,7 +5042,7 @@ msgstr "" "Desactivado: el ajuste más rápido).

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4927,7 +5054,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:302 +#: 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 " @@ -4940,7 +5067,7 @@ msgstr "" "los sombreadores compilados.

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

If " "unsure, leave this unchecked." @@ -4973,7 +5100,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglés" @@ -4982,7 +5109,7 @@ msgstr "Inglés" msgid "Enhancements" msgstr "Mejoras" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" "Introduce la dirección IP del dispositivo que esté ejecutando el cliente de " @@ -5006,11 +5133,17 @@ msgstr "Introduce la nueva dirección MAC del adaptador de banda ancha:" msgid "Enter password" msgstr "Introduce la contraseña" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Introduce el servidor de DNS que quieres utilizar:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Introduce la dirección del módulo RSO:" @@ -5019,8 +5152,8 @@ msgstr "Introduce la dirección del módulo RSO:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -5031,45 +5164,51 @@ msgstr "Introduce la dirección del módulo RSO:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -5079,16 +5218,16 @@ msgstr "Introduce la dirección del módulo RSO:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -5105,9 +5244,9 @@ 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:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Error al convertir el valor" @@ -5121,7 +5260,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Error al obtener la lista de sesiones: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "Error al cargar algunos packs de texturas" @@ -5189,7 +5328,7 @@ msgstr "Error: GBA{0} no ha podido abrir el guardado en {1}" msgid "Error: This build does not support emulated GBA controllers" msgstr "Error: Esta versión no soporta mandos de GBA emulados" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5197,7 +5336,7 @@ msgstr "" "Error: No ha sido posible cargar las tipografías de tipo «Shift JIS». Puede " "que los juegos se cuelguen o no muestren sus textos correctamente." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5218,59 +5357,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Ejemplo:\n" -"Deseas encontrar una función que se ejecuta al modificarse los puntos de " -"salud (o PS).\n" -"1. Empieza a grabar y juega sin dejar que se modifiquen los PS, después " -"pulsa el botón «El código no ha sido ejecutado».\n" -"2. Inmediatamente después, gana o pierde PS y pulsa «El código ha sido " -"ejecutado».\n" -"3. Repite los puntos 1 o 2 para acotar los resultados.\n" -"Las inclusiones («El código ha sido ejecutado») deberían contener " -"grabaciones breves que se centren en lo que te interese.\n" -"\n" -"Al pulsar el botón «El código ha sido ejecutado» dos veces, solo mantendrás " -"aquellas funciones que se hayan ejecutado durante las dos grabaciones. La " -"sección «Aciertos» se actualizará para reflejar el recuento de aciertos de " -"la última grabación. La sección «Aciertos totales» reflejará el número total " -"de veces en las que se ha ejecutado una función hasta que se borren ambas " -"listas pulsando Reiniciar.\n" -"\n" -"Clic derecho -> «Poner blr» pondrá un blr sobre el símbolo.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Excluido: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Excluido: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershaders exclusivos" @@ -5278,7 +5370,7 @@ msgstr "Ubershaders exclusivos" msgid "Exit" msgstr "Salir" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Se esperaba + o paréntesis de cierre." @@ -5286,7 +5378,7 @@ msgstr "Se esperaba + o paréntesis de cierre." msgid "Expected arguments: " msgstr "Argumentos esperados:" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Se espera el paréntesis de cierre." @@ -5298,15 +5390,15 @@ msgstr "Coma esperada." msgid "Expected end of expression." msgstr "Fin esperado de la expresión." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Nombre esperado de la entrada." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Se espera el paréntesis de apertura." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Inicio esperado de la expresión." @@ -5314,11 +5406,11 @@ msgstr "Inicio esperado de la expresión." msgid "Expected variable name." msgstr "Nombre de variable previsto." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportar todas las partidas guardadas de Wii" @@ -5333,7 +5425,7 @@ msgstr "Fallo al exportar" msgid "Export Recording" msgstr "Exportar grabación" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exportar grabación..." @@ -5361,14 +5453,14 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, 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:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensión" @@ -5389,7 +5481,7 @@ msgstr "Externo" msgid "External Frame Buffer (XFB)" msgstr "Búfer de imagen externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Extraer certificados de la NAND" @@ -5422,12 +5514,12 @@ msgid "Extracting Directory..." msgstr "Extrayendo directorio..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Reproductor FIFO" @@ -5447,7 +5539,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "No se ha podido añadir al archivo de firma «%1»" @@ -5455,13 +5547,13 @@ msgstr "No se ha podido añadir al archivo de firma «%1»" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "No se ha podido controlar la interfaz para el acceso directo a BT: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "¡No se ha podido borrar el Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "¡No se ha podido quitar al Skylander del espacio (%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5488,23 +5580,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "No se ha podido crear el archivo de Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "¡No se ha podido crear el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"No se ha podido crear el archivo de Skylander:\n" -"%1\n" -"(El Skylander podría estar ya en el portal)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5529,15 +5619,15 @@ msgstr "" "No se ha podido desvincular el controlador del kernel para ejecutar el " "acceso directo a BT: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "No se ha podido descargar los códigos." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "No se ha podido volcar %1: Hubo un fallo al abrir el archivo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" "No se ha podido volcar %1: no se han podido escribir los datos en el archivo" @@ -5551,7 +5641,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "No se han podido extraer los certificados de la NAND." @@ -5577,22 +5667,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "No se ha podido encontrar uno o más símbolos D3D" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "No se ha podido encontrar o abrir el archivo: %1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "No se ha podido importar «%1»." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5600,7 +5686,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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5611,7 +5697,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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "No se ha podido iniciar el núcleo" @@ -5625,7 +5711,7 @@ msgstr "" "Asegúrate de que tu tarjeta de vídeo soporta al menos D3D 10.0\n" "{0} " -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "No se han podido iniciar las clases de renderizado" @@ -5634,11 +5720,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 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:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5646,8 +5732,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:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "No se ha podido cargar el módulo RSO en %1" @@ -5659,19 +5745,21 @@ 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:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "No se ha podido cargar el archivo de mapa «%1»" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "¡No se ha podido cargar el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "¡No se ha podido cargar el archivo de Skylander (%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "No se ha podido cargar el ejecutable en memoria." @@ -5683,13 +5771,21 @@ msgstr "" "No se ha podido cargar {0}. Si utilizas Windows 7, prueba a instalar el " "paquete de actualización KB4019990." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "¡No se ha podido modificar el Skylander!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "No se ha podido abrir «%1»" @@ -5697,6 +5793,10 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "¡No se ha podido abrir el archivo de configuración!" @@ -5726,33 +5826,33 @@ msgstr "" msgid "Failed to open file." msgstr "No se ha podido abrir el archivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "No se ha podido contactar con el servidor" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "¡No se ha podido abrir el archivo de Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"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 (%1)!\n" -"El archivo podría estar siendo ya usado por la base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "¡No se ha podido abrir el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"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 (%1)!\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\"." @@ -5774,7 +5874,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "No se han podido analizar los datos de redump.org" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" "No se ha podido convertir el valor asignado en el tipo de datos indicado." @@ -5798,39 +5898,35 @@ 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "¡No se ha podido leer el archivo de Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"¡No se ha podido leer el archivo de Infinity (%1)!\n" -"El archivo era demasiado pequeño." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "¡No se ha podido leer el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"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 (%1)!\n" -"El archivo es demasiado pequeño." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"No se han podido leer los contenidos del archivo:\n" -"\n" -"«%1»" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5872,31 +5968,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 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "No se ha podido guardar el registro FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 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/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "No se ha podido guardar el archivo en: %1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "No se ha podido guardar el archivo de firma «%1»" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 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:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5953,7 +6049,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Fallido" @@ -5961,11 +6057,11 @@ msgstr "Fallido" msgid "Fair Input Delay" msgstr "Retraso de entrada justo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Región de respaldo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Región de respaldo:" @@ -5978,7 +6074,7 @@ msgstr "Rápida" msgid "Fast Depth Calculation" msgstr "Cálculo de profundidad rápido" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5991,11 +6087,11 @@ msgstr "" msgid "Field of View" msgstr "Campo visual" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "N.º de figura:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "Tipo de figura" @@ -6003,9 +6099,9 @@ msgstr "Tipo de figura" msgid "File Details" msgstr "Detalles del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Formato del archivo" @@ -6017,20 +6113,20 @@ msgstr "Formato del archivo:" msgid "File Info" msgstr "Información del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nombre del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Ruta del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Tamaño del archivo" @@ -6038,7 +6134,7 @@ msgstr "Tamaño del archivo" msgid "File Size:" msgstr "Tamaño del archivo:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "El archivo no contenía códigos." @@ -6078,15 +6174,15 @@ msgstr "Sistema de archivos" msgid "Filters" msgstr "Filtros" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Buscar &siguiente" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Buscar &anterior" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Finalizar calibración" @@ -6100,7 +6196,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Fuego" @@ -6116,31 +6212,32 @@ msgstr "Reparar sumas de verificación" msgid "Fix Checksums Failed" msgstr "Fallo al reparar las sumas de verificación" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Indicadores" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Coma flotante" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Seguir &rama" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Para obtener los mejores resultados, mueve lentamente la entrada hacia todas " @@ -6154,7 +6251,7 @@ msgstr "" "Si necesitas ayuda, consulta esta página." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -6162,7 +6259,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" @@ -6170,7 +6267,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" @@ -6202,13 +6299,13 @@ msgstr "Forzar escucha en puerto:" msgid "Force Nearest" msgstr "Forzar vecino más cercano" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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." @@ -6257,17 +6354,17 @@ msgstr "Adelante" msgid "Forward port (UPnP)" msgstr "Reenviar puerto (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Encontrado(s) %1 resultado(s) para «%2»" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "Se ha(n) encontrado %n dirección(ones)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Fotograma %1" @@ -6288,7 +6385,7 @@ 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:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Volcado de fotogramas" @@ -6296,7 +6393,7 @@ msgstr "Volcado de fotogramas" msgid "Frame Range" msgstr "Información de la grabación" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" "Ya existe un volcado de imagen(es) llamado «{0}». ¿Quieres sustituirlo?" @@ -6321,7 +6418,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:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Mando %1 de la cámara libre" @@ -6356,7 +6453,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:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francés" @@ -6380,7 +6477,7 @@ msgstr "Desde" msgid "From:" msgstr "Desde:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Pant. completa" @@ -6412,7 +6509,7 @@ msgstr "Núcleo de GBA" msgid "GBA Port %1" msgstr "Puerto %1 GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "Ajustes de GBA" @@ -6554,20 +6651,20 @@ msgstr "" "GPU: ¿Tu tarjeta gráfica es compatible con OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Juego" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartuchos de Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6575,7 +6672,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:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance en el puerto %1" @@ -6603,8 +6700,8 @@ msgstr "Gamma del juego" msgid "Game Gamma:" msgstr "Gamma del juego:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID de juego" @@ -6669,11 +6766,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Mando de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Mando de GameCube en el puerto %1" @@ -6681,11 +6778,11 @@ msgstr "Mando de GameCube en el puerto %1" msgid "GameCube Controllers" msgstr "Mandos de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Teclado de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Configuración del teclado GameCube en el puerto %1" @@ -6698,11 +6795,11 @@ msgid "GameCube Memory Cards" msgstr "Tarjetas de memoria de GameCube" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Tarjetas de memoria de GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "Ranura de micrófono de GameCube %1" @@ -6730,7 +6827,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6740,35 +6837,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "General" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Ajustes generales" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Generar código de Action Replay" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Generar un nuevo identificador para estadísticas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Se ha generado el código AR." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemán" @@ -6780,18 +6877,18 @@ msgstr "Alemania" msgid "GetDeviceList failed: {0}" msgstr "Fallo en GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "Giant" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Giants" @@ -6804,8 +6901,8 @@ msgid "Good dump" msgstr "Volcado bueno" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gráficos" @@ -6849,7 +6946,7 @@ msgstr "Verde izquierdo" msgid "Green Right" msgstr "Verde derecho" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Vista en cuadrícula" @@ -6858,7 +6955,7 @@ msgstr "Vista en cuadrícula" msgid "Guitar" msgstr "Guitarra" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Giroscopio" @@ -6886,36 +6983,35 @@ msgstr "Posprocesado HDR" msgid "Hacks" msgstr "Arreglos temporales" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Inicio" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Ayuda" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Nivel de héroe:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hexadecimal" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "16 (hexad.)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "32 (hexad.)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "8 (hexad.)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Cadena hexadecimal en bytes" @@ -6928,7 +7024,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Esconder" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Ocultar todo" @@ -6944,12 +7044,12 @@ msgstr "Ocultar sesiones no compatibles" msgid "Hide Remote GBAs" msgstr "Ocultar GBAs remotas" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6958,14 +7058,8 @@ msgstr "Más alto" msgid "Hit Strength" msgstr "Fuerza de golpe" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Aciertos" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "FOV horizontal" @@ -6982,7 +7076,7 @@ msgstr "Código de anfitrión:" msgid "Host Input Authority" msgstr "Autoridad de entrada para el anfitrión" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Tamaño del anfitrión" @@ -7011,16 +7105,16 @@ msgstr "Autoridad de entrada para el anfitrión activada" msgid "Host with NetPlay" msgstr "Alojar partida de juego en red" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Nombre del anfitrión" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Ajustes de atajos" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Atajos del teclado" @@ -7030,7 +7124,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:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershaders híbridos" @@ -7044,16 +7138,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Soy consciente de los riesgos y quiero continuar" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "¡El ID que has escrito no es correcto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -7094,7 +7188,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilidad IR:" @@ -7147,11 +7241,11 @@ msgstr "" "Recomendado para juegos por turnos con controles sensibles al tiempo, como " "el golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Generación de identidad" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -7222,11 +7316,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorar" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorar cambios de formato" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Ignorar por esta vez" @@ -7259,7 +7357,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Mostrar directamente el contenido del XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7274,7 +7372,7 @@ msgstr "" "disminuye ligeramente el rendimiento.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Importar copia de respaldo de la NAND en formato BootMii..." @@ -7289,15 +7387,15 @@ msgstr "Fallo al importar" msgid "Import Save File(s)" msgstr "Importar archivo(s) de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importar partidas guardadas de Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importando copia de respaldo de la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7310,15 +7408,6 @@ msgstr "" msgid "In-Game?" msgstr "¿Dentro del juego?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Incluido: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Incluido: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7332,27 +7421,27 @@ msgstr "" "guardar/cargar.

Si tienes dudas, deja esta opción " "activada." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "¡El valor del nivel de héroe no es correcto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "¡La fecha de último uso no es correcta!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "¡La fecha de último reinicio no es correcta!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "¡El valor del dinero no es correcto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "¡El apodo no es correcto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "¡El valor del tiempo de juego no es correcto!" @@ -7397,15 +7486,16 @@ msgstr "Rotación incremental (IR)" msgid "Incremental Rotation (rad/sec)" msgstr "Rotación incremental (rad/seg) (IR)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Creador de figuras de Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Administrador de Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Objeto de Infinity (*.bin);;" @@ -7429,8 +7519,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Información" @@ -7444,10 +7534,10 @@ msgstr "Inyectar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Entrada" @@ -7461,20 +7551,26 @@ 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/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Insertar &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Insertar tarjeta SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Inspeccionado" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7488,7 +7584,7 @@ msgstr "Partición de instalación (%1)" msgid "Install Update" msgstr "Instalar actualización" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7496,11 +7592,13 @@ msgstr "Instalar WAD..." msgid "Install to the NAND" msgstr "Instalar en la NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instrucción" @@ -7509,7 +7607,7 @@ msgstr "Instrucción" msgid "Instruction Breakpoint" msgstr "Punto de interrupción de instrucción" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instrucción:" @@ -7518,7 +7616,7 @@ msgstr "Instrucción:" msgid "Instruction: %1" msgstr "Instrucción: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7539,19 +7637,19 @@ msgstr "Intensidad" msgid "Interface" msgstr "Interfaz" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Error interno de LZ4 - se ha intentado descomprimir {0} bytes" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Error interno de LZ4 - fallo al comprimir" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 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:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" "Error interno de LZ4 - error de coincidencia del tamaño de la carga ({0} / " @@ -7566,7 +7664,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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7575,7 +7673,7 @@ msgstr "" "No se ha podido recuperar la información de versión obsoleta del estado de " "guardado." -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7583,7 +7681,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:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7600,7 +7698,7 @@ msgstr "Resolución interna" msgid "Internal Resolution:" msgstr "Resolución interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Error interno al generar el código AR." @@ -7608,11 +7706,11 @@ msgstr "Error interno al generar el código AR." msgid "Interpreter (slowest)" msgstr "Intérprete (muy lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Intérprete de núcleo" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Expresión incorrecta." @@ -7626,7 +7724,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Código mixto incorrecto" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Paquete %1 no válido proporcionado: %2" @@ -7635,11 +7733,11 @@ msgstr "Paquete %1 no válido proporcionado: %2" msgid "Invalid Player ID" msgstr "ID de jugador incorrecto" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Dirección de módulo RSO incorrecta: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "La pila de llamadas («callstack») no es válida" @@ -7668,7 +7766,7 @@ msgstr "Los datos introducidos no son válidos" msgid "Invalid literal." msgstr "Literal no válido." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "No se han introducido unos parámetros de búsqueda válidos." @@ -7680,20 +7778,20 @@ msgstr "Contraseña proporcionada incorrecta." msgid "Invalid recording file" msgstr "Archivo de grabación erróneo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 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:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 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)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "ID de título incorrecto." @@ -7703,7 +7801,7 @@ 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:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7712,63 +7810,63 @@ msgid "Italy" msgstr "Italia" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "Objeto" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "Sin enlazado de bloques JIT" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "Bloques JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "Sin rama JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "Sin coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "Sin números enteros JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "Sin LoadStore de coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "Sin LoadStore JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "Sin LoadStore con parejas JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "Sin LoadStore lXz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "Sin LoadStore lbzx JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "Sin LoadStore lwz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "Sin JIT (núcleo JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "Sin emparejamiento JIT" @@ -7780,16 +7878,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:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "Sin registro de caché de JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "Sin SystemRegisters JIT" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7798,12 +7896,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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japón" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonés" @@ -7814,7 +7916,7 @@ msgstr "Japonés" msgid "Japanese (Shift-JIS)" msgstr "Japonés (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7822,7 +7924,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:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Seguir ejecutando" @@ -7836,7 +7938,7 @@ msgstr "Mantener siempre en primer plano" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Conservar direcciones cuyo valor en memoria" @@ -7857,7 +7959,7 @@ msgstr "Keyboard Controller (mando con teclado)" msgid "Keys" msgstr "Teclas" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7865,12 +7967,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Echar al jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -7881,7 +7983,7 @@ msgstr "Coreano" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "Carg&ar ROM" @@ -7891,7 +7993,7 @@ msgstr "Carg&ar ROM" msgid "L-Analog" msgstr "L analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "Guardar LR" @@ -7899,35 +8001,37 @@ msgstr "Guardar LR" msgid "Label" msgstr "Etiqueta" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Último valor" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "Último uso:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -8003,13 +8107,13 @@ msgstr "" msgid "Levers" msgstr "Palancas" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licencia" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Vida" @@ -8023,7 +8127,7 @@ msgstr "Levantar" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Luces" @@ -8031,11 +8135,11 @@ msgstr "Luces" msgid "Limit Chunked Upload Speed:" msgstr "Limite la velocidad de subida de datos:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Columnas en la lista" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Vista en lista" @@ -8046,29 +8150,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Cargar" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Cargar archiv&o de mapa incorrecto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Cargar archiv&o de mapa adicional..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Cargar texturas personalizadas" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Cargar archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Cargar menú principal de GameCube" @@ -8089,7 +8200,7 @@ msgstr "Ruta de carga:" msgid "Load ROM" msgstr "Cargar ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Cargar espacio" @@ -8178,19 +8289,19 @@ msgstr "Cargar estado 8" msgid "Load State Slot 9" msgstr "Cargar estado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Cargar estado desde un archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Cargar estado desde la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Cargar estado desde una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Cargar menú del sistema Wii %1" @@ -8202,16 +8313,16 @@ 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:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Cargar desde la ranura %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Cargar archivo de mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Cargar menú del sistema vWii %1" @@ -8219,11 +8330,11 @@ msgstr "Cargar menú del sistema vWii %1" msgid "Load..." msgstr "Cargar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Símbolos cargados desde «%1»" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8234,7 +8345,7 @@ msgstr "" "

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

If unsure, leave this unchecked." @@ -8257,7 +8368,7 @@ msgid "Locked" msgstr "Bloqueada" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Registro" @@ -8269,7 +8380,7 @@ msgstr "Configuración de registro" msgid "Log In" msgstr "Iniciar sesión" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Registros de cobertura de instrucciones JIT" @@ -8277,7 +8388,7 @@ msgstr "Registros de cobertura de instrucciones JIT" msgid "Log Out" msgstr "Cerrar sesión" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Guardar tiempos de dibujado en archivo" @@ -8293,7 +8404,7 @@ msgstr "Salida de registro" msgid "Login Failed" msgstr "Fallo al iniciar sesión" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8312,16 +8423,16 @@ 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:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8329,7 +8440,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "TERMINANDO" @@ -8339,7 +8450,7 @@ msgstr "Archivos Gameshark de MadCatz" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Magia" @@ -8347,37 +8458,37 @@ msgstr "Magia" msgid "Main Stick" msgstr "Palanca principal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "¡Asegúrate de que el valor del nivel de héroe sea de entre 0 y 100!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "¡Asegúrate de que el valor de la fecha de último uso sea válido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "¡Asegúrate de que el valor de la fecha de último reinicio sea válido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "¡Asegúrate de que el valor del dinero sea de entre 0 y 65000!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "¡Asegúrate de que el apodo tenga entre 0 y 15 caracteres!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "¡Asegúrate de que el valor del tiempo de juego sea válido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 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:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Creador" @@ -8399,12 +8510,12 @@ msgstr "" "del efecto.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Administrar NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Muestreo manual de texturas" @@ -8416,7 +8527,7 @@ msgstr "Asignación" msgid "Mask ROM" msgstr "Enmascarar ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Se han encontrado coincidencias" @@ -8433,16 +8544,16 @@ 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:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Medio" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Memoria" @@ -8454,7 +8565,7 @@ msgstr "Punto de interrupción en memoria" msgid "Memory Card" msgstr "Tarjeta de memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Administrador de tarjetas de memoria" @@ -8466,7 +8577,7 @@ msgstr "Ruta de la tarjeta de memoria:" msgid "Memory Override" msgstr "Control manual de la memoria" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Opciones de punto de interrupción en memoria" @@ -8482,7 +8593,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 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,29 +8604,33 @@ 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:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Micrófono" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Varios" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Otros ajustes" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8544,12 +8659,16 @@ msgstr "" "- Título: {3}\n" "- Hash: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8560,24 +8679,25 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "Modificar espacio" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "Modificando Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Módulos encontrados: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Dinero:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8589,16 +8709,16 @@ msgstr "Sombras monoscópicas" msgid "Monospaced Font" msgstr "Tipografía monoespaciada" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Entrada de movimientos" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Simulación de movimientos" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -8640,6 +8760,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8649,10 +8773,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "N&o a todo" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Comprobación de NAND" @@ -8661,8 +8785,8 @@ msgstr "Comprobación de NAND" msgid "NKit Warning" msgstr "Advertencia NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8671,7 +8795,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8694,25 +8818,25 @@ 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:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Nombre" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Nombre de la etiqueta a crear:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Nombre de la etiqueta a eliminar:" @@ -8721,7 +8845,7 @@ msgid "Name of your session shown in the server browser" msgstr "El nombre de su sesión se muestra en el navegador del servidor" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8786,7 +8910,7 @@ msgstr "" msgid "Network" msgstr "Red" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Formato del volcado de red:" @@ -8816,7 +8940,7 @@ msgstr "Nuevo archivo" msgid "New File (%1)" msgstr "Nuevo archivo (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Nueva búsqueda" @@ -8824,7 +8948,7 @@ msgstr "Nueva búsqueda" msgid "New Tag..." msgstr "Nueva etiqueta..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Se ha generado un identificador nuevo." @@ -8832,7 +8956,7 @@ msgstr "Se ha generado un identificador nuevo." msgid "New instruction:" msgstr "Nueva instrucción:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Nueva etiqueta" @@ -8841,7 +8965,7 @@ msgstr "Nueva etiqueta" msgid "Next Game Profile" msgstr "Siguiente perfil de juego" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Siguiente coincidencia" @@ -8855,7 +8979,7 @@ msgid "Nickname is too long." msgstr "El apodo es demasiado largo." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Apodo:" @@ -8869,7 +8993,7 @@ msgstr "No" msgid "No Adapter Detected" msgstr "No se ha detectado ningún adaptador" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "Sin alineación" @@ -8883,7 +9007,7 @@ msgstr "Sin salida de audio" msgid "No Compression" msgstr "Sin compresión" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Sin coincidencias" @@ -8891,16 +9015,16 @@ msgstr "Sin coincidencias" msgid "No Save Data" msgstr "No usar datos guardados" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "¡No hay datos que modificar!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Sin descripción" @@ -8916,15 +9040,15 @@ msgstr "No has elegido ninguna extensión." msgid "No file loaded / recorded." msgstr "No se ha cargado o grabado ningún archivo." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "No hay ningún juego en ejecución." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "No hay ningún juego en ejecución." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "No has elegido un mod de gráficos." @@ -8933,7 +9057,7 @@ msgstr "No has elegido un mod de gráficos." msgid "No input" msgstr "No hay entrada" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "No se ha detectado ningún problema." @@ -8945,10 +9069,6 @@ msgstr "No se ha encontrado el juego correspondiente" msgid "No paths found in the M3U file \"{0}\"" msgstr "No se encontraron rutas en el archivo M3U «{0}»" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "No quedan funciones posibles. Debes reiniciar." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "No se encontraron problemas." @@ -8964,11 +9084,11 @@ msgstr "" "verificación, lo más probable es que no haya problemas que afecten la " "emulación." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 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:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "No se ha cargado una grabación." @@ -8977,7 +9097,7 @@ msgstr "No se ha cargado una grabación." msgid "No save data found." msgstr "No se encontraron datos guardados." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "No se ha encontrado el archivo undo.dtm, abortando deshacer estado cargado " @@ -8986,11 +9106,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Ninguno" @@ -9056,7 +9176,7 @@ msgid "Null" msgstr "Nulo" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -9091,10 +9211,58 @@ msgstr "Palanca del Nunchuk" msgid "OK" msgstr "Aceptar" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Objeto %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Rango de objeto" @@ -9108,7 +9276,7 @@ msgstr "Oceanía" msgid "Off" msgstr "No" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Ajuste" @@ -9120,7 +9288,7 @@ msgstr "Encendido" msgid "On Movement" msgstr "Al moverlo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -9130,7 +9298,22 @@ 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/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Documentación en línea" @@ -9138,7 +9321,7 @@ msgstr "&Documentación en línea" msgid "Only Show Collection" msgstr "Mostrar solo tu colección" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9146,7 +9329,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:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9156,7 +9339,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Abrir" @@ -9165,11 +9348,11 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "Abrir &carpeta contenedora" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Abrir carpeta de &usuario" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Abrir directorio..." @@ -9190,7 +9373,7 @@ msgstr "Abrir XML de Riivolution..." msgid "Open Wii &Save Folder" msgstr "Abrir carpeta de datos &guardados de Wii" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Abrir carpeta del volcado" @@ -9223,11 +9406,11 @@ msgid "Operators" msgstr "Operadores" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opciones" @@ -9240,13 +9423,36 @@ msgstr "Naranja" msgid "Orbital" msgstr "Orbitar" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Otros" @@ -9259,7 +9465,7 @@ msgstr "Otra partición (%1)" msgid "Other State Hotkeys" msgstr "Otros atajos de guardado" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Otros elementos de guardado" @@ -9279,16 +9485,16 @@ msgstr "Remuestreo de salida" msgid "Output Resampling:" msgstr "Remuestreo de salida:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Reproducir pu&lsaciones grabadas..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9297,15 +9503,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: 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:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Nivel de compresión de PNG:" @@ -9313,11 +9519,11 @@ msgstr "Nivel de compresión de PNG:" msgid "PNG image file (*.png);; All Files (*)" msgstr "Archivo de imagen PNG (*.png);; Todos los archivos (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Tamaño de PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC contra anfitrión" @@ -9330,11 +9536,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parámetros" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Analizar como hexadecimal" @@ -9385,11 +9591,15 @@ msgstr "Ruta:" msgid "Paths" msgstr "Rutas" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pausar al terminar la grabación" @@ -9432,7 +9642,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:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Actualizar la consola a través de Internet" @@ -9440,33 +9650,33 @@ msgstr "Actualizar la consola a través de Internet" msgid "Perform System Update" msgstr "Actualizar la consola" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: 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:75 +#: 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:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Estadísticas de rendimiento" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Físico" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Espacio de la dirección física" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Elige una tipografía de depuración" @@ -9482,12 +9692,12 @@ msgstr "Cabeceo hacia arriba" msgid "Pitch Up" msgstr "Cabeceo hacia abajo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plataforma" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Jugar" @@ -9499,7 +9709,7 @@ msgstr "Reproducir/grabar" msgid "Play Recording" msgstr "Reproducir grabación" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Set de juego/Disco de poder" @@ -9511,27 +9721,27 @@ msgstr "Opciones de reproducción" msgid "Player" msgstr "Jugador" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Habilidad uno del jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Habilidad dos del jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Jugador dos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Habilidad uno del jugador dos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Habilidad dos del jugador dos" @@ -9540,7 +9750,8 @@ msgstr "Habilidad dos del jugador dos" msgid "Players" msgstr "Jugadores" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Tiempo de juego:" @@ -9554,7 +9765,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:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9562,17 +9773,21 @@ msgstr "" "estándar." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Puntero" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Puerto %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "ROM del puerto %1:" @@ -9581,7 +9796,7 @@ msgstr "ROM del puerto %1:" msgid "Port:" msgstr "Puerto:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Espacios del portal" @@ -9603,11 +9818,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Configuración del sombreador de posprocesado" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Precargar texturas personalizadas" @@ -9615,11 +9830,11 @@ msgstr "Precargar texturas personalizadas" 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:1314 +#: Source/Core/Core/Movie.cpp:1313 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:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Final prematuro de la grabación en PlayWiimote. {0} > {1} " @@ -9644,7 +9859,7 @@ msgstr "Pulsar el botón de sincronización" msgid "Pressure" msgstr "Presión" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9664,7 +9879,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Perfil anterior de juego" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Coincidencia anterior" @@ -9675,7 +9890,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitiva %1:" @@ -9687,7 +9902,7 @@ msgstr "Privado" msgid "Private and Public" msgstr "Privado y público" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problema" @@ -9727,8 +9942,8 @@ msgstr "Contador del programa (PC)" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Progreso" @@ -9736,11 +9951,11 @@ msgstr "Progreso" msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Vaciar la caché de la lista de juegos" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Debes guardar tus ROMs del IPL en User/GC/." @@ -9760,7 +9975,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." @@ -9768,7 +9983,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Pregunta" @@ -9789,19 +10004,19 @@ msgstr "R" msgid "R-Analog" msgstr "R analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "Listo" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "Módulos RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "Autodetección RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "Funcionando" @@ -9814,11 +10029,11 @@ msgstr "Archivos RVZ de GC/Wii (*.rvz)" msgid "Range" msgstr "Rango" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Fin del rango:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Inicio del rango:" @@ -9830,7 +10045,11 @@ msgstr "Rango %1" msgid "Raw" msgstr "Datos en bruto" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Reemplazar instrucción" @@ -9842,14 +10061,14 @@ msgstr "Leer" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Leer y escribir" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Solo lectura" @@ -9870,12 +10089,17 @@ msgstr "Balance Board real" msgid "Real Wii Remote" msgstr "Mando Wii real" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9889,7 +10113,7 @@ msgstr "Grabar" msgid "Record Inputs" msgstr "Grabar entradas" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Grabando" @@ -9931,7 +10155,7 @@ msgstr "" "de los sombreadores y las texturas.

Si tienes " "dudas, selecciona Ninguno." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Estado de redump.org:" @@ -9939,14 +10163,14 @@ msgstr "Estado de redump.org:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Actualizar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Actualizar valores actuales" @@ -9954,13 +10178,13 @@ msgstr "Actualizar valores actuales" msgid "Refresh Game List" msgstr "Actualizar lista de juegos" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" "La actualización ha fallado. Ejecuta el juego durante unos minutos y vuelve " "a intentarlo." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Se han actualizado los valores actuales." @@ -9969,8 +10193,8 @@ msgstr "Se han actualizado los valores actuales." msgid "Refreshing..." msgstr "Actualizando..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Región" @@ -9999,7 +10223,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Eliminar" @@ -10016,7 +10240,7 @@ msgstr "Eliminar datos basura (irreversible):" msgid "Remove Tag..." msgstr "Eliminar etiqueta..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Eliminar etiqueta" @@ -10030,8 +10254,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Renombrar símbolo" @@ -10039,11 +10263,11 @@ msgstr "Renombrar símbolo" msgid "Render Window" msgstr "Ventana de renderización" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10063,23 +10287,22 @@ msgstr "Solicitud para unirse a tu partida." #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reiniciar" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Reiniciar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Reiniciar el ignorado de errores y advertencias" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Reiniciar resultados" @@ -10107,6 +10330,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Administrador de paquetes de recursos" @@ -10123,7 +10350,7 @@ msgstr "Es necesario reiniciar." msgid "Restore Defaults" msgstr "Restaurar valores predeterminados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Restaurar instrucción" @@ -10140,7 +10367,7 @@ msgstr "Velocidad de retorno" msgid "Revision" msgstr "Revisión" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revisión: %1" @@ -10199,7 +10426,7 @@ msgstr "Balanceo a la derecha" msgid "Room ID" msgstr "ID de sala" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Rotación" @@ -10223,26 +10450,52 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibración" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Ejecutar has&ta aquí" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Ejecutar hasta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Ejecutar hasta (ignorando puntos de interrupción)" @@ -10258,19 +10511,19 @@ msgstr "Rusia" msgid "SD Card" msgstr "Tarjeta SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: 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:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Ruta de la tarjeta SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Ajustes de la tarjeta SD" @@ -10278,7 +10531,7 @@ msgstr "Ajustes de la tarjeta SD" msgid "SD Root:" msgstr "Raíz de la SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Carpeta de sincronización de la SD:" @@ -10291,7 +10544,7 @@ msgstr "Gamma para monitores SDR" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10299,11 +10552,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "Suma de verificación SHA1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "Entorno SSL" @@ -10313,11 +10566,11 @@ msgstr "Entorno SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Gua&rdar código" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Gua&rdar estado" @@ -10330,7 +10583,6 @@ msgstr "Segura" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10340,9 +10592,17 @@ msgstr "Guardar" msgid "Save All" msgstr "Guardar todo" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Exportar guardado" @@ -10351,24 +10611,24 @@ msgid "Save FIFO log" msgstr "Guardar registro FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Guardar archivo en" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Guardado de juego" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Archivos de guardado de juegos (*.sav);; Todos los archivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Importar guardado" @@ -10380,13 +10640,13 @@ msgstr "Guardar el estado más antiguo" msgid "Save Preset" msgstr "Guardar preajuste" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 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/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Guardar estado" @@ -10430,23 +10690,23 @@ msgstr "Ranura de guardado 8" msgid "Save State Slot 9" msgstr "Ranura de guardado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Guardar estado en archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Guardar estado en la ranura más antigua" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Guardar estado en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Guardar estado en ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Guardar map&a de símbolos como..." @@ -10454,7 +10714,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Guardar/Cargar estados" @@ -10466,11 +10726,11 @@ msgstr "Guardar como preajuste..." msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Guardar archivo de salida combinado como" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10480,15 +10740,15 @@ msgstr "" "una copia de seguridad de los datos actuales antes de sobrescribirlos.\n" "¿Deseas sobrescribir los datos?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Guardar en el mismo directorio que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Guardar archivo de mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Guardar archivo de firmas" @@ -10496,7 +10756,7 @@ msgstr "Guardar archivo de firmas" msgid "Save to Selected Slot" msgstr "Guardar en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Guardar en la ranura %1 - %2" @@ -10510,7 +10770,7 @@ msgstr "" "Solo se pueden reemparejar los mandos de Wii en mitad de una partida con un " "juego para Wii." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Guardados:" @@ -10522,26 +10782,26 @@ msgstr "El estado de la grabación {0} está dañado, deteniendo la grabación.. msgid "Scaled EFB Copy" msgstr "Copia del EFB a escala" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "El escaneo ha finalizado." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Pantallazo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Buscar" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Buscar dirección" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Buscar objeto actual" @@ -10549,11 +10809,11 @@ msgstr "Buscar objeto actual" msgid "Search Subfolders" msgstr "Buscar en subcarpetas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Buscar y filtrar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10561,7 +10821,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:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Buscar una instrucción" @@ -10569,11 +10829,11 @@ msgstr "Buscar una instrucción" msgid "Search games..." msgstr "Buscar juegos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Búsqueda de instrucciones" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Buscar:" @@ -10595,7 +10855,7 @@ msgstr "" "Sección que contiene la mayoría de los ajustes relacionados con la CPU y el " "hardware." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Opciones de seguridad" @@ -10603,28 +10863,36 @@ msgstr "Opciones de seguridad" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: 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:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Seleccionar directorio de exportación" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Seleccionar archivo de figura" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Seleccionar BIOS de GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Seleccionar ROM de GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Seleccionar ruta de archivos de guardado de GBA" @@ -10644,15 +10912,15 @@ msgstr "Seleccionar ruta de paquetes de recursos" msgid "Select Riivolution XML file" msgstr "Seleccionar archivo XML de Riivolution" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Seleccionar colección de Skylanders" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Seleccionar archivo de Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Ranura de guardado %1 - %2" @@ -10660,7 +10928,7 @@ msgstr "Ranura de guardado %1 - %2" msgid "Select State" msgstr "Cargar ranura de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Seleccionar ranura de guardado" @@ -10719,15 +10987,15 @@ msgstr "Seleccionar directorio" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Seleccionar archivo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10735,11 +11003,11 @@ 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:504 +#: 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:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Seleccionar archivo" @@ -10747,19 +11015,19 @@ msgstr "Seleccionar archivo" msgid "Select a game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Seleccionar título a instalar en la NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Seleccionar tarjetas e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Elige la dirección del módulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Seleccionar archivo de grabación a reproducir" @@ -10767,12 +11035,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:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Seleccionar archivo de claves (volcado OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Selecciona el archivo de guardado" @@ -10788,7 +11056,7 @@ msgstr "Elige dónde quieres guardar las imágenes convertidas" msgid "Selected Font" msgstr "Tipografía seleccionada" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "El perfil del mando seleccionado no existe" @@ -10800,15 +11068,15 @@ msgstr "El perfil del mando seleccionado no existe" 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:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Pila de llamadas del hilo seleccionado" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Contexto del hilo seleccionado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10817,7 +11085,7 @@ msgstr "" "

%1 no soporta esta característica." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10826,6 +11094,25 @@ msgstr "" "

Si tienes dudas, selecciona la primera opción." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10846,27 +11133,29 @@ msgstr "" "usado por ciertos televisores.

Si tienes dudas, " "selecciona «No»." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." -msgstr "" -"Selecciona la relación de aspecto que se usará al renderizar.
Cada juego " -"puede tener una relación de aspecto nativa ligeramente distinta." -"

Automática: Usar la relación de aspecto nativa.
Forzar 16:9: " -"Estira la imagen a una relación de aspecto de 16:9.
Forzar 4:3: Estira la " -"imagen a una relación de aspecto de 4:3.
Estirar a la ventana: Estira la " -"imagen al tamaño de la ventana.
Personalizada: Para juegos que utilicen " -"trucos específicos para forzar una relación personalizada." -"

Si tienes dudas, selecciona Automática.
The aspect " +"ratio of the image sent out by the original consoles varied depending on the " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10888,7 +11177,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posición de la barra sensora:" @@ -10916,16 +11205,12 @@ msgstr "Puerto del servidor" msgid "Server rejected traversal attempt" msgstr "El servidor de paso rechazó el intento de conexión" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Establecer &valor" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Poner &blr" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Establecer PC" @@ -10941,23 +11226,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Especifica la direción final del &símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Ajustar tamaño del &símbolo " -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Escribe la dirección final del símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Ajustar tamaño del símbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10967,11 +11252,11 @@ msgstr "" "los juegos PAL.\n" "Podría no funcionar con todos los juegos." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Establece el idioma del sistema de Wii." -#: 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." @@ -10979,7 +11264,7 @@ 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/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10994,20 +11279,20 @@ msgstr "" msgid "Settings" msgstr "Ajustes" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: No puedo crear archivo setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Gravedad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilación de sombreadores" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Sacudidas" @@ -11024,16 +11309,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Mando Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Mostrar velocidad porcentual" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Mostrar ®istro" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Mostrar barra de herramien&tas" @@ -11041,53 +11326,53 @@ 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:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Mostrar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Mostrar el juego actual en Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Mostrar primero los códigos desactivados" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Mostrar ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "Mostrar primero los códigos activados" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Mostrar fotogramas por segundo (FPS)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Mostrar duraciones de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Alemania" @@ -11099,23 +11384,23 @@ msgstr "Mostrar superposición de modo de golf" msgid "Show Infinity Base" msgstr "Mostrar base de Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Mostrar registro de teclas" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "Japón" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Mostrar indicador de retardo" @@ -11123,19 +11408,19 @@ msgstr "Mostrar indicador de retardo" msgid "Show Language:" msgstr "Mostrar idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Mostrar configuración de ®istro" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Mostrar latencia de juego en red" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Holanda" @@ -11143,32 +11428,36 @@ msgstr "Holanda" msgid "Show On-Screen Display Messages" msgstr "Mostrar mensajes en pantalla" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Mostrar PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Mostrar gráficas de rendimiento" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Mostrar plataformas" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Mostrar regiones" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Mostrar contador de regrabaciones" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Rusia" @@ -11176,72 +11465,72 @@ msgstr "Rusia" msgid "Show Skylanders Portal" msgstr "Mostrar portal de Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "España" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: 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:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostrar estadísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Mostrar reloj del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Taiwán" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Otros" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Mostrar duraciones de VBlanks" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Mostrar WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Mostrar juegos internacionales" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Mostrar en &memoria" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Mostrar en código" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Mostrar en memoria" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Mostrar en código" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Mostrar en memoria" @@ -11249,11 +11538,11 @@ msgstr "Mostrar en memoria" msgid "Show in server browser" msgstr "Mostrar en el navegador del servidor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "Mostrar objetivo en &memoria" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -11262,7 +11551,7 @@ msgstr "" "durante una partida de juego en red.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11283,7 +11572,7 @@ msgstr "" "velocidad completa.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11294,7 +11583,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11304,7 +11593,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:254 +#: 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." @@ -11314,7 +11603,7 @@ msgstr "" "de fluidez visual.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11333,7 +11622,13 @@ msgstr "" "juego en red.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11346,34 +11641,34 @@ msgstr "" msgid "Side-by-Side" msgstr "En paralelo" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Mantener en horizontal" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Cambiar de/a horizontal" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Mando de Wii en horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Base de datos de firmas" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Con signo de 16 bits" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Con signo de 32 bits" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Con signo de 8 bits" @@ -11382,7 +11677,7 @@ msgid "Signed Integer" msgstr "Entero con signo" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chino simplificado" @@ -11399,7 +11694,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." @@ -11407,11 +11702,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Omitir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Omitir dibujado" @@ -11459,24 +11754,24 @@ msgstr "" "tienes dudas, deja esta opción activada.
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Todos los archivos (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Ruta de la colección de Skylanders:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" "No se han encontrado Skylanders en esta colección. ¿Crear un archivo nuevo?" @@ -11485,12 +11780,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "Administrador de Skylanders" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" -"No se ha encontrado la carpeta de Skylanders para este usuario. ¿Crear una " -"carpeta nueva?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11500,7 +11789,7 @@ msgstr "Barra de deslizamiento" msgid "Slot A" msgstr "Ranura A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Ranura A:" @@ -11508,7 +11797,7 @@ msgstr "Ranura A:" msgid "Slot B" msgstr "Ranura B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Ranura B:" @@ -11516,7 +11805,7 @@ msgstr "Ranura B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Limita la posición del joystick a la más cercana al eje octogonal." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Panel de conexiones" @@ -11544,12 +11833,12 @@ msgstr "" "Algunos de los números proporcionados no son correctos.\n" "Comprueba todos los campos seleccionados." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Ordenar alfabéticamente" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Sonido:" @@ -11563,27 +11852,27 @@ msgstr "España" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Español" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Altavoz estéreo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volumen del altavoz:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Especializados (predeterminado)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Específico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11615,15 +11904,15 @@ msgstr "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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Final de la pila" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Inicio de la pila" @@ -11636,25 +11925,28 @@ msgstr "Mando de juego estándar" msgid "Start" msgstr "Comenzar" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Comenzar &juego en red..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Iniciar una nueva búsqueda de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Grabar pulsaciones" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Comenzar grabación" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Empezar en pantalla completa" @@ -11670,10 +11962,10 @@ msgstr "Comenzar con parches de Riivolution..." msgid "Started game" msgstr "Juego en ejecución" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Estado" @@ -11683,7 +11975,7 @@ msgstr "Volante" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Avanzar" @@ -11695,13 +11987,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Salir de" @@ -11717,7 +12009,7 @@ msgstr "Se ha cancelado el salto de instrucciones por tardar demasiado tiempo." msgid "Step over in progress..." msgstr "Saltando instrucciones..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Se han saltado las instrucciones." @@ -11726,7 +12018,7 @@ msgstr "Se han saltado las instrucciones." msgid "Stepping" msgstr "Avanzar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Estéreo" @@ -11756,18 +12048,14 @@ msgstr "Palanca" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Detener" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Detener la reproducción o grabación de pulsaciones" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Detener grabación" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Juego detenido" @@ -11811,7 +12099,7 @@ msgstr "" "XFB a la RAM (y textura)

Si tienes dudas, deja esta " "opción activada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Estirar a la ventana" @@ -11846,8 +12134,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Todo correcto" @@ -11874,7 +12162,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:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Se han extraído correctamente los certificados de la NAND." @@ -11886,12 +12174,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:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Archivo de guardado importado correctamente." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "El título ha sido instalado correctamente en la NAND." @@ -11902,11 +12190,11 @@ msgstr "El título ha sido desinstalado correctamente de la NAND. " #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Ayuda" @@ -11914,16 +12202,16 @@ msgstr "Ayuda" msgid "Supported file formats" msgstr "Formatos de archivo soportados" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Envolvente" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Suspendido" @@ -11933,12 +12221,12 @@ msgstr "Invertir ojos" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Swap Force" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "Swapper" @@ -11952,7 +12240,7 @@ msgstr "" "deja esta opción desactivada.
" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Oscilación" @@ -11966,39 +12254,21 @@ msgid "Switch to B" msgstr "Cambiar a B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Dirección final del símbolo (%1):" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"No se ha encontrado el mapa de símbolos.\n" -"\n" -"En caso de no existir, puedes generar uno desde la barra del menú:\n" -"Símbolos -> Generar el mapa a partir de... ->\n" -"\tDirección | Base de datos de firmas | Módulos RSO" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Nombre de símbolo:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Símbolos" @@ -12027,7 +12297,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12048,24 +12318,24 @@ msgid "Synchronizing save data..." msgstr "Sincronizando datos guardados..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Herramientas TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Etiquetas" @@ -12075,7 +12345,7 @@ msgstr "Etiquetas" msgid "Taiko Drum" msgstr "Tambor Taiko" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Cola" @@ -12083,15 +12353,15 @@ msgstr "Cola" msgid "Taiwan" msgstr "Taiwán" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Capturar pantalla" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "El rango de direcciones indicado no es válido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12101,7 +12371,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Tecnología" @@ -12109,6 +12379,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -12118,7 +12394,7 @@ msgstr "Caché de texturas" msgid "Texture Cache Accuracy" msgstr "Precisión de la caché de texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Volcado de texturas" @@ -12130,7 +12406,7 @@ msgstr "Filtrado de texturas" msgid "Texture Filtering:" msgstr "Filtrado de texturas:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Superponer formato de textura" @@ -12160,7 +12436,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "La tabla hash H3 para la partición {0} no es correcta." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "El archivo IPL no es un volcado correcto conocido. (CRC32: {0:x})" @@ -12174,7 +12450,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12182,7 +12458,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "La NAND ha sido reparada." @@ -12196,13 +12472,11 @@ msgstr "" "tarjeta SD, el menú del sistema de Wii no volverá a ejecutarse, impidiendo " "su copia o traslado de vuelta a la NAND." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: 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 debería tener este Skylander. Debe ser un valor de " -"entre 0 y 65000." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -12246,6 +12520,13 @@ msgstr "" "Es necesario añadir las claves de descifrado al archivo de respaldo de la " "NAND." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12269,7 +12550,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "No se encontró el disco que se iba a insertar." @@ -12291,17 +12572,17 @@ msgstr "La consola virtual ya está actualizada." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "La dirección MAC que has escrito no es correcta." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "El PID que has escrito no es correcto." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "El VID que has escrito no es correcto." @@ -12309,7 +12590,7 @@ msgstr "El VID que has escrito no es correcto." msgid "The expression contains a syntax error." msgstr "La expresión contiene un error de sintaxis" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12329,7 +12610,7 @@ msgstr "" "El archivo %1 ya existe.\n" "¿Desea reemplazarlo?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12350,7 +12631,7 @@ msgid "The file {0} was already open, the file header will not be written." msgstr "" "El archivo {0} ya estaba abierto, la cabecera de archivo no será escrita." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12364,7 +12645,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:573 +#: 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,13 +12716,11 @@ msgstr "Las sumas de verificación no coinciden." msgid "The hashes match!" msgstr "¡Sumas de verificación correctas!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"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 "" @@ -12455,11 +12734,11 @@ msgstr "" msgid "The install partition is missing." msgstr "Falta la partición de instalación." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "La última vez en la que se ha utilizado la figura en un portal." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12481,9 +12760,9 @@ msgstr "" "debes cambiar el dispositivo seleccionado a una tarjeta de memoria o una " "carpeta GCI." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "El apodo de este Skylander. Limitado a 15 caracteres." +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12515,14 +12794,14 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "El código AR descifrado que se ha obtenido no contiene ninguna línea." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." 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:596 +#: 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 "" @@ -12565,7 +12844,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "El archivo especificado «{0}» no existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12582,13 +12861,13 @@ msgstr "La tarjeta de memoria elegida ya contiene un archivo «%1»." msgid "The ticket is not correctly signed." msgstr "El ticket no está correctamente firmado" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" "El tiempo total que se ha utilizado esta figura dentro de un juego en " "segundos." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" "El código de juguete de esta figura. Solo disponible para figuras reales." @@ -12597,15 +12876,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "No se pudo leer el tipo de partición." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "¡El tipo de este Skylander no contiene datos que puedan modificarse!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "¡Este Skylander es de un tipo desconocido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12633,7 +12912,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12661,7 +12940,7 @@ msgstr "La partición {0} no está alineada correctamente." msgid "There are too many partitions in the first partition table." msgstr "Hay demasiadas particiones en la primera tabla de particiones." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12671,7 +12950,12 @@ msgstr "" "\n" "¿Quieres guardarlos antes de cerrar?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "¡No hay nada que deshacer!" @@ -12713,19 +12997,19 @@ msgstr "" "Este título coreano está configurado para utilizar un IOS que no se suele " "utilizar en las consolas coreanas. Esto podría provocar un ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "¡Este tipo de Skylander no puede modificarse todavía!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Este dispositivo USB ya está en la lista." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "No se puede arrancar desde este WAD." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Este WAD no es correcto." @@ -12881,6 +13165,10 @@ msgstr "" msgid "This is a good dump." msgstr "Este es un buen volcado." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Esta sesión requiere una contraseña:" @@ -12897,11 +13185,11 @@ msgstr "" "\n" "Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 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:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Este título no se puede arrancar." @@ -12914,7 +13202,7 @@ msgstr "Este título está configurado para utilizar un IOS no válido." msgid "This title is set to use an invalid common key." msgstr "Este título está configurado para utilizar una clave común no válida." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12926,7 +13214,7 @@ msgstr "" "\n" "DSPHLE: ucode desconcocido (CRC = {0:08x}) - forzando AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12953,6 +13241,13 @@ msgstr "" "Este valor se multiplica con la profundidad establecida en la configuración " "de gráficos." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12973,11 +13268,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Contexto del hilo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Hilos" @@ -12985,12 +13280,12 @@ msgstr "Hilos" msgid "Threshold" msgstr "Límite" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Inclinación" @@ -13006,10 +13301,10 @@ msgstr "" msgid "Timed Out" msgstr "Tiempo de espera agotado" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Título" @@ -13023,7 +13318,7 @@ msgstr "A" msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Alternar &pantalla completa" @@ -13048,7 +13343,7 @@ msgid "Toggle Aspect Ratio" msgstr "Alternar relación de aspecto" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Alternar punto de interrupción" @@ -13100,15 +13395,19 @@ msgstr "Alternar las copias del XFB" msgid "Toggle XFB Immediate Mode" msgstr "Alternar el modo inmediato del XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Fallo en la tokenización." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Barra de herramientas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Superior" @@ -13116,9 +13415,8 @@ msgstr "Superior" msgid "Top-and-Bottom" msgstr "Por encima/Por debajo" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Aciertos totales" @@ -13155,28 +13453,28 @@ msgstr "Distancia total del recorrido." msgid "Touch" msgstr "Tacto" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "Código de juguete:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chino tradicional" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "Trampa" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "Trap Master" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -13217,26 +13515,26 @@ msgid "Triggers" msgstr "Gatillos" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "Trofeo" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tipo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Alineación según tipo" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Espacio de dirección habitual de GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "Desconocido" @@ -13248,7 +13546,7 @@ msgstr "EE. UU." msgid "USB Device Emulation" msgstr "Emulación de dispositivos USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "Emulación de USB" @@ -13260,13 +13558,13 @@ msgstr "Dispositivos de emulación USB" msgid "USB Gecko" msgstr "USB de Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "Error en la lista de dispositivos USB permitidos" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -13277,7 +13575,7 @@ msgstr "" "equipos de gama baja.

Si tienes dudas, selecciona " "este modo." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13290,7 +13588,7 @@ msgstr "" "imagen con los ubershaders híbridos y tengas una tarjeta gráfica muy potente." "
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -13304,7 +13602,7 @@ msgstr "" "afectando mínimamente al rendimiento, pero los resultados dependerán del " "controlador de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "No se puede detectar el módulo RSO" @@ -13316,11 +13614,11 @@ msgstr "No se ha podido contactar con el servidor de actualizaciones." msgid "Unable to create updater copy." msgstr "No se ha podido crear una copia del actualizador." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "¡No se ha podido modificar el Skylander!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "No se ha podido abrir el archivo." @@ -13348,7 +13646,7 @@ msgstr "" "\n" "¿Te gustaría hacer caso omiso de esta línea y continuar el análisis?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "No se ha podido leer el archivo." @@ -13371,15 +13669,15 @@ msgstr "Archivos ISO de GC/Wii sin comprimir (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Muertos" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Deshacer carga del estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Deshacer guardado del estado" @@ -13399,11 +13697,11 @@ 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:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Estados Unidos" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13414,12 +13712,13 @@ msgstr "Estados Unidos" msgid "Unknown" msgstr "Desconocido" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Desconocido (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando desconocido de DVD {0:08x} - error fatal" @@ -13447,11 +13746,11 @@ msgstr "" "Mensaje desconocido SYNC_SAVE_DATA con id: {0} recibido del jugador: {1} " "¡Echando al jugador!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "¡Tipo de Skylander desconocido!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Espacio de dirección desconocido" @@ -13459,7 +13758,7 @@ msgstr "Espacio de dirección desconocido" msgid "Unknown author" msgstr "Autor desconocido" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Tipo de datos desconocido" @@ -13467,7 +13766,7 @@ msgstr "Tipo de datos desconocido" msgid "Unknown disc" msgstr "Disco desconocido" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Se ha producido un error desconocido." @@ -13488,16 +13787,18 @@ msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Mensaje desconocido con id:{0} recibido del jugador:{1} ¡Expulsando jugador!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Desconocido(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Desconocido(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Ilimitado" @@ -13530,22 +13831,22 @@ msgid "Unpacking" msgstr "Descomprimiendo" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "Hay cambios sin guardar" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Sin signo de 16 bits" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Sin signo de 32 bits" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Sin signo de 8 bits" @@ -13609,23 +13910,23 @@ msgstr "" "Actualizando el título %1...\n" "Esta operación puede llevar un tiempo." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Mantener en vertical" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Cambiar de/a vertical" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Mando de Wii en vertical" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Ajustes de envío de estadísticas de uso" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" "Introduce 8.8.8.8 para usar una DNS normal, de lo contrario, introduce tu " @@ -13639,15 +13940,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Usar códec sin pérdida (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "Utilizar apuntado con ratón" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usar modo PAL60 (EuRGB60)" @@ -13655,7 +13956,7 @@ msgstr "Usar modo PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Notificar de errores y advertencias" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13688,67 +13989,18 @@ msgstr "" "Utilizar un único búfer de profundidad para ambos ojos. Necesario para " "algunos juegos." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "Utilizar la configuración del asignador de memoria en la búsqueda" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Usar direcciones físicas" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Usar direcciones virtuales cuando sea posible" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" -"Se utiliza para encontrar funciones según el momento en el que funcionen.\n" -"Es similar al Ultimap de Cheat Engine.\n" -"Es necesario cargar un mapa de símbolos antes de usarlo.\n" -"Las listas de inclusión/exclusión persistirán al acabar o empezar la " -"emulación.\n" -"Estas listas no persistirán tras cerrar Dolphin.\n" -"\n" -"«Comenzar grabación»: hace un seguimiento de las funciones que se ejecuten.\n" -"«Detener grabación»: elimina la grabación actual sin modificar las listas.\n" -"«El código no ha sido ejecutado»: haz clic aquí durante una grabación para " -"añadir las funciones grabadas a una lista de exclusión y reiniciar después " -"la lista de grabación.\n" -"«El código ha sido ejecutado»: haz clic aquí durante una grabación para " -"añadir las funciones grabadas a una lista de inclusión y reiniciar después " -"la lista de grabación.\n" -"\n" -"Una vez hayas utilizado las listas de exclusión e inclusión una vez, se " -"restará la lista de exclusión a la de inclusión y se mostrará cualquier " -"función incluida que quede.\n" -"Puedes seguir usando los botones «El código no ha sido ejecutado»/«El código " -"ha sido ejecutado» para reducir más los resultados.\n" -"\n" -"Al guardar se conservará la lista actual en la carpeta Log de Dolphin (Abrir " -"-> Abrir carpeta de usuario)." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Configuración del usuario" @@ -13789,7 +14041,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13800,7 +14052,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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 tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Usando Qt %1" @@ -13818,31 +14070,31 @@ msgstr "Usando Qt %1" msgid "Using TTL %1 for probe packet" msgstr "Utilizando TTL %1 para paquete de sondeo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Habitualmente usado para las luces de los objetos" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Habitualmente usado para matrices normales" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "habitualmente usado para las matrices de posición" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Habitualmente usado para las matrices de coordenadas de texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Opciones útiles para el desarrollo" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Sincronización vertical" @@ -13850,11 +14102,11 @@ msgstr "Sincronización vertical" msgid "VBI Skip" msgstr "Omitir VBI" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "El valor ha sido localizado en la instrucción actual." @@ -13862,17 +14114,17 @@ msgstr "El valor ha sido localizado en la instrucción actual." msgid "Value:" msgstr "Valor:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "¡La variante que has escrito no es correcta!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Variante:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Vehículo" @@ -13888,16 +14140,16 @@ msgstr "Nivel de detalle" msgid "Verify" msgstr "Verificar" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verificar integridad" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Verificar certificados" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verificando" @@ -13911,7 +14163,7 @@ msgid "Vertex Rounding" msgstr "Redondeo de vértices" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "FOV vertical" @@ -13925,12 +14177,12 @@ msgid "Video" msgstr "Vídeo" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Ver &código" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Ver &memoria" @@ -13938,14 +14190,14 @@ msgstr "Ver &memoria" msgid "Virtual Notches" msgstr "Muescas virtuales" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Espacio de la dirección virtual" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volumen" @@ -13965,40 +14217,40 @@ msgstr "Subir volumen" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "Archivos WAD (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "Error en la instalación del WAD: no se pudieron crear los registros del " "Canal Tienda." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "Error en la instalación del WAD: no se pudo terminar la importación del " "título." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" "Error en la instalación del WAD: no se pudo importar el contenido {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "Error en la instalación del WAD: no se pudo comenzar la importación del " "título (error {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "Error en la instalación del WAD: el archivo seleccionado no está en formato " "WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "ESPERANDO" @@ -14050,12 +14302,12 @@ msgstr "Ruta del WFS:" msgid "WIA GC/Wii images (*.wia)" msgstr "Archivos WIA de GC/Wii (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Esperando a un primer escaneo..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -14074,7 +14326,7 @@ msgstr "" "

Si no es así y tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -14107,7 +14359,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Advertencia" @@ -14215,7 +14467,7 @@ msgstr "Vigilar" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Agua" @@ -14232,7 +14484,7 @@ msgstr "Occidental (Windows-1252)" msgid "Whammy" msgstr "Barra de trémolo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -14245,7 +14497,7 @@ msgstr "" "
Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -14258,7 +14510,7 @@ msgstr "" "arbitrarios.
Si tienes dudas, deja esta opción activada." "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivos USB permitidos para acceso directo a Bluetooth" @@ -14282,7 +14534,7 @@ msgstr "Menú de Wii" msgid "Wii NAND Root:" msgstr "Raíz de la NAND de Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Mando de Wii" @@ -14290,7 +14542,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -14308,7 +14560,7 @@ msgstr "Botones del mando de Wii" msgid "Wii Remote Gyroscope" msgstr "Giroscopio del mando de Wii" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Ajustes del mando de Wii" @@ -14328,7 +14580,7 @@ msgstr "Entrada TAS de Wii %1 - Mando de Wii" 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:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii y su mando" @@ -14336,11 +14588,11 @@ 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:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Archivos de guardado de Wii (*.bin);;Todos los archivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "Archivo de firmas MEGA de WiiTools" @@ -14353,11 +14605,23 @@ msgstr "" "esta se encuentre en primer plano. Puedes asignar un atajo de teclado para " "desanclarlo." +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Tamaño de la ventana" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Ajuste de línea" @@ -14371,10 +14635,14 @@ msgstr "Mundo" msgid "Write" msgstr "Escribir" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Solo escritura" @@ -14416,6 +14684,14 @@ msgstr "Región incorrecta" msgid "Wrong revision" msgstr "Revisión incorrecta" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14424,11 +14700,11 @@ msgstr "Revisión incorrecta" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Registro XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "Dirección de destino del BBA de XLink Kai" @@ -14463,7 +14739,7 @@ msgstr "Sí" msgid "Yes to &All" msgstr "Sí a &todo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14472,7 +14748,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:272 +#: 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 " @@ -14616,7 +14892,7 @@ msgstr "" "¿Quieres parar para resolver el problema?\n" "Si seleccionas «No», el audio se oirá con ruidos." -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14637,15 +14913,19 @@ 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 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Código «Zero» desconocido para Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] y [%3, %4]" @@ -14653,11 +14933,11 @@ msgstr "[%1, %2] y [%3, %4]" msgid "^ Xor" msgstr "^ Xor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "alineado" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "cualquier valor" @@ -14676,21 +14956,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "No se pudo cargar el archivo d3d12.dll" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "defecto" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "desconectado" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Tarjetas e-Reader (*.raw);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14698,31 +14978,35 @@ msgstr "errno" msgid "fake-completion" msgstr "Finalización falsa" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "es igual que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "es superior que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "es superior o igual que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "es inferior que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "es inferior o igual que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "no es igual que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "último valor" @@ -14732,7 +15016,7 @@ msgstr "último valor" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14744,13 +15028,13 @@ msgstr "" msgid "none" msgstr "Desactivar" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "no" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "sí" @@ -14767,16 +15051,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "este valor:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "sin alinear" @@ -14791,11 +15079,11 @@ msgstr "sin alinear" msgid "{0} (Masterpiece)" msgstr "{0} (Clásico)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "Se ha encontrado un IPL {0} en el directorio {1}. Es posible que no " @@ -14834,7 +15122,7 @@ msgstr "| O" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14846,8 +15134,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/fa.po b/Languages/po/fa.po index 1aedff199b6b..da6ff71620ce 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -59,8 +59,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -79,19 +79,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -112,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -151,6 +152,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -174,13 +180,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -196,12 +202,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +224,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -226,26 +232,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -283,20 +289,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -306,23 +312,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -330,12 +336,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -343,27 +349,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&نقاط انفصال" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -371,15 +377,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -387,19 +393,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -407,7 +418,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -424,9 +435,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -434,23 +445,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&برابرسازی" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -458,55 +469,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&فایل" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&پيشروى فریم" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "تنظیمات &گرافیک" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&کمک" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "تنظیم &شرت کاتها" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -514,19 +523,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&جیت" @@ -534,15 +543,19 @@ msgstr "&جیت" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&بارگذاری وضعیت" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -552,23 +565,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -577,23 +590,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&باز کردن..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&گزینه ها" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "مکث" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&شروع بازی" @@ -601,15 +614,15 @@ msgstr "&شروع بازی" msgid "&Properties" msgstr "خواص" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "ثبت کردن" @@ -617,41 +630,45 @@ msgstr "ثبت کردن" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "شروع &دوباره" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&توقف" @@ -659,15 +676,19 @@ msgstr "&توقف" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&ابزارها" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -677,17 +698,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -699,11 +720,11 @@ msgstr "&ویکی" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -719,7 +740,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -727,7 +748,7 @@ msgstr "" msgid "(off)" msgstr "(خاموش)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -747,15 +768,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -766,12 +787,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -783,7 +804,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -791,11 +812,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -807,17 +828,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -829,11 +850,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -845,7 +866,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -857,25 +878,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -889,11 +910,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -901,7 +922,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -917,7 +938,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -929,22 +950,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -952,11 +973,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -968,13 +989,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -990,7 +1011,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "<هیچ>" @@ -1002,11 +1023,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1036,12 +1057,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1051,7 +1072,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1061,11 +1082,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1081,6 +1102,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1102,7 +1127,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1111,8 +1136,8 @@ msgstr "" msgid "AR Codes" msgstr "کدهای اکشن ریپلی" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1126,7 +1151,7 @@ msgid "About Dolphin" msgstr "درباره دلفین" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1145,7 +1170,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1231,19 +1256,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1251,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "آداپتور:" @@ -1261,7 +1286,7 @@ msgstr "آداپتور:" msgid "Add" msgstr "اضافه کردن" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1290,51 +1315,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "اضافه کردن..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1395,12 +1417,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "پیشرفته" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1415,15 +1437,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1433,16 +1455,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1456,11 +1478,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1468,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1477,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1486,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1499,7 +1521,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1511,15 +1533,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1547,7 +1569,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1585,15 +1607,15 @@ msgstr "آنتی آلیاسینگ:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1611,7 +1633,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1643,12 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "نسبت طول به عرض تصویر:" @@ -1656,7 +1682,7 @@ msgstr "نسبت طول به عرض تصویر:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1664,7 +1690,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1681,7 +1707,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1689,11 +1715,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 "" @@ -1705,12 +1731,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "اتوماتیک" @@ -1718,11 +1744,7 @@ msgstr "اتوماتیک" msgid "Auto (Multiple of 640x528)" msgstr "اتوماتیک (ضریب ۶۴۰x۵۲۸)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1734,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1742,32 +1764,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1775,38 +1797,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "ثبت اشاره گر پایه" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "پشتوانه:" @@ -1822,13 +1848,13 @@ msgstr "ورودی پس زمینه" msgid "Backward" msgstr "به عقب" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1836,20 +1862,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "نشان" @@ -1869,15 +1895,15 @@ msgstr "نوار" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "بنیانی" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "تنظیمات بنیانی" @@ -1885,15 +1911,15 @@ msgstr "تنظیمات بنیانی" msgid "Bass" msgstr "بم" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1917,31 +1943,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1950,7 +1978,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1977,32 +2005,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "پائین" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2040,11 +2179,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2054,11 +2193,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2090,7 +2229,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2106,7 +2245,7 @@ msgstr "" msgid "Buttons" msgstr "دکمه ها" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2116,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "استیک سی" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2132,7 +2271,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2140,14 +2279,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2159,11 +2298,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2171,19 +2310,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2192,64 +2331,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2257,19 +2408,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2287,7 +2440,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2295,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "تعویض &دیسک..." @@ -2303,7 +2456,7 @@ msgstr "تعویض &دیسک..." msgid "Change Disc" msgstr "تعویض دیسک" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2311,7 +2464,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2337,7 +2490,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2349,15 +2502,15 @@ msgstr "گپ زدن" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "جستجوی کد تقلب" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2365,7 +2518,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2383,27 +2536,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "انتخاب فایل برای باز کردن" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2430,15 +2583,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "پاک کردن" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2446,7 +2603,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2455,36 +2612,20 @@ msgstr "" msgid "Close" msgstr "بستن" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2511,7 +2652,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2538,7 +2683,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2546,9 +2691,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2561,10 +2706,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2637,7 +2788,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "پیکربندی" @@ -2670,13 +2821,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2684,7 +2835,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "تائید برای توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2695,15 +2846,15 @@ msgstr "" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "اتصال کیبورد USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2723,7 +2874,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2764,7 +2915,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2788,7 +2939,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2851,8 +3002,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2860,9 +3011,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2870,9 +3021,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2892,8 +3043,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2929,15 +3080,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2945,19 +3096,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2975,6 +3126,11 @@ msgstr "" msgid "Core" msgstr "هسته" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2984,7 +3140,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3057,7 +3213,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3094,13 +3250,13 @@ msgstr "" msgid "Country:" msgstr "کشور:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3109,15 +3265,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3126,17 +3278,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3144,11 +3287,11 @@ msgstr "" msgid "Critical" msgstr "بحرانی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "حذف قسمتی از تصوير" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3160,26 +3303,26 @@ msgstr "" msgid "Crossfade" msgstr "ضرب دری" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3187,27 +3330,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3219,13 +3366,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3250,7 +3397,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 "" @@ -3258,15 +3405,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 "" @@ -3288,7 +3435,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3304,7 +3451,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3337,8 +3484,8 @@ msgstr "منطقه مرده" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "اشکال زدائی کردن" @@ -3347,7 +3494,7 @@ msgstr "اشکال زدائی کردن" msgid "Decimal" msgstr "دسیمال" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3394,7 +3541,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 "" @@ -3406,11 +3553,11 @@ msgstr "" msgid "Default ISO:" msgstr "آیزو پیش فرز:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3418,7 +3565,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3458,26 +3605,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "شرح" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3485,7 +3659,7 @@ msgstr "" msgid "Detect" msgstr "شناسایی" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3493,7 +3667,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3502,7 +3676,7 @@ msgid "Device" msgstr "دستگاه" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3511,11 +3685,11 @@ msgid "Device Settings" msgstr "تنظیمات دستگاه" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3523,11 +3697,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3539,12 +3709,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3556,7 +3726,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3564,11 +3734,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3576,11 +3746,11 @@ msgstr "" msgid "Disable Fog" msgstr "از کارانداختن مه" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3595,7 +3765,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3941,15 +4107,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "هلندی" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "خ&روج" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3975,7 +4141,7 @@ msgstr "به روز شدن های اولیه حافظه" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3988,7 +4154,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4004,15 +4170,15 @@ msgstr "افکت" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4022,7 +4188,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4030,11 +4196,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "ریسمان شبیه ساز قبلا اجرا شده است" @@ -4042,11 +4208,11 @@ msgstr "ریسمان شبیه ساز قبلا اجرا شده است" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4060,7 +4226,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4080,28 +4246,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4113,11 +4267,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "فعال کردن کدهای تقلب" @@ -4137,7 +4291,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "فعال کردن پردازنده با دو هسته یا بیشتر" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "فعال کردن پردازنده با دو هسته یا بیشتر (بالا بردن سرعت)" @@ -4157,7 +4311,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4183,6 +4337,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4196,7 +4354,7 @@ msgstr "فعال کردن واحد مدیریت حافظه" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "فعال کردن پويش تصاعدی (Progressive Scan)" @@ -4209,11 +4367,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "فعال کردن اسکیرین سیور" @@ -4225,15 +4383,15 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "فعال کردن خطوط فریم" @@ -4303,7 +4461,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4334,7 +4492,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4342,7 +4500,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4359,7 +4517,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 "" @@ -4387,7 +4545,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4395,7 +4553,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4403,7 +4561,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4428,7 +4586,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "انگلیسی" @@ -4437,7 +4595,7 @@ msgstr "انگلیسی" msgid "Enhancements" msgstr "بهسازی" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4459,11 +4617,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4472,8 +4636,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4484,45 +4648,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4532,16 +4702,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "خطا" @@ -4558,9 +4728,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4573,7 +4743,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4639,13 +4809,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4664,40 +4834,12 @@ msgstr "" msgid "Euphoria" msgstr "خوشی" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4705,7 +4847,7 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4713,7 +4855,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4725,15 +4867,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4741,11 +4883,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "" @@ -4760,7 +4902,7 @@ msgstr "" msgid "Export Recording" msgstr "صادر کردن ضبط" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "صادر کردن ضبط..." @@ -4788,14 +4930,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "پسوند" @@ -4816,7 +4958,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4849,12 +4991,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "پخش کننده فیفو" @@ -4872,7 +5014,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4880,12 +5022,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4913,19 +5055,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4945,15 +5088,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "دانلود کدها با شکست مواجه شد." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4966,7 +5109,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4989,33 +5132,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5026,7 +5165,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5035,18 +5174,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5058,19 +5197,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5080,13 +5221,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5094,6 +5243,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5120,28 +5273,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5161,7 +5318,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5183,31 +5340,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5241,31 +5401,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5316,7 +5476,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5324,11 +5484,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5341,7 +5501,7 @@ msgstr "سریع" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5352,11 +5512,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5364,9 +5524,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5378,20 +5538,20 @@ msgstr "" msgid "File Info" msgstr "مشخصات فایل" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5399,7 +5559,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "فایل شامل کدی نیست." @@ -5433,15 +5593,15 @@ msgstr "فایل سیستم" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5453,7 +5613,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5469,31 +5629,32 @@ msgstr "درست کردن چک سام ها" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5503,13 +5664,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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 "۱۶:۹ اجباری" @@ -5517,7 +5678,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 "۴:۳ اجباری" @@ -5549,11 +5710,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5590,17 +5751,17 @@ msgstr "جلو" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5621,7 +5782,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5629,7 +5790,7 @@ msgstr "" msgid "Frame Range" msgstr "محدوده فریم" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5653,7 +5814,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5684,7 +5845,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "فرانسوی" @@ -5708,7 +5869,7 @@ msgstr "از" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "تمام صفحه" @@ -5740,7 +5901,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5856,26 +6017,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5903,8 +6064,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5964,11 +6125,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5976,11 +6137,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5993,11 +6154,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6025,7 +6186,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "کدهای گیکو" @@ -6035,35 +6196,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "کلی" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "آلمانی" @@ -6075,18 +6236,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6099,8 +6260,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "گرافیک" @@ -6139,7 +6300,7 @@ msgstr "سبز چپ" msgid "Green Right" msgstr "سبز راست" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6148,7 +6309,7 @@ msgstr "" msgid "Guitar" msgstr "گیتار" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6176,36 +6337,35 @@ msgstr "" msgid "Hacks" msgstr "هک" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6218,7 +6378,11 @@ msgstr "" msgid "Hide" msgstr "مخفی" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6234,12 +6398,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6248,14 +6412,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6272,7 +6430,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6296,16 +6454,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "شرت کاتها" @@ -6314,7 +6472,7 @@ msgstr "شرت کاتها" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6328,16 +6486,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6372,7 +6530,7 @@ msgid "IR" msgstr "فروسرخ" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "میزان حساسیت فروسرخ" @@ -6405,11 +6563,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6455,11 +6613,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "تغییرات قالب بندی نادیده گرفته شود" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6483,7 +6645,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6492,7 +6654,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6507,15 +6669,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6526,15 +6688,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6543,27 +6696,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6608,15 +6761,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6636,8 +6790,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "مشخصات" @@ -6651,10 +6805,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "ورودی" @@ -6668,20 +6822,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "درج کارت اس دی" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6695,7 +6855,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6703,11 +6863,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6716,7 +6878,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6725,7 +6887,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6742,19 +6904,19 @@ msgstr "" msgid "Interface" msgstr "واسط گرافیک" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6767,19 +6929,19 @@ msgstr "خطای داخلی LZO - فشرده سازی با شکست مواجه msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6794,7 +6956,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "وضوح داخلی:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6802,11 +6964,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6818,7 +6980,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6827,11 +6989,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6860,7 +7022,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6872,19 +7034,19 @@ msgstr "" msgid "Invalid recording file" msgstr "فایل ضبط نامعتبر" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "پارامتر های جستجوی نامعتبر (هیچ شیئ انتخاب نشده)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "رشته جستجوی نامعتبر (قادر به تبدیل به عدد نیست)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "رشته جستجوی نامعتبر (فقط رشته های با طول زوج پشتیبانی می شود)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6894,7 +7056,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "ایتالیایی" @@ -6903,63 +7065,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6971,27 +7133,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "ژاپنی" @@ -7002,13 +7168,13 @@ msgstr "ژاپنی" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7022,7 +7188,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7043,7 +7209,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7051,12 +7217,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "کره ای" @@ -7067,7 +7233,7 @@ msgstr "کره ای" msgid "L" msgstr "ال" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7077,7 +7243,7 @@ msgstr "" msgid "L-Analog" msgstr "ال آنالوگ" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7085,35 +7251,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7183,13 +7351,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7203,7 +7371,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7211,11 +7379,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7226,29 +7394,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "بارگذاری" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "بارگذاری بافت اشیاء دلخواه" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7269,7 +7444,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7358,19 +7533,19 @@ msgstr "بارگذاری وضعیت - شکاف ۸" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7382,16 +7557,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7399,18 +7574,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7430,7 +7605,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "ثبت وقایع" @@ -7442,7 +7617,7 @@ msgstr "پیکر بندی ثبت وقایع" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7450,7 +7625,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7466,7 +7641,7 @@ msgstr "خروجی های واقعه نگار" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7481,16 +7656,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7498,7 +7673,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7508,7 +7683,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7516,37 +7691,37 @@ msgstr "" msgid "Main Stick" msgstr "استیک اصلی" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7563,12 +7738,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7580,7 +7755,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7597,16 +7772,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7618,7 +7793,7 @@ msgstr "" msgid "Memory Card" msgstr "کارت حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7630,7 +7805,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7646,7 +7821,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7654,29 +7829,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "متفرقه" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "تنظیمات متفرقه" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7696,36 +7875,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7737,16 +7921,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "موتور" @@ -7783,6 +7967,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7792,10 +7980,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7804,8 +7992,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7814,7 +8002,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7831,25 +8019,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7858,7 +8046,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7915,7 +8103,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7945,7 +8133,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7953,7 +8141,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7961,7 +8149,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7970,7 +8158,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7984,7 +8172,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -7998,7 +8186,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8012,7 +8200,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8020,16 +8208,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "تشریحی دردسترس نیست" @@ -8045,15 +8233,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8062,7 +8250,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8074,10 +8262,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8089,11 +8273,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8102,18 +8286,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "هیچ" @@ -8173,7 +8357,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8208,10 +8392,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "محدوده شیی" @@ -8225,7 +8457,7 @@ msgstr "" msgid "Off" msgstr "خاموش" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8237,14 +8469,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "" @@ -8252,13 +8499,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8266,7 +8513,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "گشودن" @@ -8275,11 +8522,11 @@ msgstr "گشودن" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8300,7 +8547,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8333,11 +8580,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "گزینه ها" @@ -8350,13 +8597,36 @@ msgstr "نارنجی" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "غیره" @@ -8369,7 +8639,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8389,16 +8659,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8407,15 +8677,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8423,11 +8693,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8440,11 +8710,11 @@ msgstr "گیم پد" msgid "Pads" msgstr "گیم پد ها" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8495,11 +8765,15 @@ msgstr "" msgid "Paths" msgstr "مسیرها" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "مکث" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8538,7 +8812,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "نورپردازی به ازای هر پیکسل" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8546,33 +8820,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8588,12 +8862,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "شروع بازی" @@ -8605,7 +8879,7 @@ msgstr "" msgid "Play Recording" msgstr "شروع ضبط" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8617,27 +8891,27 @@ msgstr "گزینه های بازنواخت" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8646,7 +8920,8 @@ msgstr "" msgid "Players" msgstr "بازی کنان" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8658,23 +8933,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8683,7 +8962,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8704,11 +8983,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8716,11 +8995,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8743,7 +9022,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8758,7 +9037,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8769,7 +9048,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8781,7 +9060,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8815,8 +9094,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8824,11 +9103,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8848,14 +9127,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "سوال" @@ -8876,19 +9155,19 @@ msgstr "آر" msgid "R-Analog" msgstr "آر آنالوگ" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8901,11 +9180,11 @@ msgstr "" msgid "Range" msgstr "محدوده" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8917,7 +9196,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8929,14 +9212,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8957,10 +9240,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8974,7 +9262,7 @@ msgstr "ضبط" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9009,7 +9297,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9017,14 +9305,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "به روز کردن" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9032,11 +9320,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9045,8 +9333,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9075,7 +9363,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "پاک کردن" @@ -9092,7 +9380,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9103,8 +9391,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9112,11 +9400,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "نمایش در پنجره اصلی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9132,23 +9420,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "شروع دوباره" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9176,6 +9463,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9192,7 +9483,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9209,7 +9500,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9268,7 +9559,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9286,26 +9577,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "شوک" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9321,19 +9638,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9341,7 +9658,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9354,7 +9671,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9362,11 +9679,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9376,11 +9693,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "ذخ&یره وضعیت" @@ -9393,7 +9710,6 @@ msgstr "بی خطر" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9403,9 +9719,17 @@ msgstr "ذخیره" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9414,24 +9738,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9443,13 +9767,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" @@ -9493,23 +9817,23 @@ msgstr "ذخیره وضعیت - شکاف ۸" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9517,7 +9841,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9529,26 +9853,26 @@ msgstr "" msgid "Save as..." msgstr "ذخیره بعنوان..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9556,7 +9880,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9568,7 +9892,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9580,26 +9904,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "کپی ای اف بی تغییر سایز یافته" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "عکس فوری" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "جستجو" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9607,17 +9931,17 @@ msgstr "" msgid "Search Subfolders" msgstr "جستجوی پوشه های فرعی" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9625,11 +9949,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9649,7 +9973,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9657,28 +9981,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9698,15 +10030,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9714,7 +10046,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9773,15 +10105,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9789,11 +10121,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9801,19 +10133,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9821,12 +10153,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "انتخاب فایل ذخیره" @@ -9842,7 +10174,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "پروفایل انتخاب شده وجود ندارد" @@ -9854,26 +10186,45 @@ msgstr "پروفایل انتخاب شده وجود ندارد" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9885,18 +10236,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9910,7 +10272,7 @@ msgstr "" msgid "Send" msgstr "فرستادن" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "موقعیت سنسور بار:" @@ -9934,16 +10296,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9959,40 +10317,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10004,20 +10362,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "لرزش" @@ -10034,16 +10392,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "نمایش &ثبت وقایع" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "نمایش نوار &ابزار" @@ -10051,53 +10409,53 @@ msgstr "نمایش نوار &ابزار" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "نمایش فریم بر ثانیه" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "نمایش فرانسه" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "نمایش گیم کیوب" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10109,23 +10467,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "نمایش ورودی تصویر" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "نمایش ایتالیا" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "نمایش کره" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10133,19 +10491,19 @@ msgstr "" msgid "Show Language:" msgstr "نمایش زبان:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "نمایش &پیکربندی ثبت وقایع" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10153,32 +10511,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "نمایش پایگاه ها" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "نمایش مناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10186,72 +10548,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "نمایش آمار" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "نمایش تایوان" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "نمایش ایالات متحده آمریکا" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "نمایش وی" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10259,65 +10621,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10327,34 +10695,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10363,7 +10731,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "چینی ساده شده" @@ -10380,17 +10748,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10425,24 +10793,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10450,10 +10818,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10463,7 +10827,7 @@ msgstr "" msgid "Slot A" msgstr "شکاف ای" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10471,7 +10835,7 @@ msgstr "" msgid "Slot B" msgstr "شکاف بی" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10479,7 +10843,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10503,12 +10867,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10522,27 +10886,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "اسپانیایی" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "حجم صدای اسپیکر:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10563,15 +10927,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10584,25 +10948,28 @@ msgstr "کنترولر استاندارد" msgid "Start" msgstr "شروع" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "شروع ضبط" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10618,10 +10985,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10631,7 +10998,7 @@ msgstr "چرخ فرمان" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10643,13 +11010,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10665,7 +11032,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10674,7 +11041,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10704,18 +11071,14 @@ msgstr "استیک" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10748,7 +11111,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "کشیدن تصویر به سایز فعلی پنجره" @@ -10783,8 +11146,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10811,7 +11174,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10823,12 +11186,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10839,11 +11202,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10851,16 +11214,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10870,12 +11233,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10886,7 +11249,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "نوسان" @@ -10900,34 +11263,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10953,7 +11303,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10972,24 +11322,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "زبان سیستم:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -10999,7 +11349,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11007,15 +11357,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "گرفتن عکس فوری" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11023,7 +11373,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11031,6 +11381,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11040,7 +11396,7 @@ msgstr "حافظه ميانى بافت اشیاء" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11052,7 +11408,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "قالب بندی بافت اشیاء" @@ -11075,7 +11431,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11089,13 +11445,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11106,11 +11462,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11143,6 +11499,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11160,7 +11523,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11180,17 +11543,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11198,7 +11561,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11212,7 +11575,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11228,7 +11591,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11239,7 +11602,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11296,9 +11659,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11312,11 +11675,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11330,8 +11693,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11358,12 +11721,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "نتیجه کد رمزگشایی شده اکشن ریپلی شامل هیچ خطی نیست." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11397,7 +11760,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11412,11 +11775,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11424,15 +11787,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11455,7 +11818,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11481,14 +11844,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11524,19 +11892,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11653,6 +12021,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11665,11 +12037,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11682,7 +12054,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11690,7 +12062,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11709,6 +12081,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11723,11 +12102,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11735,12 +12114,12 @@ msgstr "" msgid "Threshold" msgstr "سرحد" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "لرزیدن" @@ -11754,10 +12133,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "عنوان" @@ -11771,7 +12150,7 @@ msgstr "به" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11796,7 +12175,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11848,15 +12227,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "بالا" @@ -11864,9 +12247,8 @@ msgstr "بالا" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11903,28 +12285,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "چینی سنتی" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11961,26 +12343,26 @@ msgid "Triggers" msgstr "دکمه ها" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "نوع" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11992,7 +12374,7 @@ msgstr "ایالات متحده آمریکا" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12004,20 +12386,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12025,7 +12407,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12034,7 +12416,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12046,11 +12428,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12070,7 +12452,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12093,15 +12475,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "خنثی کردن وضعیت بارگذاری" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "" @@ -12119,11 +12501,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12134,12 +12516,13 @@ msgstr "" msgid "Unknown" msgstr "ناشناخته" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12163,11 +12546,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12175,7 +12558,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12183,7 +12566,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12203,16 +12586,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12245,22 +12630,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12322,23 +12707,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12350,15 +12735,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12366,7 +12751,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "استفاده از دستگذار پنیک" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12384,43 +12769,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12452,21 +12812,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12474,31 +12834,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "کاربردی" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "هماهنگ کردن فرکانس عمودی بازی با صفحه نمایش" @@ -12506,11 +12866,11 @@ msgstr "هماهنگ کردن فرکانس عمودی بازی با صفحه ن msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "مقدار" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12518,17 +12878,17 @@ msgstr "" msgid "Value:" msgstr "مقدار:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12544,16 +12904,16 @@ msgstr "دراز نویسی" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12567,7 +12927,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12581,12 +12941,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12594,14 +12954,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "حجم صدا" @@ -12621,31 +12981,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12684,12 +13044,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12700,7 +13060,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12722,7 +13082,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "اخطار" @@ -12794,7 +13154,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12811,7 +13171,7 @@ msgstr "" msgid "Whammy" msgstr "بد شانسی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12819,7 +13179,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12827,7 +13187,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12851,7 +13211,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "ریشه وی نند:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12859,7 +13219,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12877,7 +13237,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12897,7 +13257,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12905,11 +13265,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12919,11 +13279,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "پیچیدن کلمه" @@ -12937,10 +13309,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12982,6 +13358,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12990,11 +13374,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13029,14 +13413,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13133,7 +13517,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13151,15 +13535,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "کد صفر ۳ پشتیبانی نمی شود" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13167,11 +13555,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13190,21 +13578,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13212,31 +13600,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13246,7 +13638,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13256,13 +13648,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13279,16 +13671,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13303,11 +13699,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13342,7 +13738,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13351,8 +13747,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/fi.po b/Languages/po/fi.po index bee3b3438457..8c95f27e6acf 100644 --- a/Languages/po/fi.po +++ b/Languages/po/fi.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the Dolphin Emulator package. # # Translators: -# Aleksi, 2023 +# Aleksi, 2023-2024 # Ammuu5, 2018-2020 # Daniel K , 2019,2021,2023 # Daniel K , 2016 @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Aleksi, 2023\n" +"Last-Translator: Aleksi, 2023-2024\n" "Language-Team: Finnish (http://app.transifex.com/delroth/dolphin-emu/" "language/fi/)\n" "Language: fi\n" @@ -71,8 +71,8 @@ msgstr "$ Käyttäjän muuttuja" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -93,19 +93,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -126,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Sovelluksen mukana tullut)" @@ -144,7 +145,7 @@ msgstr "%1 (hidas)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 msgid "" @@ -168,6 +169,11 @@ msgstr "%1 Mt (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 ei tue tätä ominaisuutta järjestelmässäsi." @@ -194,7 +200,7 @@ msgstr "%1 liittyi" msgid "%1 has left" msgstr "%1 lähti" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -202,7 +208,7 @@ msgstr "" "%1 on avannut %2/%3 saavutusta (joista %4 vaikeita), saavuttaen %5/%6 " "pistettä (%7 vaikeaa)" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 on avannut %2/%3 saavutusta, saavuttaen %4/%5 pistettä" @@ -218,12 +224,12 @@ msgstr "%1 golffaa nyt" msgid "%1 is playing %2" msgstr "%1 on pelissä %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -240,7 +246,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%" @@ -248,26 +254,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "Kohdan %1 arvoa käytetään" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -305,20 +311,20 @@ msgstr "%1x alkuperäinen (%2x%3) %4-laadulle" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n osoitetta ei voinut hakea emuloidussa muistissa." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n osoite(tta) jäljellä." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -328,23 +334,23 @@ msgstr "%n osoite(tta) poistettiin." msgid "& And" msgstr "& Ja" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Tietoa" @@ -352,12 +358,12 @@ msgstr "&Tietoa" msgid "&Add Memory Breakpoint" msgstr "&Lisää muistin keskeytyskohta" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Lisää uusi koodi..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Lisää funktio" @@ -365,27 +371,27 @@ msgstr "&Lisää funktio" msgid "&Add..." msgstr "&Lisää..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" -msgstr "" +msgstr "&Konekielen kääntäjä" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Ääniasetukset" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Automaattinen päivitys:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Reunaton ikkuna" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Keskeytyskohdat" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Vianhallintajärjestelmä" @@ -393,15 +399,15 @@ msgstr "&Vianhallintajärjestelmä" msgid "&Cancel" msgstr "&Peruuta" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Huijauskoodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Tarkista päivitykset..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Tyhjennä symbolit" @@ -409,19 +415,24 @@ msgstr "&Tyhjennä symbolit" msgid "&Clone..." msgstr "&Kloonaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Koodi" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Yhdistetty" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Ohjainasetukset" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Kopioi osoite" @@ -429,7 +440,7 @@ msgstr "&Kopioi osoite" msgid "&Create..." msgstr "&Luo..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Poista" @@ -446,9 +457,9 @@ msgstr "&Poista vahti" msgid "&Delete Watches" msgstr "&Poista vahdit" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Muokkaa koodia..." @@ -456,23 +467,23 @@ msgstr "&Muokkaa koodia..." msgid "&Edit..." msgstr "&Muokkaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Poista levy" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulaatio" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Vie" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Vie pelin tallennustiedosto..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Vie tila..." @@ -480,55 +491,53 @@ msgstr "&Vie tila..." msgid "&Export as .gci..." msgstr "Vie .gci-muodossa..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Fontti..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Kehys kerrallaan" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&Vapaan katselun asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Luo symbolit lähteestä" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub-repositorio" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Mene funktion alkuun" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Grafiikka-asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Ohjeet" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Pikanäppäinasetukset" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Tuo" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Tuo pelin tallennustiedosto..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Tuo tila..." @@ -536,19 +545,19 @@ msgstr "&Tuo tila..." msgid "&Import..." msgstr "&Tuo..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Infinity-alusta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Lisää blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Kehysten välinen sekoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -556,15 +565,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Lataa tila" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Lataa symbolikartta" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Lataa tiedosto nykyiseen osoitteeseen" @@ -574,23 +587,23 @@ msgstr "&Lataa tiedosto nykyiseen osoitteeseen" msgid "&Lock Watches" msgstr "&Lukitse vahdit" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Lukitse käyttöliittymäelementit paikoilleen" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Muisti" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Nauhoitus" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Mykistä" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Verkko" @@ -599,23 +612,23 @@ msgid "&No" msgstr "&Ei" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Avaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Muuta HLE-funktiot" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Keskeytä" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Käynnistä" @@ -623,15 +636,15 @@ msgstr "&Käynnistä" msgid "&Properties" msgstr "&Ominaisuudet" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Vain luku -tila" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Päivitä lista" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Rekisterit" @@ -639,41 +652,45 @@ msgstr "&Rekisterit" msgid "&Remove" msgstr "&Poista" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Poista koodi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Nimeä symboli uudelleen" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Nollaa" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Resurssipakettien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Tallenna symbolikartta" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "&Skannaa e-Reader kortteja..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "&Skylanders-portaali" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Nopeusrajoitus:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Lopeta" @@ -681,15 +698,19 @@ msgstr "&Lopeta" msgid "&Theme:" msgstr "&Teema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Säikeet" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Työkalut" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&Poista ROM" @@ -699,17 +720,17 @@ msgstr "&Poista ROM" msgid "&Unlock Watches" msgstr "&Poista vahtien lukitus" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Vahti" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Kotisivu" @@ -721,11 +742,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "K&yllä" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "Kohdetta '%1' ei löydy, symbolinimiä ei luotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "Kohdetta '%1' ei löydy, etsitään sen sijaan yleisiä funktioita" @@ -741,7 +762,7 @@ msgstr "(Vaalea)" msgid "(System)" msgstr "(Järjestelmä)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(isäntä)" @@ -749,7 +770,7 @@ msgstr "(isäntä)" msgid "(off)" msgstr "(pois)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -769,15 +790,15 @@ msgstr ", Pilkku" msgid "- Subtract" msgstr "- Vähennyslasku" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Tuntematon--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -788,12 +809,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Jakolasku" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -805,7 +826,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 lohkoa)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -813,11 +834,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 tavua" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -829,17 +850,17 @@ msgstr "16 Mbit (251 lohkoa)" msgid "16-bit" msgstr "16-bittinen" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16-bittinen etumerkillinen kokonaisluku" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16-bittinen etumerkitön kokonaisluku" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -851,11 +872,11 @@ msgstr "16-kertainen anisotrooppinen" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -867,7 +888,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2-kertainen anisotrooppinen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -879,25 +900,25 @@ msgstr "32 Mbit (507 lohkoa)" msgid "32-bit" msgstr "32-bittinen" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32-bittinen liukuluku" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32-bittinen etumerkillinen kokonaisluku" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -911,11 +932,11 @@ msgstr "3D-syvyys" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 tavua" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -923,7 +944,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 lohkoa)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -939,7 +960,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4-kertainen anisotrooppinen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -951,22 +972,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 lohkoa)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64-bittinen liukuluku" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64-bittinen etumerkillinen kokonaisluku" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64-bittinen etumerkitön kokonaisluku" @@ -974,11 +995,11 @@ msgstr "64-bittinen etumerkitön kokonaisluku" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 tavua" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -990,13 +1011,13 @@ msgstr "8 Mbit (123 lohkoa)" msgid "8-bit" msgstr "8-bittinen" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8-bittinen etumerkillinen kokonaisluku" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8-bittinen etumerkitön kokonaisluku" @@ -1012,7 +1033,7 @@ msgstr "8-kertainen anisotrooppinen" msgid "< Less-than" msgstr "< Pienempi kuin" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1022,13 +1043,13 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 msgid "Disabled in Hardcore Mode." -msgstr "" +msgstr "Poissa käytöstä Hardcore-tilassa." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "Ellet ole varma, jätä tämä pois." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1051,24 +1072,26 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:51 msgid "" "Error on line %1 col %2" -msgstr "" +msgstr "Virhe" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:528 msgid "" "Warning invalid base address, " "defaulting to 0" msgstr "" +"Varoitus virheellinen pohjaosoite, " +"käytetään oletusarvona 0:aa" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:289 msgid "> Greater-than" msgstr "> Suurempi kuin" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Nettipeli-istunto on jo käynnissä!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1084,7 +1107,7 @@ msgstr "" "\n" "Tämän WADin asennus korvaa sen peruuttamattomasti. Jatketaanko?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Levyä ollaan jo laittamassa." @@ -1096,11 +1119,11 @@ msgstr "" "Toimintoja, jotka tekevät väreistä tarkempia, jotta värit vastaisivat " "paremmin Wii- ja GC-pelien tarkoitettua väriavaruutta." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1120,6 +1143,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1155,7 +1182,7 @@ msgstr "" "toimi oikein.\n" "Käytä omalla vastuulla.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Action Replay -koodi" @@ -1164,8 +1191,8 @@ msgstr "Action Replay -koodi" msgid "AR Codes" msgstr "Action Replay -koodit" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1179,7 +1206,7 @@ msgid "About Dolphin" msgstr "Tietoa Dolphinista" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Kiihtyvyysanturi" @@ -1195,10 +1222,10 @@ msgstr "Tarkkuus:" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "Saavutusasetukset" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Saavutukset" @@ -1207,6 +1234,8 @@ 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" @@ -1304,19 +1333,19 @@ msgstr "Aktivoi nettipelin keskustelu" msgid "Active" msgstr "Aktiivinen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Aktiiviset Infinity-hahmot:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Aktiivisten säikeiden jono" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Aktiiviset säikeet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Sovitin" @@ -1324,7 +1353,7 @@ msgstr "Sovitin" msgid "Adapter Detected" msgstr "Sovitin havaittu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Sovitin:" @@ -1334,7 +1363,7 @@ msgstr "Sovitin:" msgid "Add" msgstr "Lisää" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Lisää &keskeytyskohta" @@ -1363,51 +1392,48 @@ msgstr "Lisää muistikeskeytyskohta" msgid "Add memory &breakpoint" msgstr "Lisää muisti&keskeytyskohta" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Lisää &vahtiin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Lisää..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Osoite" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Osoiteavaruus" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Osoiteavaruus CPU-tilan mukaan" @@ -1427,6 +1453,14 @@ msgid "" "option is incompatible with Manual Texture Sampling." "

If unsure, select 'Default'." msgstr "" +"Säädä tekstuurien suodatusta. Anisotrooppinen suodatus parantaa niiden " +"tekstuurien, jotka näkyvät vinosti, visuaalista laatua. \"Pakota lähin\" ja " +"\"Pakota lineaarinen\" korvaavat pelin valitseman " +"tekstuuriskaalaussuodattimen.

Mikä tahansa valinta paitsi 'Oletus' " +"muuttaa pelin tekstuurien ulkonäköä ja voi aiheuttaa ongelmia muutamissa " +"peleissä.

Valinta ei sovi yhteen manuaalisen tekstuuriotannan kanssa." +"

Ellet ole varma, valiitse 'Oletus'." #. i18n: Refers to plastic shell of game controller (stick gate) that limits stick movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:107 @@ -1488,12 +1522,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Lisäasetukset" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Lisäasetukset" @@ -1508,40 +1542,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"Asetus vaikuttaa siihen, kuinka pelin kuva skaalautuu ikkunan kokoon." -"
Suorituskyky riippuu lähinnä menetelmän käyttämien näytteiden määrästä." -"
SSAA-tekniikkaan verrattuna uudelleenotanta on hyödyllistä silloin, kun " -"peli-ikkunan
koko ei ole emuloidun ruudun koon moninkerta." -"

Oletus - [nopein]
Grafiikkasuorittimen sisäinen " -"bilineaarinen otanta, johon ei sisälly gamma-korjausta.
Valinta saatetaan " -"sivuuttaa, jos gamma-korjaus pakotetaan käyttöön.

Bilineaarinen - [4 näytettä]
Gamma-korjattu lineaarinen interpolointi pikselien " -"välillä.

Bikuutiollinen - [16 näytettä]
Gamma-korjattu " -"kuutiollinen interpolointi pikselien välillä.
Valinta sopii hyvin, kun " -"koot ovat lähellä toisiaan, esim. 1080p ja 1440p.
Sisältää useita " -"vaihtoehtoja:
B-Spline: Sumea, mutta estää tietyt häiriöt." -"
Mitchell-Netravali: Hyvä välimuoto sumean ja häiriöisen " -"vaihtoehdon väliltä
Catmull-Rom: Terävämpi, mutta voi aiheuttaa " -"häiriöitä

Terävä bilineaarinen - [1–4 näytettä]
Kuten Lähin " -"pikseli -vaihtoehto, tämä valinta tarjoaa terävän kuvan,
mutta lisäksi " -"käyttää hieman värisekoitusta välttääkseen välkkymisen.
Valinta toimii " -"parhaiten kaksiulotteisissa, pientä erotteluakykyä hyödyntävissä peleissä." -"

Alueotanta - [jopa 324 näytettä]
Asetus painottaa eri " -"pikseleitä niiden peittämän pinta-alan perusteella. Sisältää gamma-" -"korjauksen.
Toimii parhaiten tilanteissa, joissa kuvaa pienennetään " -"enemmän kuin kaksinkertaisesti.

Ellet ole varma, " -"valitse \"Oletus\"." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1549,22 +1560,22 @@ msgstr "Afrikka" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Ilma" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Datatyypin kokoon kohdistettu" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Kaikki" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:585 msgid "All Assembly files" -msgstr "" +msgstr "Kaikki konekooditiedostot" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 @@ -1572,11 +1583,11 @@ msgid "All Double" msgstr "Kaikki 64-bittisinä liukulukuina" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1584,7 +1595,7 @@ msgid "All Files" msgstr "Kaikki tiedostot" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Kaikki tiedostot (*)" @@ -1593,7 +1604,7 @@ msgstr "Kaikki tiedostot (*)" msgid "All Float" msgstr "Kaikki 32-bittisinä liukulukuina" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Kaikki GC-/Wii-tiedostot" @@ -1602,8 +1613,8 @@ msgstr "Kaikki GC-/Wii-tiedostot" msgid "All Hexadecimal" msgstr "Kaikki heksadesimaalisina" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Kaikki tilatallennukset (*.sav *.s##);; Kaikki tiedostot (*)" @@ -1615,7 +1626,7 @@ msgstr "Kaikki etumerkillisinä kokonaislukuina" msgid "All Unsigned Integer" msgstr "Kaikki etumerkittöminä kokonaislukuina" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Kaikki tiedostot (*)" @@ -1627,15 +1638,15 @@ msgstr "Kaikkien pelaajien koodit synkronoitu." msgid "All players' saves synchronized." msgstr "Kaikkien pelaajien tallennustiedostot synkronoitu." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Salli sopimattomat alueasetukset" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Salli käyttötilastojen raportointi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Salli SD-kortille kirjoittaminen" @@ -1665,7 +1676,7 @@ msgstr "Aina" msgid "Always Connected" msgstr "Aina yhdistetty" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "Aina &päällimmäisenä" @@ -1703,15 +1714,15 @@ msgstr "Reunanpehmennys:" msgid "Any Region" msgstr "Mikä vain alue" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Lisää allekirjoitus kohteeseen" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Lisää allekirjoitus &olemassaolevaan allekirjoitustiedostoon..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Käyt&ä allekirjoitustiedostoa..." @@ -1731,7 +1742,7 @@ msgstr "Apploaderin päiväys:" msgid "Apply" msgstr "Käytä" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Käytä allekirjoitustiedostoa" @@ -1763,30 +1774,34 @@ msgstr "Oletko varma?" msgid "Area Sampling" msgstr "Alueotanta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Kuvasuhde" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Kuvasuhde:" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" -msgstr "" +msgstr "Tulkkaa" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" -msgstr "" +msgstr "Tulkkaa käsky" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" -msgstr "" +msgstr "Konekoodi" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" -msgstr "" +msgstr "Konekooditiedosto" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Assign Controller Ports" @@ -1803,7 +1818,7 @@ msgstr "" "Vähintään kahdella valituista tallennustiedostoista on sama sisäinen " "tiedostonimi." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Liitä MotionPlus" @@ -1811,11 +1826,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" @@ -1827,12 +1842,12 @@ msgstr "Australia" msgid "Author" msgstr "Tekijä" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Tekijät" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automaattinen" @@ -1840,11 +1855,7 @@ msgstr "Automaattinen" msgid "Auto (Multiple of 640x528)" msgstr "Automaattinen (640x528:n moninkerta)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Automaattisen päivityksen asetukset" @@ -1860,7 +1871,7 @@ msgstr "" "\n" "Valitse tietty sisäinen kuvatarkkuus. " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Säädä ikkunan kokoa automaattisesti" @@ -1868,15 +1879,15 @@ msgstr "Säädä ikkunan kokoa automaattisesti" msgid "Auto-Hide" msgstr "Automaattinen piilotus" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Havaitaanko RSO-moduulit automaattisesti?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Automaattinen synkronointi kansion kanssa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1885,18 +1896,18 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" -msgstr "" +msgstr "Muuta nykyiset arvot automaattisesti" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Apumuisti" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1904,7 +1915,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT on virheellinen. Dolphin sulkeutuu nyt" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1914,31 +1925,35 @@ msgstr "" "Nintendo GameCuben MAC-osoitetta on käytettä. Luo uusi MAC-osoite, joka " "alkaa joko okteteilla 00:09:bf tai 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP-rekisteri " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Ketju kutsujan suuntaan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Sisäinen järjestelmä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Sisäinen järjestelmä:" @@ -1954,13 +1969,13 @@ msgstr "Taustasyöttö" msgid "Backward" msgstr "Taaksepäin" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Virheellinen arvo annettu" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Virheellinen osoite annettu" @@ -1968,20 +1983,20 @@ msgstr "Virheellinen osoite annettu" msgid "Bad dump" msgstr "Huono vedos" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Virheellinen ero annettu." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Virheellinen arvo annettu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banneri" @@ -1999,17 +2014,17 @@ msgstr "Kampi" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:417 msgid "Base Address" -msgstr "" +msgstr "Pohjaosoite" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Perusprioriteetti" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Perustiedot" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Perusasetukset" @@ -2017,15 +2032,15 @@ msgstr "Perusasetukset" msgid "Bass" msgstr "Basso" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Sarjatilaa ei voi käyttää määräämättä peliä, joka käynnistetään." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Paristo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (kerran kuukaudessa)" @@ -2049,33 +2064,33 @@ msgstr "Bikuutiollinen: Mitchell-Netravali" msgid "Bilinear" msgstr "Bilineaarinen" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Binäärinen SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Binäärinen SSL (luku)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Binäärinen SSL (kirjoitus)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bittivirta (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"Tyhjän hahmon luonti epäonnistui, kohta:\n" -"%1, yritä uudelleen eri hahmolla" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Lohkokoko" @@ -2084,7 +2099,7 @@ msgstr "Lohkokoko" msgid "Block Size:" msgstr "Lohkokoko:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Viivyttävä" @@ -2113,32 +2128,143 @@ 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:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Käynnistä keskeytettynä" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMiin NAND-varmuuskopiotiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMiin avaintiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Reunaton koko näytön tila" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Alareuna" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Haara: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Haarat" @@ -2176,11 +2302,11 @@ msgstr "Broadband-sovitin (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Broadband-sovitin (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "Broadband-sovittimen DNS-asetukset" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Broadband-sovittimen virhe" @@ -2190,11 +2316,11 @@ msgstr "Broadband-sovittimen virhe" msgid "Broadband Adapter MAC Address" msgstr "Broadband-sovittimen MAC-osoit" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2229,7 +2355,7 @@ msgstr "Painike" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2245,9 +2371,9 @@ msgstr "Painike" msgid "Buttons" msgstr "Painikkeet" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" -msgstr "" +msgstr "Tekijä(t): %1" #: Source/Core/Core/HW/GCPadEmu.cpp:57 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:31 @@ -2255,11 +2381,11 @@ msgstr "" msgid "C Stick" msgstr "C-sauva" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "L&uo allekirjoitustiedosto..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP-rekisteri " @@ -2271,7 +2397,7 @@ msgstr "Suorittimen emulointimoottori:" msgid "CPU Options" msgstr "Suoritinasetukset" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2279,7 +2405,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Välimuistillinen tulkki (hitaampi)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2290,7 +2416,7 @@ msgstr "" "korjaa mahdollisen pätkinnän.

Ellet ole varma, jätä " "tämä valitsematta." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Laske" @@ -2308,11 +2434,11 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibroi" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Kalibrointi" @@ -2320,19 +2446,19 @@ msgstr "Kalibrointi" msgid "Calibration Period" msgstr "Kalibrointiaika" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Kutsu näyttölistaa kohdassa %1 koolla %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Kutsujat" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Kutsut" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Kutsupino" @@ -2341,67 +2467,79 @@ msgid "Camera 1" msgstr "Kamera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Kameran näkökenttä (vaikuttaa osoituksen herkkyyteen)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "Vain virtuaalisessa muistissa oleville arvoille voi luoda AR-koodeja." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "Tätä asetusta ei voi vielä vaihtaa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "Tämän palkinnon roistoja ei voi muuttaa!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Peruuta kalibrointi" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "FIFO ei tue askellusta. Käytä sen sijaan Kehys kerrallaan -ominaisuutta." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Tätä WADia ei pysty käynnistämään, koska sitä ei pystytty asentamaan NAND-" "muistiin." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "GC-IPL:ää ei löydy." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Tälle osoitteelle ei voi luoda AR-koodeja." @@ -2409,19 +2547,21 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "Muistikorttia ei voi asettaa tyhjäksi hakemistopoluksi." -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Vangittu roisto %1:" @@ -2439,7 +2579,7 @@ msgstr "Keskipiste" msgid "Center Mouse" msgstr "Keskitä hiiri" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Keskitä ja kalibr" @@ -2447,7 +2587,7 @@ msgstr "Keskitä ja kalibr" msgid "Change &Disc" msgstr "Vaihda &levy" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Vaihda &levy..." @@ -2455,7 +2595,7 @@ msgstr "Vaihda &levy..." msgid "Change Disc" msgstr "Vaihda levy" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Vaihda levyä automaattisesti" @@ -2463,7 +2603,7 @@ msgstr "Vaihda levyä automaattisesti" msgid "Change the disc to {0}" msgstr "Vaihda levy {0}:ksi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2504,7 +2644,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Kanavaosio (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "Asetettu hahmo on virheellinen!" @@ -2516,15 +2656,15 @@ msgstr "Keskustelu" msgid "Cheat Code Editor" msgstr "Huijauskoodien muokkaus" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Koodihaku" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Koodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Tarkista NAND..." @@ -2532,7 +2672,7 @@ msgstr "Tarkista NAND..." msgid "Check for Game List Changes in the Background" msgstr "Tarkista pelilistan päivitykset taustalla" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Tarkista päivitykset" @@ -2552,27 +2692,27 @@ msgstr "Tarkistussumma" msgid "China" msgstr "Kiina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Valitse" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Valitse avattava tiedosto" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: 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:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Valitse ensisijainen syötetiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Valitse toissijainen syötetiedosto" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Valitse GCI-pohjakansio" @@ -2599,15 +2739,19 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Tyhjennä" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Tyhjennä välimuisti" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Tyhjennä paikka" @@ -2615,7 +2759,7 @@ msgstr "Tyhjennä paikka" msgid "Clock Override" msgstr "Kellotaajuuden korvaus" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Kloonaa ja &muokkaa koodia..." @@ -2624,37 +2768,21 @@ msgstr "Kloonaa ja &muokkaa koodia..." msgid "Close" msgstr "Sulje" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "As&etukset" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Koodi" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Koodien erotyökalu" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Koodien erotyökalun ohje" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "Koodi ei tullut suoritetuksi" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "Koodi tuli suoritetuksi" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2680,7 +2808,11 @@ msgstr "Värinkorjaus:" msgid "Color Space" msgstr "Väriavaruus" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Yhdistä &kaksi allekirjoitustiedostoa..." @@ -2713,7 +2845,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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Käännä varjostimet ennen käynnistystä" @@ -2721,9 +2853,9 @@ msgstr "Käännä varjostimet ennen käynnistystä" msgid "Compiling Shaders" msgstr "Käännetään varjostimia" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Pakkausmenetelmä" @@ -2736,10 +2868,16 @@ msgstr "Pakkaustaso:" msgid "Compression:" msgstr "Pakkausmenetelmä:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2859,7 +2997,7 @@ msgstr "" "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:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Asetukset" @@ -2892,13 +3030,13 @@ msgstr "Ulostuloasetukset" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Vahvista" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Vahvista sisäisen järjestelmän muutos" @@ -2906,7 +3044,7 @@ msgstr "Vahvista sisäisen järjestelmän muutos" msgid "Confirm on Stop" msgstr "Vahvista pysäytyksessä" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2917,15 +3055,15 @@ msgstr "Vahvistus" msgid "Connect" msgstr "Yhdistä" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Yhdistä tasapainolauta" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Yhdistä USB-näppäimistö" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Yhdistä Wii Remote %1" @@ -2945,7 +3083,7 @@ msgstr "Yhdistä Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Yhdistä Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Yhdistä Wii Remoteja" @@ -2986,7 +3124,7 @@ msgstr "Ohjaa nettipelin golf-tilaa" msgid "Control Stick" msgstr "Ohjainsauva" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Ohjainprofiili" @@ -3010,7 +3148,7 @@ msgstr "Ohjainprofiili 4" msgid "Controller Settings" msgstr "Ohjainasetukset" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Ohjaimet" @@ -3021,6 +3159,11 @@ msgid "" "display.

HDR output is required for this setting to take effect." "

If unsure, leave this at 203." msgstr "" +"Säätää paperinvalkean pinnan luminanssia nit-yksikköinä. Asetus on " +"hyödyllistä säätää erilaisia valaistusympäristöjä varten, kun käytössä on " +"HDR-näyttö.

Asetuksella on vaikutusta vain, kun käytössä on HDR-" +"ulostulo.

Ellet ole varma, jätä tämän arvoksi 203." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" @@ -3093,8 +3236,8 @@ msgstr "Yhtenevyys" msgid "Convergence:" msgstr "Yhtenevyys:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Muunto epäonnistui." @@ -3102,9 +3245,9 @@ msgstr "Muunto epäonnistui." msgid "Convert" msgstr "Muunna" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3112,9 +3255,9 @@ msgstr "Muunna tiedosto kansioksi nyt" msgid "Convert File..." msgstr "Muunna tiedosto..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3136,8 +3279,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:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Muunnetaan..." @@ -3188,15 +3331,15 @@ msgstr "" msgid "Copy" msgstr "Kopioi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopioi %funktio" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Kopioi &heksa" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Kopioi osoite" @@ -3204,19 +3347,19 @@ msgstr "Kopioi osoite" msgid "Copy Failed" msgstr "Kopiointi epäonnistui" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Kopioi heksa" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Kopioi arvo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Kopioi koodi&rivi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Kopioi koh&deosoite" @@ -3234,6 +3377,11 @@ msgstr "Kopioi B:hen" msgid "Core" msgstr "Ydin" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Korjaa väriavaruus" @@ -3243,7 +3391,7 @@ msgid "Correct SDR Gamma" msgstr "Korjaa SDR-gamma" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Hinta" @@ -3336,7 +3484,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Tiedoston {0} tunnistus epäonnistui" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Muutoksia ei voinut tallentaa!" @@ -3381,13 +3529,13 @@ msgstr "Tiedoston luku epäonnistui." msgid "Country:" msgstr "Maa:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Luo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Luo Infinity-tiedosto" @@ -3396,15 +3544,11 @@ msgstr "Luo Infinity-tiedosto" msgid "Create New Memory Card" msgstr "Luo uusi muistikortti" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Luo Skylander-tiedosto" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Luo Skylander-kansio" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Luo ohjainmäärityksiä muille laitteille" @@ -3413,22 +3557,8 @@ msgstr "Luo ohjainmäärityksiä muille laitteille" msgid "Create..." msgstr "Luo..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Luo kehysvedoksia ja kuvakaappauksia hahmontajan sisäisen kuvatarkkuuden " -"mukaisesti, sen sijaan että ne mukailisivat näytetyn ikkunan kokoa." -"

Jos kuvasuhde on laajakuva, tulosta venytetään vaakasuunnassa " -"pystytarkkuuden säilyttämiseksi.

Ellet ole varma, " -"jätä tämä valitsematta." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Tekijä:" @@ -3436,27 +3566,31 @@ msgstr "Tekijä:" msgid "Critical" msgstr "Kriittinen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Rajaa" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." "

If unsure, leave this unchecked." msgstr "" +"Rajaa kuvan alkuperäisestä kuvasuhteestaan (joka on vain harvoin täsmälleen " +"4:3 tai 16:9) tiettyyn käyttäjän valitsemaan kuvasuhteeseen (esim. 4:3 tai " +"16:9).

Ellet ole varma, jätä tämä valitsematta." #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:82 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:175 msgid "Crossfade" msgstr "Ristihäivytys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: 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:380 +#: 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, " @@ -3467,15 +3601,15 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Nykyinen alue" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Nykyinen arvo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Nykyinen konteksti" @@ -3483,29 +3617,33 @@ msgstr "Nykyinen konteksti" msgid "Current game" msgstr "Nykyinen peli" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Nykyinen säie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" +msgstr "Muokattu" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Nykyinen osoiteavaruus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "" +msgstr "Muokatun kuvasuhteen korkeus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "" +msgstr "Muokatun kuvasuhteen leveys" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "Muokattu kuvasuhde:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3515,13 +3653,13 @@ msgstr "Mukautetun reaaliaikaisen kellon asetukset" msgid "Custom:" msgstr "Muokattu:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Muokkaa" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3548,7 +3686,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" @@ -3556,15 +3694,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)" @@ -3590,7 +3728,7 @@ msgstr "Tanssimatto" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Pimeys" @@ -3606,7 +3744,7 @@ msgstr "Dataosio (%1)" msgid "Data Transfer" msgstr "Datan siirto" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Datatyyppi" @@ -3640,8 +3778,8 @@ msgstr "Katvealue" msgid "Debug" msgstr "Virheenjäljitys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Virheenjäljitys" @@ -3650,7 +3788,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:" @@ -3697,7 +3835,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" @@ -3709,11 +3847,11 @@ msgstr "Oletusfontti" msgid "Default ISO:" msgstr "Oletus-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Oletussäie" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Lykkää EFB-välimuistin mitätöintiä" @@ -3721,7 +3859,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:384 +#: 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 " @@ -3768,26 +3906,53 @@ msgstr "Syvyysprosentti:" msgid "Depth:" msgstr "Syvyys:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Kuvaus" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Kuvaus:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" +msgstr "Kuvaus: %" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Irrallinen" @@ -3795,7 +3960,7 @@ msgstr "Irrallinen" msgid "Detect" msgstr "Havaitse" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Havaitaan RSO-moduuleja" @@ -3803,7 +3968,7 @@ msgstr "Havaitaan RSO-moduuleja" msgid "Deterministic dual core:" msgstr "Deterministinen kaksoisydintila:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Kehitysversiot (monia kertoja päivässä)" @@ -3812,7 +3977,7 @@ msgid "Device" msgstr "Laite" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Laitteen PID (esim. 0305)" @@ -3821,11 +3986,11 @@ msgid "Device Settings" msgstr "Laiteasetukset" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3833,11 +3998,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Ero" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3849,12 +4010,12 @@ msgstr "Suora yhteys" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "Ei &yhteyttä" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Poista käytöstä" @@ -3866,7 +4027,7 @@ msgstr "Poista rajoituslaatikko" msgid "Disable Copy Filter" msgstr "Poista kopiointisuodatin käytöstä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Poista EFB-VRAM-kopiointi käytöstä" @@ -3874,11 +4035,11 @@ msgstr "Poista EFB-VRAM-kopiointi käytöstä" msgid "Disable Emulation Speed Limit" msgstr "Poista emulaation nopeusrajoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Poista nopea muistihaku (Fastmem) käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "Poista nopean muistikäytön kenttä käytöstä" @@ -3886,13 +4047,13 @@ msgstr "Poista nopean muistikäytön kenttä käytöstä" msgid "Disable Fog" msgstr "Poista sumu käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Poista JIT-välimuisti käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" -msgstr "" +msgstr "Poista laaja koodin tulokohtien hakurakenne käytöstä" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:214 msgid "Disabled" @@ -3909,7 +4070,7 @@ msgstr "" "rikkoutuvat.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4274,7 +4431,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4293,15 +4450,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Hollanti" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "P&oistu" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "EFB-kopio &1" @@ -4335,7 +4492,7 @@ msgstr "Aikaiset muistipäivitykset" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Maa" @@ -4348,7 +4505,7 @@ msgstr "Itä-Aasia" msgid "Edit Breakpoint" msgstr "Muokkaa keskeytyskohtaa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Muokkaa..." @@ -4364,15 +4521,15 @@ msgstr "Tehoste" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Näennäinen" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Toiminnallinen prioriteetti" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4382,7 +4539,7 @@ msgstr "Poista levy" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Elementti" @@ -4390,11 +4547,11 @@ msgstr "Elementti" msgid "Embedded Frame Buffer (EFB)" msgstr "Sulautettu kehyspuskuri (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Tyhjä" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emulaattorisäie on jo käynnissä" @@ -4402,11 +4559,11 @@ msgstr "Emulaattorisäie on jo käynnissä" msgid "Emulate Disc Speed" msgstr "Emuloi levyn nopeutta" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Emuloi Infinity-alustaa" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Emuloi Skylander-portaalia" @@ -4422,7 +4579,7 @@ msgstr "" "Emuloi oikean laitteiston optisen levyn nopeutta. Käytöstä poistaminen " "saattaa aiheutaa epävakautta. Oletuksena True" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Emuloidut USB-laitteet" @@ -4445,28 +4602,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Emulaation nopeus" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "Emulointi pitää käynnistää, jotta nauhoitus olisi mahdollista." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Käytä ohjelmointirajapinnan tarkistuskerroksia" @@ -4478,11 +4623,11 @@ msgstr "Ota saavutusten ansiomerkit käyttöön" msgid "Enable Achievements" msgstr "Ota saavutukset käyttöö" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Käytä äänen venytystä" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Ota huijauskoodit käyttöön" @@ -4502,7 +4647,7 @@ msgstr "Ota virheenkorjauskäyttöliittymä käyttöön" msgid "Enable Dual Core" msgstr "Ota kaksiydinsuoritin käyttöön" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Ota kaksiydinsuoritin käyttöön (nopeuttaa)" @@ -4522,13 +4667,13 @@ msgstr "Ota Encore-saavutukset käyttöön" msgid "Enable FPRF" msgstr "Ota FPRF käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Käytä grafiikkamodeja" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "Ota Hardcore-tila käyttöön" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 msgid "" @@ -4548,6 +4693,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Ota tulostaulukot käyttö" @@ -4561,7 +4710,7 @@ msgstr "Ota MMU käyttöön" msgid "Enable Progress Notifications" msgstr "Ota edistymisilmoitukset käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Ota progressiivinen kuva käyttöön" @@ -4574,11 +4723,11 @@ msgid "Enable Rich Presence" msgstr "Ilmoita Rich Presence" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Ota tärinä käyttöön" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ota näytönsäästäjä käyttöön" @@ -4590,15 +4739,15 @@ msgstr "Käytä kaiutindataa" msgid "Enable Unofficial Achievements" msgstr "Ota epäviralliset saavutukset käyttöön" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Ota käyttötilastojen raportointi käyttöön" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: 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:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ota rautalankatila käyttöön" @@ -4699,7 +4848,7 @@ msgstr "" "viimeistelemättömiä saavutuksia, joita RetroAchievements ei pidä " "virallisina. Ne voivat olla hyödyllisiä testaamisessa tai hauskanpidossa." -#: 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." @@ -4725,6 +4874,15 @@ msgid "" "Texture Decoding.

If unsure, leave this unchecked." msgstr "" +"Tunnistaa mielivaltaiset mipmapit, joita jotkin pelit käyttävät erityisiin " +"etäisyysperusteisiin tehosteisiin.

Voi johtaa vääriin tunnistuksiin, " +"jotka puolestaan aiheuttavat sumeita tekstuureja korkeilla sisäisillä " +"kuvatarkkuuksilla, kuten peleissä, jotka käyttävät erittäin " +"matalatarkkuuksisia mipmapeja. Tämän poistaminen käytöstä voi myös vähentää " +"pätkintää peleissä, jotka lataavat usein uusia tekstuureja. Tämä ominaisuus " +"ei sovi yhteen grafiikkasuorittimen tekstuuripurun kanssa." +"

Ellet ole varma, jätä tämä valitsematta." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:85 msgid "" @@ -4739,7 +4897,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4753,7 +4911,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4781,7 +4939,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." @@ -4793,6 +4951,12 @@ msgid "" "Detection.

If unsure, leave this unchecked." msgstr "" +"Ottaa käyttöön tekstuurien purkamisen grafiikkasuorittimella suorittimen " +"sijaan.

Tämä voi parantaa suorituskykyä tietyissä tilanteissa ja " +"järjestelmissä, joissa suoritin toimii pullonkaulana.
Toiminto ei sovi " +"yhteen mielivaltaisten mipmapien tunnistuksen kanssa." +"


Ellet ole varma, jätä tämä valitsematta." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100 msgid "" @@ -4812,7 +4976,7 @@ msgstr "" "POIS = Nopea)

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4824,7 +4988,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:302 +#: 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 " @@ -4837,7 +5001,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4868,7 +5032,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Englanti" @@ -4877,7 +5041,7 @@ msgstr "Englanti" msgid "Enhancements" msgstr "Parannukset" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "Syötä XLink Kai -asiakasohjelmistoa suorittavan laitteen IP-osoite:" @@ -4899,11 +5063,17 @@ msgstr "Syötä uusi Broadband-sovittimen MAC-osoite:" msgid "Enter password" msgstr "Anna salasana" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Syötä käytettävä DNS-palvelin:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Syötä RSO-moduulin osoite:" @@ -4912,8 +5082,8 @@ msgstr "Syötä RSO-moduulin osoite:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4924,45 +5094,51 @@ msgstr "Syötä RSO-moduulin osoite:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4972,23 +5148,23 @@ msgstr "Syötä RSO-moduulin osoite:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Virhe" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:456 msgid "Error Log" -msgstr "" +msgstr "Virheloki" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:75 msgid "Error Opening Adapter: %1" @@ -4998,9 +5174,9 @@ msgstr "Virhe sovittimen avauksessa: %1" msgid "Error collecting save data!" msgstr "Virhe tallennustiedoston keräämisessä!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Virhe arvon muuntamisessa" @@ -5013,7 +5189,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Virhe istuntolistan hakemisessa: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "Virheitä tapahtui joidenkin tekstuuripakettien latauksessa" @@ -5081,7 +5257,7 @@ msgstr "Virhe: GBA{0} ei onnistunut avaamaan tallennustiedostoa {1}" msgid "Error: This build does not support emulated GBA controllers" msgstr "Virhe: tämä koontiversio ei tue emuloituja GBA-ohjaimia" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5089,7 +5265,7 @@ msgstr "" "Virhe: Shift-JIS-fontteja on yritettyä hakea, mutta ne eivät ole ladattuna. " "Pelit voivat näyttää tekstiä väärin tai kaatua." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5110,57 +5286,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eurooppa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Esimerkki:\n" -"Haluat löytää funktion, joka suoritetaan, kun elämäpisteet muuttuvat.\n" -"1. Aloita nauhoitus ja pelaa peliä ilman, että elämäpisteet muuttuvat. Paina " -"sitten 'Koodi ei tullut suoritetuksi'.\n" -"2. Kerää tai menetä elämäpisteitä ja paina 'Koodi tuli suoritetuksi'.\n" -"3. Toista vaiheita 1 ja 2 löytääksesi halutun tuloksen.\n" -"Sisällytysnauhoitukset (Koodi tuli suoritetuksi) tulisi pitää lyhyinä, " -"keskittyen haluttuun toimintoon.\n" -"\n" -"Painikkeen 'Koodi tuli suoritetuksi' painaminen kahdesti säilyttää vain " -"funktiot, jotka suoritettiin molempien nauhoitusten aikana. Osumat-kohtaan " -"päivittyy viimeisimmän nauhoituksen osumamäärä, kun taas Osumat yhteensä -" -"kohta kertoo, kuinka monesti funktio on suoritettu yhteensä, kunnes listat " -"nollataan.\n" -"\n" -"Voit asettaa blr-käskyn symbolin ylle painamalla hiiren oikealla " -"painikkeella ja sitten valitsemalla 'Set blr'.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Poissuljettu: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Poissuljettu: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Poissulkevat Uber-varjostimet" @@ -5168,7 +5299,7 @@ msgstr "Poissulkevat Uber-varjostimet" msgid "Exit" msgstr "Poistu" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Odotettiin +-merkkiä tai sulkevaa suljetta." @@ -5176,7 +5307,7 @@ msgstr "Odotettiin +-merkkiä tai sulkevaa suljetta." msgid "Expected arguments: " msgstr "Odotettiin argumentteja:" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Odotettiin sulkevaa suljetta." @@ -5188,15 +5319,15 @@ msgstr "Odotettiin pilkkua." msgid "Expected end of expression." msgstr "Odotettiin lausekkeen loppua." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Odotettiin syötteen nimeä" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Odotettiin avaavaa suljetta." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Odotettiin lausekkeen alkua." @@ -5204,11 +5335,11 @@ msgstr "Odotettiin lausekkeen alkua." msgid "Expected variable name." msgstr "Odotettiin muuttujanimeä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Kokeellinen" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Vie kaikki Wii-tallennustiedostot" @@ -5223,7 +5354,7 @@ msgstr "Vieminen epäonnistui" msgid "Export Recording" msgstr "Vie nauhoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Vie nauhoitus..." @@ -5251,14 +5382,14 @@ msgstr "Vie .&gcs-muodossa..." msgid "Export as .&sav..." msgstr "Vie .&sav-muodossa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Viety %n tallennustiedosto(a)" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Lisälaite" @@ -5279,7 +5410,7 @@ msgstr "Ulkoinen" msgid "External Frame Buffer (XFB)" msgstr "Ulkoinen kehyspuskuri (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Vie varmenteet NAND-muistista" @@ -5312,12 +5443,12 @@ msgid "Extracting Directory..." msgstr "Puretaan hakemistoa..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO-toistaja" @@ -5337,7 +5468,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui" @@ -5345,13 +5476,13 @@ msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "Rajapinnan valtaaminen BT-läpipäästöön epäonnistui: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Skylanderin nollaaminen epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "Skylanderin poisto paikasta(%1) epäonnistui!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5378,23 +5509,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Infinity-tiedoston luonti epäonnistui" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Skylander-tiedoston luonti epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Skylander-tiedoston luominen epäonnistui:\n" -"%1\n" -"(Skylander voi olla jo portaalissa)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5416,15 +5545,15 @@ msgstr "Valitun tiedoston poisto epäonnistui." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Bluetooth-läpipääsyn ydinohjaimen irrottaminen epäonnistui: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Koodien lataaminen epäonnistui." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Kohteen %1 vedostaminen epäonnistui: Tiedoston avaaminen epäonnistui" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" "Kohteen %1 vedostaminen epäonnistui: Tiedoston kirjoittaminen epäonnistui" @@ -5438,7 +5567,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista epäonnistui" @@ -5464,22 +5593,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Yhden tai useamman D3D-symbolin haku epäonnistui" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Kohteen \"%1\" tuonti epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5487,7 +5612,7 @@ msgstr "" "Tallennustiedoston tuonti epäonnistui. Annettu tiedosto on vioittunut tai ei " "ole kelvollinen Wii-tallennustiedosto." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5498,7 +5623,7 @@ msgstr "" "(Työkalut -> Hallitse NAND-muistia -> Tarkista NAND...), ja yritä " "tallennustiedoston tuontia sitten uudelleen." -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Ytimen alustus epäonnistui" @@ -5512,7 +5637,7 @@ msgstr "" "Varmista, että grafiikkasuorittimesi tukee vähintään D3D 10.0:aa\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Hahmonninluokkien alustus epäonnistui" @@ -5521,19 +5646,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Tämän julkaisun asennus NAND-muistiin epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 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:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "RSO-moduulin lataaminen epäonnistui kohdassa %1" @@ -5545,19 +5670,21 @@ 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:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Karttatiedoston '%1' lataus epäonnistui" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Skylander-tiedoston lataus epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Skylander-tiedoston(%1) lataus epäonnistui!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Suoritettavan tiedoston lataus muistiin epäonnistui." @@ -5569,13 +5696,21 @@ msgstr "" "Kohteen {0} lataus epäonnistui. Jos käytät Windows 7:ää, yritä asentaa " "KB4019990-päivityspaketti." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Skylanderin muokkaus epäonnistui!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Kohteen '%1' avaus epäonnistui" @@ -5583,13 +5718,17 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Määritystiedoston avaus epäonnistui!" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:731 msgid "Failed to open file" -msgstr "" +msgstr "Tiedoston avaaminen epäonnistui" #: Source/Core/Core/NetPlayCommon.cpp:26 msgid "Failed to open file \"{0}\"." @@ -5611,33 +5750,33 @@ msgstr "" msgid "Failed to open file." msgstr "Tiedoston avaaminen epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Palvelimen avaaminen epäonnistui" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Infinity-tiedoston avaaminen epäonnistui!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Infinity-tiedoston (%1) avaaminen epäonnistui!\n" -"Tiedosto saattaa olla jo käytössä alustalla." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Skylander-tiedoston avaaminen epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Skylander-tiedoston(%1) avaaminen epäonnistui!\n" -"Tiedosto voi olla jo käytössä portaalissa." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5659,7 +5798,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Redump.org-datan jäsentäminen epäonnistui" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "Annetun arvon jäsentäminen annettuun kohdetietotyyppiin epäonnistui." @@ -5681,35 +5820,34 @@ 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Infinity-tiedoston lukeminen epäonnistui!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Infinity-tiedoston (%1) lukeminen epäonnistui!\n" -"Tiedosto on liian pieni." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Skylander-tiedoston lukeminen epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Skylander-tiedoston(%1) lukeminen epäonnistui!\n" -"Tiedosto oli liian pian." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5750,31 +5888,31 @@ msgstr "" "Nettipelin uudelleenohjauskansion nollaaminen epäonnistui. Tarkista " "kirjoitusoikeudet." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "FIFO-lokin tallennus epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Koodikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Allekirjoitustiedoston tallentaminen tiedostoon '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Symbolikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5831,7 +5969,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Virhe" @@ -5839,11 +5977,11 @@ msgstr "Virhe" msgid "Fair Input Delay" msgstr "Reilu syöteviive" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Oletusalue" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Oletusalue:" @@ -5856,7 +5994,7 @@ msgstr "Nopea" msgid "Fast Depth Calculation" msgstr "Nopea syvyyslaskenta" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5869,11 +6007,11 @@ msgstr "" msgid "Field of View" msgstr "Näkökenttä" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "Hahmon numero:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "Hahmon tyyp" @@ -5881,9 +6019,9 @@ msgstr "Hahmon tyyp" msgid "File Details" msgstr "Tiedoston tiedot" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Tiedostomuoto" @@ -5895,20 +6033,20 @@ msgstr "Tiedostomuoto:" msgid "File Info" msgstr "Tiedoston tiedot" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Tiedostonimi" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Tiedostopolku" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Tiedostokoko" @@ -5916,7 +6054,7 @@ msgstr "Tiedostokoko" msgid "File Size:" msgstr "Tiedostokoko:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Tiedostossa ei ollut koodeja." @@ -5952,15 +6090,15 @@ msgstr "Tiedostojärjestelmä" msgid "Filters" msgstr "Suodattimet" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Etsi &seuraava" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Etsi &edellinen" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Lopeta kalibrointi" @@ -5974,7 +6112,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Tuli" @@ -5990,31 +6128,32 @@ msgstr "Korjaa tarkistussummat" msgid "Fix Checksums Failed" msgstr "Tarkistussummien korjaus epäonnistui" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Liput" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "32-bittinen liukuluku" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Seuraa &haaraa" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Parhaiden tulosten saavuttamiseksi liikuta ohjainta hitaasti kaikkiin " @@ -6028,7 +6167,7 @@ msgstr "" "Asennusohjeita löytyy tältä sivulta." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -6036,7 +6175,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" @@ -6044,7 +6183,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" @@ -6076,11 +6215,11 @@ msgstr "Pakota kuunteluportti:" msgid "Force Nearest" msgstr "Pakota lähin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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." @@ -6122,17 +6261,17 @@ msgstr "Eteen" msgid "Forward port (UPnP)" msgstr "Tee portinsiirto (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Löytyi %1 tulosta haulla \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "Löytyi %n osoite(tta)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Kehys %1" @@ -6153,7 +6292,7 @@ msgstr "Kehys kerrallaan: lisää nopeutta" msgid "Frame Advance Reset Speed" msgstr "Kehys kerrallaan: palauta nopeus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Kehysvedostus" @@ -6161,7 +6300,7 @@ msgstr "Kehysvedostus" msgid "Frame Range" msgstr "Kehysväli" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Kehysvedoskuva(t) '{0}' on/ovat jo olemassa. Ylikirjoitetaanko?" @@ -6185,7 +6324,7 @@ msgstr "Vapaita tiedostoja: %1" msgid "Free Look Control Type" msgstr "Vapaan katselun hallinnan tyyppi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Vapaan katselun ohjain %1" @@ -6220,7 +6359,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:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Ranska" @@ -6244,7 +6383,7 @@ msgstr "Mistä" msgid "From:" msgstr "Mistä:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Koko näyttö" @@ -6276,7 +6415,7 @@ msgstr "GBA-ydin" msgid "GBA Port %1" msgstr "GBA-portti %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA-asetukset" @@ -6418,20 +6557,20 @@ msgstr "" "GPU: Tukeeko grafiikkasuorittimesi OpenGL 2.x:ää?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Peli" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance -moduulit (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6439,7 +6578,7 @@ msgstr "" "Game Boy Advance -ROMit (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance portissa %1" @@ -6467,8 +6606,8 @@ msgstr "Pelin gamma" msgid "Game Gamma:" msgstr "Pelin gamma:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Pelin tunniste" @@ -6532,11 +6671,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube -ohjain" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "GameCube -ohjain portissa %1" @@ -6544,11 +6683,11 @@ msgstr "GameCube -ohjain portissa %1" msgid "GameCube Controllers" msgstr "GameCube -ohjaimet" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube -näppäimistö" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "GameCube -näppäimistö portissa %1" @@ -6561,11 +6700,11 @@ msgid "GameCube Memory Cards" msgstr "GameCube -muistikortit" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube -muistikortit (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube -mikrofonin paikka %1" @@ -6593,7 +6732,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koodit" @@ -6603,35 +6742,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Yleinen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Yleinen ja asetukset" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Luo Action Replay -koodi" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Luo uusi tilastoidentiteetti" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Luo AR-koodi." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Saksa" @@ -6643,18 +6782,18 @@ msgstr "Saksa" msgid "GetDeviceList failed: {0}" msgstr "GetDeviceList epäonnistui: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "Jätti" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Giants" @@ -6667,8 +6806,8 @@ msgid "Good dump" msgstr "Hyvä vedos" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafiikka" @@ -6713,7 +6852,7 @@ msgstr "Vihreä vasen" msgid "Green Right" msgstr "Vihreä oikea" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Ruudukkonäkymä" @@ -6722,7 +6861,7 @@ msgstr "Ruudukkonäkymä" msgid "Guitar" msgstr "Kitara" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Gyroskooppi" @@ -6750,36 +6889,35 @@ msgstr "HDR:n jälkikäsittely" msgid "Hacks" msgstr "Niksit" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Pää" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Ohje" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Sankarin taso:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Heksa" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Heksa 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Heksa 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Heksa 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Heksatavujen merkkijono" @@ -6792,7 +6930,11 @@ msgstr "Heksadesimaali" msgid "Hide" msgstr "Piilota" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Piilota kaikki" @@ -6808,12 +6950,12 @@ msgstr "Piilota ei-yhteensopivat istunnot" msgid "Hide Remote GBAs" msgstr "Piilota muiden GBA:" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6822,14 +6964,8 @@ msgstr "Korkein" msgid "Hit Strength" msgstr "Lyömävoima" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Osumat" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Vaakatason näkökenttä" @@ -6846,7 +6982,7 @@ msgstr "Isäntäkoneen koodi:" msgid "Host Input Authority" msgstr "Isäntäkone vastaa syötteestä" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Isäntäkoko" @@ -6875,16 +7011,16 @@ msgstr "Isäntäkoneen syötevastuu on päällä" msgid "Host with NetPlay" msgstr "Isännöi nettipelissä" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Isäntänimi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Pikanäppäinasetukset" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Pikanäppäimet" @@ -6893,7 +7029,7 @@ msgstr "Pikanäppäimet" msgid "Hotkeys Require Window Focus" msgstr "Pikanäppäimet vaativat kohdistetun ikkunan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybridi-Uber-varjostimet" @@ -6907,16 +7043,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Tiedostan riskit, ja haluan jatkaa" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "Tunniste" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "Annettu tunniste on virheellinen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "Tunniste:" @@ -6957,7 +7093,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Infrapunatarkkuus:" @@ -7009,11 +7145,11 @@ msgstr "" "Sopii vuoropohjaisiin peleihin, kuten golfiin, joissa ohjauksen ajoitus on " "tärkeää." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Identiteetin luonti" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -7084,11 +7220,15 @@ msgstr "" msgid "Ignore" msgstr "Ohita" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Sivuuta muodon muutokset" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Sivuuta tämän istunnon aikana" @@ -7121,7 +7261,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Esitä XFB välittömästi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7136,7 +7276,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Tuo BootMii-NAND-varmuuskopio..." @@ -7151,15 +7291,15 @@ msgstr "Tuonti epäonnistui" msgid "Import Save File(s)" msgstr "Tuo tallennustiedosto(ja)" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Tuo Wii-tallennustiedosto..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "NAND-varmuuskopion tuonti käynnissä" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7172,15 +7312,6 @@ msgstr "" msgid "In-Game?" msgstr "Peli käynnissä?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Sisällytetty: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Sisällytetty: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7194,27 +7325,27 @@ msgstr "" "palauttamisen aikaa.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "Sankarin taso ei kelpaa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "Edellisen sijoituksen aika ei kelpaa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "Edellisen nollauksen aika ei kelpaa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "Rahan määrä ei kelpaa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "Nimimerkki ei kelpaa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "Peliaika ei kelpaa!" @@ -7259,15 +7390,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:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Infinity-hahmon luonti." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Infinity-hallinta" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Infinity-hahmo (*.bin);;" @@ -7290,8 +7422,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Tiedot" @@ -7305,10 +7437,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Syöte" @@ -7322,20 +7454,26 @@ msgstr "Aktivoiva syötevoimakkuus." msgid "Input strength to ignore and remap." msgstr "Uudelleenmuunnettava syötevoimakkuus." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Lisää &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Lisää SD-kortti" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Tarkistettu" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7349,7 +7487,7 @@ msgstr "Asennusosio (%1)" msgid "Install Update" msgstr "Asenna päivitys" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Asenna WAD..." @@ -7357,11 +7495,13 @@ msgstr "Asenna WAD..." msgid "Install to the NAND" msgstr "Asenna NAND-muistiin" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Käsky" @@ -7370,7 +7510,7 @@ msgstr "Käsky" msgid "Instruction Breakpoint" msgstr "Käskyn keskeytyskohta" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Käsky:" @@ -7379,7 +7519,7 @@ msgstr "Käsky:" msgid "Instruction: %1" msgstr "Käsky: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7400,19 +7540,19 @@ msgstr "Voimakkuus" msgid "Interface" msgstr "Käyttöliittymä" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Sisäinen LZ4-virhe - Yritys purkaa {0} tavua" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Sisäinen LZ4-virhe - pakkaus epäonnistui" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 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:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Sisäinen LZ4-virhe - hyötykuorman koko ei täsmää ({0} / {1})" @@ -7425,7 +7565,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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7433,7 +7573,7 @@ msgstr "" "Sisäinen LZO-virhe - purku epäonnistui ({0}) ({1})\n" "Vanhentuneen tilantallennuksen versiotiedon haku epäonnistui." -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7441,7 +7581,7 @@ msgstr "" "Sisäinen LZO-virhe - puretun versioevästeen ja versiomerkkijonon pituuden " "jäsentäminen epäonnistui ({0})" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7458,7 +7598,7 @@ msgstr "Sisäinen kuvatarkkuus" msgid "Internal Resolution:" msgstr "Sisäinen kuvatarkkuus:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Sisäinen virhe AR-koodia luonnissa." @@ -7466,11 +7606,11 @@ msgstr "Sisäinen virhe AR-koodia luonnissa." msgid "Interpreter (slowest)" msgstr "Tulkki (hitain)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Tulkkiydin" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Virheellinen lauseke." @@ -7482,7 +7622,7 @@ msgstr "Automaattisen päivityksen palvelu palautti virheellistä JSONia: {0}" msgid "Invalid Mixed Code" msgstr "Virheellinen sekakoodi" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Virheellinen paketti %1 annettu: %2" @@ -7491,11 +7631,11 @@ msgstr "Virheellinen paketti %1 annettu: %2" msgid "Invalid Player ID" msgstr "Virheellinen pelaajatunniste" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Virheellinen RSO-moduulin osoite: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Virheellinen kutsupino" @@ -7524,7 +7664,7 @@ msgstr "Virheellinen syöte" msgid "Invalid literal." msgstr "Virheellinen literaali." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Virheelliset parametrit annettiin hakuun." @@ -7536,19 +7676,19 @@ msgstr "Virheellinen salasana annettu." msgid "Invalid recording file" msgstr "Virheellinen nauhoitustiedosto" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Virheelliset hakuparametrit (kohdetta ei valittu)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Virheellinen hakumerkkijono (numeroksi muunto epäonnistui)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Virheellinen hakumerkkijono (vain parillisia pituuksia tuetaan)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Virheellinen julkaisutunniste." @@ -7558,7 +7698,7 @@ msgstr "Virheellinen vahtiosoite: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italia" @@ -7567,63 +7707,63 @@ msgid "Italy" msgstr "Italia" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "Esin" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT:n lohkolinkitys pois" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT-lohkot" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT-haara pois" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT-liukuluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT-kokonaisluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT-liukuluku-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT-paritettu-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT-IXz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT-Ibzx-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT-Iwz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT pois (JIT-ydin)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT-paritettu pois" @@ -7635,16 +7775,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:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT-rekisterivälimuisti pois" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT-järjestelmärekisterit pois" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7653,12 +7793,16 @@ msgstr "" "Näin ei pitäisi koskaan tapahtua. Ilmoitathan tästä ongelmasta " "vianhallintajärjestelmään. Dolphin sulkeutuu nyt." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japani" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japani" @@ -7669,7 +7813,7 @@ msgstr "Japani" msgid "Japanese (Shift-JIS)" msgstr "Japani (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7677,7 +7821,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:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Jatka suoritusta" @@ -7691,7 +7835,7 @@ msgstr "Pidä ikkuna päällimmäisenä" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Säilytä osoitteet, joiden arvo muistissa on" @@ -7712,7 +7856,7 @@ msgstr "Näppäimistöohjain" msgid "Keys" msgstr "Näppäimet" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7720,12 +7864,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Poista pelaaja" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korea" @@ -7736,7 +7880,7 @@ msgstr "Korea" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "L&ataa ROM..." @@ -7746,7 +7890,7 @@ msgstr "L&ataa ROM..." msgid "L-Analog" msgstr "L-analogi" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR-tallennus" @@ -7754,35 +7898,37 @@ msgstr "LR-tallennus" msgid "Label" msgstr "Nimi" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Edellinen arvo" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "Viimeksi sijoitettu:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7858,13 +8004,13 @@ msgstr "" msgid "Levers" msgstr "Vivut" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Lisenssi" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Elo" @@ -7878,7 +8024,7 @@ msgstr "Nosto" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Valo" @@ -7886,11 +8032,11 @@ msgstr "Valo" msgid "Limit Chunked Upload Speed:" msgstr "Rajoita lohkotun lähetyksen nopeutta:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Listan sarakkeet" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Listanäkymä" @@ -7901,29 +8047,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Lataa" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Lataa &huono karttatiedosto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Lataa &muu karttatiedosto..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Lataa muokatut tekstuurit" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Avaa tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Lataa GameCube-päävalikko" @@ -7944,7 +8097,7 @@ msgstr "Lataa polku:" msgid "Load ROM" msgstr "Lataa ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Aseta paikkaan" @@ -8033,19 +8186,19 @@ msgstr "Palauta tila 8" msgid "Load State Slot 9" msgstr "Palauta tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Palauta tila tiedostosta" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Palauta tila paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Käynnistä Wii-järjestelmävalikko %1" @@ -8057,16 +8210,16 @@ msgstr "Lataa ja kirjoita isäntäkoneen tallennustiedosto" msgid "Load from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Palauta tila paikasta %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Lataa karttatiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Käynnistä vWii-järjestelmävalikko %1" @@ -8074,11 +8227,11 @@ msgstr "Käynnistä vWii-järjestelmävalikko %1" msgid "Load..." msgstr "Lataa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Symbolit lähteestä '%1' ladattu" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8089,7 +8242,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8112,7 +8265,7 @@ msgid "Locked" msgstr "Lukittu" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Loki" @@ -8124,7 +8277,7 @@ msgstr "Lokiasetukset" msgid "Log In" msgstr "Kirjaudu sisään" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Kirjoita JIT:n käskykattavuus lokiin" @@ -8132,7 +8285,7 @@ msgstr "Kirjoita JIT:n käskykattavuus lokiin" msgid "Log Out" msgstr "Kirjaudu ulo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Kirjoita hahmonnusaika lokitiedostoon" @@ -8148,7 +8301,7 @@ msgstr "Lokin ulostulot" msgid "Login Failed" msgstr "Sisäänkirjautuminen epäonnistui" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8167,16 +8320,16 @@ msgstr "Silmukka" msgid "Lost connection to NetPlay server..." msgstr "Yhteys nettipelipalvelimeen menetettiin..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8184,7 +8337,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "KUOLEVA" @@ -8194,7 +8347,7 @@ msgstr "MadCatz Gameshark -tiedostot" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Taikuus" @@ -8202,37 +8355,37 @@ msgstr "Taikuus" msgid "Main Stick" msgstr "Pääohjainsauva" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "Varmista, että sankarin taso on välillä 0–100!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "Varmista, että edellisen sijoituksen päivämäärä ja aika ovat oikein!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "Varmista, että edellisen nollauksen päivämäärä ja aika ovat oikein!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "Varmista, että rahan määrä on välillä 0–65000!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "Varmista, että nimimerkki on 0–15 merkkiä pitkä!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "Varmista, että peliaika on oikein!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "Varmista, että paikassa %1 on Skylander-hahmo!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Tekijä" @@ -8254,12 +8407,12 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Hallitse NAND-muistia" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Manuaalinen tekstuuriotanta" @@ -8271,7 +8424,7 @@ msgstr "Ohjainmääritys" msgid "Mask ROM" msgstr "Peite-ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Tulos löytyi" @@ -8288,17 +8441,17 @@ msgstr "Puskurin korkein arvo vaihtui arvoon %1" msgid "Maximum tilt angle." msgstr "Suurin kallistuskulma." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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ä." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Keskitaso" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Muisti" @@ -8310,7 +8463,7 @@ msgstr "Muistin keskeytyskohta" msgid "Memory Card" msgstr "Muistikortti" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Muistikorttien hallinta" @@ -8322,7 +8475,7 @@ msgstr "Muistikorttipolku:" msgid "Memory Override" msgstr "Muistin korvaus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Muistin keskeytyskohdan asetukset" @@ -8341,7 +8494,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8353,29 +8506,33 @@ msgstr "" "Tätä toimintoa ei voi peruuttaa, joten on suositeltavaa säilyttää molempien " "NAND-muistien varmuuskopiot. Haluatko varmasti jatkaa?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofoni" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Sekalaiset" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Sekalaiset asetukset" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8404,12 +8561,16 @@ msgstr "" "- Julkaisu: {3}\n" "- Tiiviste: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8420,24 +8581,25 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "Muokkaa paikkaa" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Löydetyt moduulit: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Raha:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8449,16 +8611,16 @@ msgstr "Monoskooppiset varjot" msgid "Monospaced Font" msgstr "Tasalevyinen fontti" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Liikesyöte" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Liikesimulaatio" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Moottori" @@ -8499,6 +8661,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8508,10 +8674,10 @@ msgstr "Kerroin" msgid "N&o to All" msgstr "E&i kaikkiin" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-tarkistus" @@ -8520,8 +8686,8 @@ msgstr "NAND-tarkistus" msgid "NKit Warning" msgstr "NKit-varoitus" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8530,7 +8696,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8553,25 +8719,25 @@ msgstr "" "

Ellet ole varma, jätä asetus arvoon 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Nimi" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Uuden tunnisteen nimi:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Poistettavan tunnisteen nimi:" @@ -8580,7 +8746,7 @@ msgid "Name of your session shown in the server browser" msgstr "Istunnon nimi, joka näkyy palvelinselaimessa" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8645,7 +8811,7 @@ msgstr "" msgid "Network" msgstr "Verkko" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Verkkovedosten muoto:" @@ -8675,7 +8841,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Uusi haku" @@ -8683,7 +8849,7 @@ msgstr "Uusi haku" msgid "New Tag..." msgstr "Uusi tunniste..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Uusi identiteetti luotu." @@ -8691,7 +8857,7 @@ msgstr "Uusi identiteetti luotu." msgid "New instruction:" msgstr "Uusi käsky:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Uusi tunniste" @@ -8700,7 +8866,7 @@ msgstr "Uusi tunniste" msgid "Next Game Profile" msgstr "Uusi peliprofiili" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Seuraava tulos" @@ -8714,7 +8880,7 @@ msgid "Nickname is too long." msgstr "Nimimerkki on liian pitkä." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Nimimerkki:" @@ -8728,7 +8894,7 @@ msgstr "Ei" msgid "No Adapter Detected" msgstr "Sovitinta ei löydy" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "Ei kohdistusta" @@ -8742,7 +8908,7 @@ msgstr "Ei ääniulostuloa" msgid "No Compression" msgstr "Ei pakkausta" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Ei hakutuloksia" @@ -8750,16 +8916,16 @@ msgstr "Ei hakutuloksia" msgid "No Save Data" msgstr "Ei tallennustiedostoja" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "Ei muokattavaa dataa!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Ei kuvausta saatavilla" @@ -8775,15 +8941,15 @@ msgstr "Ei valittua lisäosaa." msgid "No file loaded / recorded." msgstr "Ei ladattua/nauhoitettua tiedostoa." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Peli ei ole käynnissä." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Peli ei ole käynnissä." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "Grafiikkamodia ei ole valittu" @@ -8792,7 +8958,7 @@ msgstr "Grafiikkamodia ei ole valittu" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Ongelmia ei löytynyt." @@ -8804,10 +8970,6 @@ msgstr "Sopivaa peliä ei löytynyt" msgid "No paths found in the M3U file \"{0}\"" msgstr "M3U-tiedostosta \"{0}\" ei löytynyt polkuja" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "Mahdollisia funktioita ei löydy. Aloita alusta." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Ongelmia ei löytynyt." @@ -8822,11 +8984,11 @@ msgstr "" "koska Wii-julkaisut sisältävät paljon varmennusdataa, tämä tarkoittaa, että " "mitä luultavimmin emulointiin vaikuttavia ongelmia ei ole." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Peliasetukselle '{0}' ei löydy profiileja" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Nauhoitusta ei ole ladattu." @@ -8835,7 +8997,7 @@ msgstr "Nauhoitusta ei ole ladattu." msgid "No save data found." msgstr "Tallennustiedostoa ei löydy." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Undo.dtm:ää ei löydy. Kohdan lataamisen peruutus keskeytetään, jotta " @@ -8844,11 +9006,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Ei mikään" @@ -8914,7 +9076,7 @@ msgid "Null" msgstr "Tyhjä" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "SuorKerrat" @@ -8949,10 +9111,58 @@ msgstr "Nunchukin ohjaussauva" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Olio %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Olioväli" @@ -8966,7 +9176,7 @@ msgstr "Oseania" msgid "Off" msgstr "Pois" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Osoite-ero" @@ -8978,7 +9188,7 @@ msgstr "Päällä" msgid "On Movement" msgstr "Liikkeen yhteydessä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -8988,7 +9198,22 @@ msgstr "" "kulmapistevarjostimia pisteiden ja janojen laajentamiseen, tämä asetus " "valitsee kulmapistevarjostimen. Se voi vaikuttaa suorituskykyyn.

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Verkko-&ohje" @@ -8996,7 +9221,7 @@ msgstr "Verkko-&ohje" msgid "Only Show Collection" msgstr "Näytä vain kokoelma" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9004,7 +9229,7 @@ msgstr "" "Lisää vain symbolit, jotka alkavat näin:\n" "(Jätä tyhjäksi saadaksesi kaikki symbolit)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9014,7 +9239,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Avaa" @@ -9023,11 +9248,11 @@ msgstr "Avaa" msgid "Open &Containing Folder" msgstr "Avaa &kansio" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Avaa &käyttäjäkansio" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Avaa hakemisto..." @@ -9048,7 +9273,7 @@ msgstr "Avaa Riivolutionin XML..." msgid "Open Wii &Save Folder" msgstr "Avaa Wii-tallennuskansio" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Avaa vedoskansio" @@ -9081,11 +9306,11 @@ msgid "Operators" msgstr "Operaattorit" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Asetukset" @@ -9098,13 +9323,36 @@ msgstr "Oranssi" msgid "Orbital" msgstr "Kiertävä" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Muu" @@ -9117,7 +9365,7 @@ msgstr "Muu osio (%1):" msgid "Other State Hotkeys" msgstr "Muut tilojen pikanäppäimet" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Muu tilojen hallinta" @@ -9137,16 +9385,16 @@ msgstr "Kuvan uudelleenotanta" msgid "Output Resampling:" msgstr "Kuvan uudelleenotanta:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Ylikirjoitettu" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Toista nauhoitus..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9155,15 +9403,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG:n pakkaustaso" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG:n pakkaustaso:" @@ -9171,11 +9419,11 @@ msgstr "PNG:n pakkaustaso:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG-kuvatiedosto (*.png);; Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC-koko" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs. isäntäkone" @@ -9188,11 +9436,11 @@ msgstr "Ohjain" msgid "Pads" msgstr "Ohjaimet" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parametrit" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Jäsennä heksana" @@ -9243,11 +9491,15 @@ msgstr "Polku:" msgid "Paths" msgstr "Polut" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Keskeytä" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Keskeytä nauhoituksen loputtua" @@ -9291,7 +9543,7 @@ msgstr "Korkein nopeus ulospäin suuntautuville heilahduksille." msgid "Per-Pixel Lighting" msgstr "Kuvapistekohtainen valaistus" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Tee verkossa järjestelmäpäivitys" @@ -9299,33 +9551,33 @@ msgstr "Tee verkossa järjestelmäpäivitys" msgid "Perform System Update" msgstr "Tee järjestelmäpäivitys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Suorituskyvyn otosikkuna (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Suorituskyvyn otosikkuna (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Suorituskykytilastot" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Fyysinen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Fyysinen osoiteavaruus" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Valitse virheenjäljitysfontti" @@ -9341,12 +9593,12 @@ msgstr "Nyökkäyskulma alas" msgid "Pitch Up" msgstr "Nyökkäyskulma ylös" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Alusta" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Pelaa" @@ -9358,7 +9610,7 @@ msgstr "Toista / nauhoita" msgid "Play Recording" msgstr "Toista nauhoitus" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Lelusarja/Voimakiekko" @@ -9370,27 +9622,27 @@ msgstr "Toiston asetukset" msgid "Player" msgstr "Pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Ensimmäinen pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Ensimmäisen pelaajan ensimmäinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Ensimmäisen pelaajan toinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Toinen pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Toisen pelaajan ensimmäinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Toisen pelaajan toinen kyky" @@ -9399,7 +9651,8 @@ msgstr "Toisen pelaajan toinen kyky" msgid "Players" msgstr "Pelaajat" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Peliaika:" @@ -9413,23 +9666,27 @@ msgstr "" "Valitse SyncOnSkipIdle-asetus arvoon True! Asetus ei ole tällä hetkellä " "käytössä, mikä altistaa kyseiselle ongelmalle." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: 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." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Osoitus" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Portti %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "Portin %1 ROM:" @@ -9438,7 +9695,7 @@ msgstr "Portin %1 ROM:" msgid "Port:" msgstr "Portti:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Portaalipaikat" @@ -9461,11 +9718,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Jälkikäsittelyvarjostimen asetukset" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Esihae muokatut tekstuurit" @@ -9474,12 +9731,12 @@ 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:1314 +#: Source/Core/Core/Movie.cpp:1313 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:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Esiaikainen nauhoituksen loppu PlayWiimote-järjestelmässä. {0} + {1}" @@ -9504,7 +9761,7 @@ msgstr "Paina synkronointipainiketta" msgid "Pressure" msgstr "Paine" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9524,7 +9781,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Edellinen peliprofiili" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Edellinen hakutulos" @@ -9535,7 +9792,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitiivi %1" @@ -9547,7 +9804,7 @@ msgstr "Yksityinen" msgid "Private and Public" msgstr "Yksityinen ja julkinen" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Ongelma" @@ -9584,8 +9841,8 @@ msgstr "Ohjelmalaskuri" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Edistyminen" @@ -9593,11 +9850,11 @@ msgstr "Edistyminen" msgid "Public" msgstr "Julkinen" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Tyhjennä peliluettelon välimuisti" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Aseta IPL-ROMit User/GC-kansioon" @@ -9617,14 +9874,14 @@ 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ä." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Kysymys" @@ -9645,19 +9902,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-analogi" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "VALMIS" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO-moduulit" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO:n automaattinen havainta" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "KÄYNNISSÄ" @@ -9670,11 +9927,11 @@ msgstr "RVZ-GC-/Wii-kuvat (*.rvz)" msgid "Range" msgstr "Alue" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Alueen loppu:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Alueen alku:" @@ -9686,7 +9943,11 @@ msgstr "Taso %1" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Ko&rvaa käsky" @@ -9698,14 +9959,14 @@ msgstr "Luku" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Luku ja kirjoitus" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Vain luku" @@ -9726,10 +9987,15 @@ msgstr "Oikea tasapainolauta" msgid "Real Wii Remote" msgstr "Oikea Wii Remote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9743,7 +10009,7 @@ msgstr "Nauhoita" msgid "Record Inputs" msgstr "Nauhoita syötteitä" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Nauhoitus" @@ -9786,7 +10052,7 @@ msgstr "" "

Ellet ole varma, valitse Ei mikään." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org-tila:" @@ -9794,14 +10060,14 @@ msgstr "Redump.org-tila:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Päivitä" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Päivitä nykyiset arvot" @@ -9809,11 +10075,11 @@ msgstr "Päivitä nykyiset arvot" msgid "Refresh Game List" msgstr "Päivitä peliluettelo" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "Päivitys epäonnistui. Käynnistä peli hetkeksi ja yritä uudelleen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Nykyiset arvot päivitetty." @@ -9822,8 +10088,8 @@ msgstr "Nykyiset arvot päivitetty." msgid "Refreshing..." msgstr "Päivittyy..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Alue" @@ -9852,7 +10118,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Poista" @@ -9869,7 +10135,7 @@ msgstr "Poista roskadata (peruuttamaton):" msgid "Remove Tag..." msgstr "Poista tunniste..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Poista tunniste" @@ -9883,8 +10149,8 @@ msgstr "" "(ellet myös pakkaa ISO-tiedostoa pakattuun muotoon, kuten ZIP, jälkikäteen). " "Haluatko silti jatkaa?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Uudelleennimeä symboli" @@ -9892,11 +10158,11 @@ msgstr "Uudelleennimeä symboli" msgid "Render Window" msgstr "Hahmonnusikkuna" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Hahmonna pääikkunaan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9914,23 +10180,22 @@ msgstr "Pyyntö liittyä ryhmääsi" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Nollaa" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Nollaa kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Nollaa ohittaen paniikkikäsittelijä" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Nollaa tulokset" @@ -9958,6 +10223,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Resurssipakettien hallinta" @@ -9974,7 +10243,7 @@ msgstr "Uudelleenkäynnistys tarvitaan" msgid "Restore Defaults" msgstr "Palauta oletukset" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Palauta käsky" @@ -9991,7 +10260,7 @@ msgstr "Palausnopeus" msgid "Revision" msgstr "Revisi" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revisio: %1" @@ -10050,7 +10319,7 @@ msgstr "Kallistumakulma oikealle" msgid "Room ID" msgstr "Huonetunniste" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Kääntö" @@ -10074,26 +10343,52 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Tärinä" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Jatka &tähän" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Suorita kohtaan asti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Suorita kohtaan asti (ohittaen keskeytyskohdat)" @@ -10109,19 +10404,19 @@ msgstr "Venäjä" msgid "SD Card" msgstr "SD-kortti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD-kortin tiedostokoko:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kortin polku:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-korttiasetukset" @@ -10129,7 +10424,7 @@ msgstr "SD-korttiasetukset" msgid "SD Root:" msgstr "SD-juuri:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD-synkronointikansio:" @@ -10142,7 +10437,7 @@ msgstr "SDR:n näyttögamman kohde" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10150,11 +10445,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1-tiiviste" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL-konteksti" @@ -10164,11 +10459,11 @@ msgstr "SSL-konteksti" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Ta&llenna koodi" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Tal&lenna tila" @@ -10181,7 +10476,6 @@ msgstr "Varma" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10191,9 +10485,17 @@ msgstr "Tallenna" msgid "Save All" msgstr "Tallenna kaikki" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Tallennustiedostojen vienti" @@ -10202,24 +10504,24 @@ msgid "Save FIFO log" msgstr "Tallenna FIFO-loki" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Tallenna tiedosto" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Pelin tallennustiedosto" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Pelien tallennustiedostot (*.sav);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Tallennustiedostojen tuonti" @@ -10231,13 +10533,13 @@ msgstr "Tallenna tila vanhimpaan" msgid "Save Preset" msgstr "Tallenna esiasetukset" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "Tallenna nauhoitustiedosto nimellä" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Tallenna tila" @@ -10281,23 +10583,23 @@ msgstr "Tallenna tila 8" msgid "Save State Slot 9" msgstr "Tallenna tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Tallenna tila tiedostoon" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Tallenna tilan vanhimpaan paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Tallenna tila paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Tallenna symbolikartta &nimellä..." @@ -10305,7 +10607,7 @@ msgstr "Tallenna symbolikartta &nimellä..." msgid "Save Texture Cache to State" msgstr "Tallenna tekstuurivälimuisti tilan mukana" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Tallenna ja palauta tila" @@ -10317,11 +10619,11 @@ msgstr "Tallenna esiasetuksena..." msgid "Save as..." msgstr "Tallenna nimellä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Tallenna yhdistetty ulostulotiedosto nimellä" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10331,15 +10633,15 @@ msgstr "" "varmuuskopioimista, ennen kuin se korvataan.\n" "Korvataanko nyt?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Tallenna ROMin kanssa samaan hakemistoon" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Tallenna karttatiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Tallenna allekirjoitustiedosto" @@ -10347,7 +10649,7 @@ msgstr "Tallenna allekirjoitustiedosto" msgid "Save to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Tallenna tila paikkaan %1 - %2" @@ -10361,7 +10663,7 @@ msgstr "" "Tallennetut Wii Remote -laiteparit voi poistaa vain silloin, kun Wii-peli on " "käynnissä." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Tallennustiedostot:" @@ -10373,26 +10675,26 @@ msgstr "Tallennustilan nauhoitus {0} on vioittunut, nauhoittaminen pysähtyy..." msgid "Scaled EFB Copy" msgstr "Skaalattu EFB-kopio" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Haku onnistui." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Kuvakaappaus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Haku" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Hae osoite" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Hae nykyinen olio" @@ -10400,11 +10702,11 @@ msgstr "Hae nykyinen olio" msgid "Search Subfolders" msgstr "Etsi alikansioista" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Etsi ja suodata" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10412,7 +10714,7 @@ msgstr "" "Haku ei ole tällä hetkellä mahdollinen näennäisosoiteavaruudessa. Pelaa " "peliä hetken aikaa ja yritä uudelleen." -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Etsi käskyä" @@ -10420,11 +10722,11 @@ msgstr "Etsi käskyä" msgid "Search games..." msgstr "Etsi pelejä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Etsi käsky" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Haku:" @@ -10446,7 +10748,7 @@ msgstr "" "Osio, joka sisältää useimmat suorittimeen ja laitteistoon liittyvät " "asetukset." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Turvallisuusasetukset" @@ -10454,28 +10756,36 @@ msgstr "Turvallisuusasetukset" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: 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:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Valitse vientihakemisto" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Valitse hahmotiedosto" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Valitse GBA-BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Valitse GBA-ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Valitse GBA-tallennustiedostojen polku" @@ -10495,15 +10805,15 @@ msgstr "Valitse resurssipakettien polku" msgid "Select Riivolution XML file" msgstr "Valitse Riivolutionin XML-tiedosto" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Valitse Skylander-kokoelma" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Valitse Skylander-tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Valitse paikka %1 - %2" @@ -10511,7 +10821,7 @@ msgstr "Valitse paikka %1 - %2" msgid "Select State" msgstr "Valitse tilatallennus" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Valitse tilatallennuksen paikka" @@ -10570,15 +10880,15 @@ msgstr "Valitse hakemisto" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Valitse tiedosto" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10586,11 +10896,11 @@ msgstr "Valitse kansio, johon synkronoidaan SD-kortin kuva" msgid "Select a Game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Valitse SD-kortin levykuva" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Valitse tiedosto" @@ -10598,19 +10908,19 @@ msgstr "Valitse tiedosto" msgid "Select a game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Valitse NAND-muistiin asennettava julkaisu" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Valitse e-Reader-kortti" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Valitse RSO-moduulin osoite" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Valitse toistettava nauhoitustiedosto" @@ -10618,12 +10928,12 @@ msgstr "Valitse toistettava nauhoitustiedosto" msgid "Select the Virtual SD Card Root" msgstr "Valitse virtuaalisen SD-kortin juuri" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Valitse avaintiedosto (OTP-/SEEPROM-vedos)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Valitse tallennustiedosto" @@ -10639,7 +10949,7 @@ msgstr "Valitse, minne haluat tallentaa muunnetut levykuvat" msgid "Selected Font" msgstr "Valittu fontti" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Valittua ohjainprofiilia ei ole olemassa" @@ -10651,15 +10961,15 @@ msgstr "Valittua ohjainprofiilia ei ole olemassa" msgid "Selected game doesn't exist in game list!" msgstr "Valittua peliä ei ole pelilistassa!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Valitun säikeen kutsupino" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Valitun säikeen konteksti" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10667,7 +10977,7 @@ msgstr "" "Valitsee käytettävän laitteistosovittimen.

%1 ei " "tue tätä ominaisuutta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10675,6 +10985,25 @@ msgstr "" "Valitsee käytettävän laitteistosovittimen.

Ellet " "ole varma, valitse ensimmäinen vaihtoehto." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10694,18 +11023,29 @@ msgstr "" "3D-tila, jota jotkin TV:t käyttävät.

Ellet ole " "varma, valitse Pois." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10726,7 +11066,7 @@ msgstr "" msgid "Send" msgstr "Lähetä" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Liikkeentunnistimen paikka:" @@ -10754,16 +11094,12 @@ msgstr "Palvelimen portti" msgid "Server rejected traversal attempt" msgstr "Palvelin kieltäytyi läpikulkuyrityksestä" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Aseta &arvo" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Aseta &blr" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Aseta ohjelmalasku" @@ -10779,23 +11115,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Aseta symbolin &loppuosoite" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Aseta symbolin &koko" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Aseta symbolin loppuosoite" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Aseta symbolin koko (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10805,11 +11141,11 @@ msgstr "" "peleille.\n" "Asetus ei välttämättä toimi kaikille peleille.." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Asettaa Wiin järjestelmäkielen." -#: 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." @@ -10817,7 +11153,7 @@ msgstr "" "Asettaa viiveen millisekunneissa. Korkeammat arvot voivat vähentään äänen " "pätkintää. Asetus toimii vain joillain sisäisillä järjestelmillä." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10831,20 +11167,20 @@ msgstr "" msgid "Settings" msgstr "Asetukset" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: settings.txt-tiedoston luonti epäonnistui" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Vakavuus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Varjostinten kääntäminen" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Ravistus" @@ -10861,16 +11197,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen-ohjain" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Näytä prosentuaalinen nopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Näytä &loki" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Näytä &työkalupalkki" @@ -10878,53 +11214,53 @@ msgstr "Näytä &työkalupalkki" msgid "Show Active Title in Window Title" msgstr "Näytä aktiivinen julkaisu ikkunan otsikossa" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Näytä kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Näytä Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Näytä peli Discordissa" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Näytä käytöstä poistetut koodit ensin" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Näytä ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "Näytä käytössä olevat koodit ensin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Näytä kehysnopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Näytä kehyslaskuri" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Näytä kehysajat" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Näytä Ranska" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Näytä GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Näytä Saksa" @@ -10936,23 +11272,23 @@ msgstr "Näytä golf-tilan kerros" msgid "Show Infinity Base" msgstr "Näytä Infinity-alusta" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Näytä syötteet" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Näytä Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "Näytä Japani" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Näytä Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Näytä viivelaskuri" @@ -10960,19 +11296,19 @@ msgstr "Näytä viivelaskuri" msgid "Show Language:" msgstr "Kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Näytä lokin &asetukset" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Näytä nettipelin viestit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Näytä nettipelin vasteaika" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Näytä Alankomaat" @@ -10980,32 +11316,36 @@ msgstr "Näytä Alankomaat" msgid "Show On-Screen Display Messages" msgstr "Näytä ruudulle tulevat näyttöviestit" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Näytä ohjelmalaskuri" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Näytä suorituskykykaaviot" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Näytä alustat" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Näytä alueet" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Näytä uudelleennauhoituslasksuri" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Näytä Venäjä" @@ -11013,72 +11353,72 @@ msgstr "Näytä Venäjä" msgid "Show Skylanders Portal" msgstr "Näytä Skylanders-portaali" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Näytä Espanja" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Näytä nopeusvärit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Näytä tilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Näytä järjestelmän kellonaika" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Näytä Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Näytä USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Näytä tuntematon" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Näytä VBlank-ajat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Näytä VPS-laskuri" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Näytä WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Näytä Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Näytä maailma" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Näytä &muistissa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Näytä koodissa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Näytä muistissa" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Näytä koodissa" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Näytä muistissa" @@ -11086,11 +11426,11 @@ msgstr "Näytä muistissa" msgid "Show in server browser" msgstr "Näytä palvelinselaimessa" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "Näytä kohde muistiss&a" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -11099,7 +11439,7 @@ msgstr "" "varoitukset nettipelin aikana.

Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11119,7 +11459,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11129,7 +11469,7 @@ msgstr "" "millisekunteina, ja keskihajonnan.

Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11139,7 +11479,7 @@ msgstr "" "ja keskihajonnan.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11149,7 +11489,7 @@ msgstr "" "sulavuuden mittana.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11168,7 +11508,13 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11180,34 +11526,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Vierekkäin" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Vaakasuuntainen pitely" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Vaakasuuntaisuus päälle/pois" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Vaakasuuntainen Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Allekirjoitustietokanta" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Etumerkillinen 16-bittinen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Etumerkillinen 32-bittinen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Etumerkillinen 8-bittinen" @@ -11216,7 +11562,7 @@ msgid "Signed Integer" msgstr "Etumerkillinen kokonaisluku" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Yksinkertaistettu kiina" @@ -11233,7 +11579,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." @@ -11241,11 +11587,11 @@ msgstr "" "Venytyspuskurin koko millisekunteina. Liian pienet arvot voivat aiheuttaa " "äänen pätkintää." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Ohita" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Ohita piirto" @@ -11291,24 +11637,24 @@ msgstr "" "tämä valituksi.
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Skylander-kokoelman polk:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "Skylanderia ei löydy tästä kokoelmasta. Luodaanko uusi tiedosto?" @@ -11316,10 +11662,6 @@ msgstr "Skylanderia ei löydy tästä kokoelmasta. Luodaanko uusi tiedosto?" msgid "Skylanders Manager" msgstr "Skylanderien hallinta" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "Skylander-kansiota ei löydy tälle käyttäjälle. Luodaanko uusi kansio?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11329,7 +11671,7 @@ msgstr "Kapo" msgid "Slot A" msgstr "Paikka A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Paikka A:" @@ -11337,7 +11679,7 @@ msgstr "Paikka A:" msgid "Slot B" msgstr "Paikka B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Paikka B:" @@ -11345,7 +11687,7 @@ msgstr "Paikka B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Kiinnitä ohjaussauvan paikka lähimpään kahdeksansuuntaiseen akseliin." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Pistoketaulukko" @@ -11373,12 +11715,12 @@ msgstr "" "Jotkin syötetyistä arvoista ovat virheellisiä.\n" "Tarkista korostetut arvot." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Järjestä aakkosjärjestykseen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Ääni:" @@ -11392,27 +11734,27 @@ msgstr "Espanja" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanja" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Kaiuttimien tasapaino" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Kaiuttimen äänenvoimakkuus:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Erikoistunut (oletus)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Erityinen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11441,15 +11783,15 @@ msgstr "Nopeus" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Pinon loppu" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Pinon alku" @@ -11462,25 +11804,28 @@ msgstr "Vakio-ohjain" msgid "Start" msgstr "Aloita" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Aloita &nettipeli..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Aloita uusi huijauskoodihaku" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Aloita syötteen nauhoitus" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Aloita nauhoittaminen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Aloita koko ruudun tilassa" @@ -11496,10 +11841,10 @@ msgstr "Aloita Riivolution-muutoksin..." msgid "Started game" msgstr "Peli alkoi" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Tila" @@ -11509,7 +11854,7 @@ msgstr "Ratti" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Askella" @@ -11521,13 +11866,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Jätä väliin" @@ -11543,7 +11888,7 @@ msgstr "Loppuun jatkaminen aikakatkaistiin!" msgid "Step over in progress..." msgstr "Väliin jättäminen käynnissä..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Suoritus onnistui!" @@ -11552,7 +11897,7 @@ msgstr "Suoritus onnistui!" msgid "Stepping" msgstr "Askellus" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11582,18 +11927,14 @@ msgstr "Ohjaussauva" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Lopeta" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Lopeta syötteen toisto/nauhoitus" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Lopeta nauhoitus" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Peli päättyi" @@ -11636,7 +11977,7 @@ msgstr "" "(ja tekstuuriin)

Ellet ole varma, jätä tämä " "valituksi." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Venytä ikkunaan" @@ -11671,8 +12012,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Onnistui" @@ -11699,7 +12040,7 @@ msgstr "Tallennustiedostoista %n:n %1:stä vienti onnistui." msgid "Successfully exported save files" msgstr "Tallennustiedostojen vienti onnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista onnistui" @@ -11711,12 +12052,12 @@ msgstr "Tiedoston purku onnistui." msgid "Successfully extracted system data." msgstr "Järjestelmädatan vienti onnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Tallennustiedoston tuonti onnistui." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Julkaisun asentaminen NAND-muistiin onnistui." @@ -11727,11 +12068,11 @@ msgstr "Julkaisun poisto NAND-muistista onnistui." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Tuki" @@ -11739,16 +12080,16 @@ msgstr "Tuki" msgid "Supported file formats" msgstr "Yhteensopivat tiedostomuodot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround-ääni" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Keskeytynyt" @@ -11758,12 +12099,12 @@ msgstr "Vaihda silmät" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Vaihda voimaa" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "Swapper" @@ -11777,7 +12118,7 @@ msgstr "" "varma, jätä tämä valitsematta.
" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Heilautus" @@ -11791,39 +12132,21 @@ msgid "Switch to B" msgstr "Vaihda B:hen" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symboli" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Symbolin (%1) loppuosoite:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"Symbolikarttaa ei löytynyt.\n" -"\n" -"Jos sellaista ei ole, voit luoda sen työkalupalkista:\n" -"Symbolit -> Luo symbolit lähteestä -> Osoite | Allekirjoitustietokanta | RSO-" -"moduulit" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Symbolin nimi:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symbolit" @@ -11852,7 +12175,7 @@ msgstr "" "estämään satunnaisia jumiutumisia kaksiydin-tilassa. (PÄÄLLÄ = Yhteensopiva, " "POIS = Nopea)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11873,24 +12196,24 @@ msgid "Synchronizing save data..." msgstr "Tallennustiedostojen synkronointi käynnissä..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Järjestelmän kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS-työkalut" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Tunnisteet" @@ -11900,7 +12223,7 @@ msgstr "Tunnisteet" msgid "Taiko Drum" msgstr "Taiko-rumpu" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Häntä" @@ -11908,15 +12231,15 @@ msgstr "Häntä" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Ota kuvakaappaus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "Kohdeosoitealue on virheellinen." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11926,7 +12249,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Tekniikka" @@ -11934,6 +12257,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11943,7 +12272,7 @@ msgstr "Tekstuurivälimuisti" msgid "Texture Cache Accuracy" msgstr "Tekstuurivälimuistin tarkkuus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Tekstuurien vedostaminen" @@ -11955,7 +12284,7 @@ msgstr "Tekstuurien suodattaminen" msgid "Texture Filtering:" msgstr "Tekstuurien suodattaminen:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Tekstuurimuodon kerros" @@ -11985,7 +12314,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "Osion {0} H3-tiivistetaulukko on virheellinen." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "IPL-tiedosto ei ole tunnettu hyvä vedos. (CRC32: {0:x})" @@ -11999,7 +12328,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12007,7 +12336,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND-muistin korjaus onnistui." @@ -12021,11 +12350,11 @@ msgstr "" "SD-kortille, Wii-järjestelmävalikko ei käynnistä sitä enää, eikä se myöskään " "suostu kopioimaan tai siirtämään sitä takaisin NAND-muistiin." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "Rahan määrä, joka asetetaan tälle Skylanderille, 0–65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -12065,6 +12394,13 @@ msgstr "Osion \"{0}\" koko ei ole jaollinen lohkokoolla." msgid "The decryption keys need to be appended to the NAND backup file." msgstr "Purkuavaimet tulee lisätä NAND-varmuuskopiotiedoston loppuun." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12087,7 +12423,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Laitettavaa levyä ei löytynyt." @@ -12109,17 +12445,17 @@ msgstr "Emuloitu Wii-konsoli on jo ajan tasalla." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "Syötetty MAC-osoite on virheellinen." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Annettu PID on virheellinen." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Annettu VID on virheellinen." @@ -12127,7 +12463,7 @@ msgstr "Annettu VID on virheellinen." msgid "The expression contains a syntax error." msgstr "Lauseke sisältää syntaksivirheen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12147,7 +12483,7 @@ msgstr "" "Tiedosto %1 on jo olemassa.\n" "Haluatko korvata sen?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12167,7 +12503,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "Tiedosto {0} oli jo avoinna, mutta otsaketta ei voinut kirjoittaa." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12181,7 +12517,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:573 +#: 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 " @@ -12248,13 +12584,11 @@ msgstr "Tiivisteet eivät täsmää!" msgid "The hashes match!" msgstr "Tiivisteet täsmäävät!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"Skylanderin sankarin taso. Tieto ilmenee vain pelissä Skylanders: Spyro's " -"Adventures. 0–100" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12268,11 +12602,11 @@ msgstr "" msgid "The install partition is missing." msgstr "Asennusosio puuttuu." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "Edellinen ajanhetki, jona hahmo on asetettu portaaliin" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12293,9 +12627,9 @@ msgstr "" "nauhoitus toimii oikein, vaihda valittu laite muistikortiksi tai GCI-" "kansioksi." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "Skylanderin lempinimi. Voi olla korkeintaan 15 merkkiä" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12326,14 +12660,14 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Purettu AR-koodi ei sisällä lainkaan rivejä" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" "Samaa tiedostoa ei voi käyttää useissa paikoissa; se on jo käytössä paikassa " "%1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -12374,7 +12708,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12391,11 +12725,11 @@ msgstr "Kohdemuistikortilla on jo tiedosto \"%1\"." msgid "The ticket is not correctly signed." msgstr "Lipun allekirjoitus on virheellinen." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "Kokonaisaika, jonka verran hahmoa on käytetty pelissä, sekunteina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "Hahmon lelukoodi. Tieto on käytettävissä vain oikeissa hahmoissa." @@ -12403,15 +12737,15 @@ msgstr "Hahmon lelukoodi. Tieto on käytettävissä vain oikeissa hahmoissa." msgid "The type of a partition could not be read." msgstr "Osion tyypin lukeminen epäonnistui." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "Tällaisella hahmolla ei ole muokattavaa dataa!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "Skylanderin tyyppi on tuntematon!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12437,7 +12771,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12465,14 +12799,19 @@ msgstr "Osion {0} kohdistus on virheellinen." msgid "There are too many partitions in the first partition table." msgstr "Ensimmäisessä osiotaulukossa on liian monta osiota." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Mitään kumottavaa ei ole!" @@ -12515,19 +12854,19 @@ msgstr "" "korealaisissa konsoleissa. Tämä luultavasti johtaa virheilmoitukseen \"ERROR " "#002\"." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "Tällaista Skylanderia ei voi vielä muokata!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Tämä USB-laite on jo hyväksyttyjen listalla." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Tätä WAD-tiedostoa ei voida käynnistää." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Tämä WAD-tiedosto on virheellinen." @@ -12673,6 +13012,10 @@ msgstr "" msgid "This is a good dump." msgstr "Tämä vedos on hyvä." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Tämä istunto vaatii salasanan:" @@ -12689,13 +13032,13 @@ msgstr "" "\n" "Jos et ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Tätä ohjelmistoa ei tule käyttää pelaamaan pelejä, joita et omista " "laillisesti." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Tätä julkaisua ei voi käynnistää." @@ -12708,7 +13051,7 @@ msgstr "Tämä julkaisu käyttää virheellistä IOS:ää." msgid "This title is set to use an invalid common key." msgstr "Tämä julkaisu käyttää virheellistä yhteisavainta." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12720,7 +13063,7 @@ msgstr "" "\n" "DSP-HLE: Tuntematon mikrokoodi (CRC = {0:08x}) - pakotetaan AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12743,6 +13086,13 @@ 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 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12763,11 +13113,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Säiekonteksti" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Säikeet" @@ -12775,12 +13125,12 @@ msgstr "Säikeet" msgid "Threshold" msgstr "Raja-arvo" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Kallistus" @@ -12795,10 +13145,10 @@ msgstr "" msgid "Timed Out" msgstr "Aikakatkaisu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Julkaisu" @@ -12812,7 +13162,7 @@ msgstr "Minne" msgid "To:" msgstr "Minne:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Koko ruudun tila päälle/pois" @@ -12837,7 +13187,7 @@ msgid "Toggle Aspect Ratio" msgstr "Kuvasuhteen vaihto" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Keskeytyskohta päälle/pois" @@ -12889,15 +13239,19 @@ msgstr "XFB-kopiot päälle/pois" msgid "Toggle XFB Immediate Mode" msgstr "Välitön XFB päälle/pois" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Tokenisointi epäonnistui." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Työkalupalkki" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Yläreuna" @@ -12905,9 +13259,8 @@ msgstr "Yläreuna" msgid "Top-and-Bottom" msgstr "Päällekkäin" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Osumia yhteensä" @@ -12944,28 +13297,28 @@ msgstr "Matkaetäisyys yhteensä." msgid "Touch" msgstr "Kosketus" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "Lelukoodi:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Perinteinen kiina" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "Ansa" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "Ansamestari" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -13004,26 +13357,26 @@ msgid "Triggers" msgstr "Olkanäppäimet" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "Palkinto" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tyyppi" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Tyyppiin perustuva kohdistus" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Tavallinen GameCube-/Wii-osoiteavaruus" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "TUNTEMATON" @@ -13035,7 +13388,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB-laitteiden emulointi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB-emulointi" @@ -13047,13 +13400,13 @@ msgstr "USB-emuloinnin laitteet" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB-hyväksyntävirhe" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -13065,7 +13418,7 @@ msgstr "" "

Ellet ole varma, valitse tämä tila." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13078,7 +13431,7 @@ msgstr "" "hybridi-Uber-varjostimilla ja ellei sinulla ole erittäin suorituskykyinen " "grafiikkasuoritin." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -13092,7 +13445,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:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "RSO-moduulin tunnistus epäonnistui" @@ -13104,11 +13457,11 @@ msgstr "Yhteys päivityspalvelimeen epäonnistui." msgid "Unable to create updater copy." msgstr "Kopion luominen päivittimestä epäonnistui." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "Skylanderin muokkaus ei onnistunut!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Tiedoston avaaminen epäonnistui." @@ -13137,7 +13490,7 @@ msgstr "" "\n" "Haluatko ohittaa tämän rivin ja jatkaa jäsentämistä?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Tiedoston lukeminen epäonnistui." @@ -13160,15 +13513,15 @@ msgstr "Pakkaamattomat GC-/Wii-levykuvat (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Epäkuolema" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Kumoa tilan palauttaminen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Kumoa tilan tallentaminen" @@ -13189,11 +13542,11 @@ msgstr "" "version NAND-muistista poistamatta kuitenkaan sen tallennustiedostoa. " "Jatketaanko?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Yhdysvallat" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13204,12 +13557,13 @@ msgstr "Yhdysvallat" msgid "Unknown" msgstr "Tuntematon" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Tuntematon (Tunnus:%1 Muuttuja:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Tuntematon DVD-komento {0:08x} - vakava virhe" @@ -13237,11 +13591,11 @@ msgstr "" "Tuntematon SYNC_SAVE_DATA-viesti tunnisteella {0} saapui pelaajalta {1}. " "Pelaaja tulee poistetuksi!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Tuntematon osoiteavaruus" @@ -13249,7 +13603,7 @@ msgstr "Tuntematon osoiteavaruus" msgid "Unknown author" msgstr "Tuntematon tekijä" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Tuntematon tietotyyppi" @@ -13257,7 +13611,7 @@ msgstr "Tuntematon tietotyyppi" msgid "Unknown disc" msgstr "Tuntematon levy" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Tapahtui tuntematon virhe." @@ -13279,16 +13633,18 @@ msgstr "" "Saapui tuntematon viesti tunnisteella {0} pelaajalta {1}. Pelaaja tulee " "poistetuksi!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Tuntematon(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Tuntematon(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Rajoittamaton" @@ -13321,22 +13677,22 @@ msgid "Unpacking" msgstr "Purku käynnissä" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Etumerkitön 16-bittinen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Etumerkitön 32-bittinen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Etumerkitön 8-bittinen" @@ -13400,23 +13756,23 @@ msgstr "" "Julkaisun %1 käynnissä...\n" "Tämä voi kestää hetken." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Pystysuuntainen pitely" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Pystysuuntaisuus päälle/pois" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Pystysuuntainen Wii Remote" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Käyttötilastojen raportointi" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" "Käytä osoitetta 8.8.8.8 saadaksesi tavallisen nimipalvelimen, tai anna oma " @@ -13430,15 +13786,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Käytä häviötöntä koodekkia (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Käytä PAL60-tilaa (EuRGB60)" @@ -13446,7 +13802,7 @@ msgstr "Käytä PAL60-tilaa (EuRGB60)" msgid "Use Panic Handlers" msgstr "Käytä paniikkikäsittelijöitä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13478,43 +13834,18 @@ msgstr "" "Käyttää yhteistä syvyyspuskuria molemmille silmille. Muutamat pelit vaativat " "tätä asetusta." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "Käytä muistikartoituksen asetuksia haun aikana" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Käytä fyysisiä osoitteita" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Käytä näennäisosoitteita, kun mahdollista" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Käyttäjän asetukset" @@ -13554,7 +13885,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valituksi." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13564,7 +13895,7 @@ msgstr "" "erillinen hahmonnusikkuna luodaan sen sijaan.

Ellet " "ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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.
Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Käytössä Qt %1" @@ -13582,31 +13913,31 @@ msgstr "Käytössä Qt %1" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Käytetään yleensä valokappaleille" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Käytetään yleensä normaalimatriiseille" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Käytetään yleensä paikkamatriiseille" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Käytetään yleensä tekstuurikoordinaattimatriiseil" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Apuvälineet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Pystytahdistus (V-Sync)" @@ -13614,11 +13945,11 @@ msgstr "Pystytahdistus (V-Sync)" msgid "VBI Skip" msgstr "VBI-ohitus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Arvo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Arvo jäljittyy nykyiseen käskyyn" @@ -13626,17 +13957,17 @@ msgstr "Arvo jäljittyy nykyiseen käskyyn" msgid "Value:" msgstr "Arvo:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "Annettu tyyppi on virheellinen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Tyyppi:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Ajoneuvo" @@ -13652,16 +13983,16 @@ msgstr "Tasovaatimus" msgid "Verify" msgstr "Varmenna" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Varmenna eheys" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Tarkista varmenteet" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Varmennus käynnissä" @@ -13675,7 +14006,7 @@ msgid "Vertex Rounding" msgstr "Kulmapisteiden pyöristys" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Pystysuuntainen näkökenttä" @@ -13689,12 +14020,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Näytä &koodi" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Näytä &muisti" @@ -13702,14 +14033,14 @@ msgstr "Näytä &muisti" msgid "Virtual Notches" msgstr "Virtuaaliset kolot" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Näennäisosoiteavaruus" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Äänenvoimakkuus" @@ -13729,33 +14060,33 @@ msgstr "Äänenvoimakkuuden suurennus" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD-tiedostot (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "WADin asennus epäonnistui: Wii Shop -lokitiedostojen luonti epäonnistui." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WADin asennus epäonnistui: Julkaisun tuonnin viimeistely epäonnistui." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "WADin asennus epäonnistui: Sisällön {0:08x} tuonti epäonnistui." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "WADin asennus epäonnistui: Julkaisun tuonnin alustus epäonnistui (virhe {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "WADin asennus epäonnistui: Valittu tiedosto ei ole kelvollinen WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "ODOTTAA" @@ -13806,12 +14137,12 @@ msgstr "WFS-polku:" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA-GC-/Wii-levykuvat (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Odottaa ensimmäistä hakua..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13829,7 +14160,7 @@ msgstr "" "

Muussa tapauksessa, ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13861,7 +14192,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Varoitus" @@ -13966,7 +14297,7 @@ msgstr "Vahti" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Vesi" @@ -13983,7 +14314,7 @@ msgstr "Länsimainen (Windows-1252)" msgid "Whammy" msgstr "Vibrakampi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13996,7 +14327,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valituksi." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -14009,7 +14340,7 @@ msgstr "" "Parannuksissa.

Ellet ole varma, jätä tämä valituksi." "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Hyväksyttyjen laitteiden lista USB-läpipäästöön" @@ -14033,7 +14364,7 @@ msgstr "Wii-valikko" msgid "Wii NAND Root:" msgstr "Wiin NAND-muistin juuri:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -14041,7 +14372,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -14059,7 +14390,7 @@ msgstr "Wii Remoten painikkeet" msgid "Wii Remote Gyroscope" msgstr "Wii Remoten gyroskooppi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote -asetukset" @@ -14079,7 +14410,7 @@ msgstr "Wiin TAS-syöte %1 - Wii Remote" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wiin TAS-syöte %1 - Wii Remote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii ja Wii Remote" @@ -14087,11 +14418,11 @@ msgstr "Wii ja Wii Remote" msgid "Wii data is not public yet" msgstr "Wii-data ei ole vielä julkista" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-tallennustiedostot (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools-allekirjoituksen MEGA-tiedosto" @@ -14103,11 +14434,23 @@ 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 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Ikkunan koko" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Automaattinen rivitys" @@ -14121,10 +14464,14 @@ msgstr "Maailma" msgid "Write" msgstr "Kirjoitus" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Vain kirjoitus" @@ -14166,6 +14513,14 @@ msgstr "Väärä alue" msgid "Wrong revision" msgstr "Väärä revisio" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14174,11 +14529,11 @@ msgstr "Väärä revisio" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF-rekisteri " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA -kohdeosoite" @@ -14213,7 +14568,7 @@ msgstr "Kyllä" msgid "Yes to &All" msgstr "Kyllä k&aikkiin" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14222,7 +14577,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:272 +#: 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 " @@ -14358,7 +14713,7 @@ msgstr "" "Haluatko lopettaa nyt korjataksesi ongelman?\n" "Jos valitset \"Ei\", ääni voi olla pätkivää." -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14378,15 +14733,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 -koodia ei tueta" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Dolphinille tuntematon Zero-koodi: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] ja [%3, %4]" @@ -14394,11 +14753,11 @@ msgstr "[%1, %2] ja [%3, %4]" msgid "^ Xor" msgstr "^ Poissulkeva tai" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "kohdistettu" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "mikä vain arvo" @@ -14417,21 +14776,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll:n lataus epäonnistui." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "oletus" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "ei yhteydessä" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader-kortit (*.raw);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "virhekoodi" @@ -14439,31 +14798,35 @@ msgstr "virhekoodi" msgid "fake-completion" msgstr "näennäisläpäisy" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "yhtä suuri kuin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "suurempi kuin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "suurempi tai yhtä suuri kuin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "pienempi kuin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "pienempi tai yhtä suuri kuin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "erisuuri kuin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "edellinen arvo" @@ -14473,7 +14836,7 @@ msgstr "edellinen arvo" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14485,13 +14848,13 @@ msgstr "" msgid "none" msgstr "ei mikään" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "pois" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "päällä" @@ -14508,16 +14871,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "tämä arvo:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "kohdistamaton" @@ -14532,11 +14899,11 @@ msgstr "kohdistamaton" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "IPL {0} löytyi kansiosta {1}. Levy ei välttämättä tule tunnistetuksi." @@ -14573,7 +14940,7 @@ msgstr "| Tai" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14584,8 +14951,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/fr.po b/Languages/po/fr.po index 5d4cce6a1a77..26baba878075 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -77,8 +77,8 @@ msgstr "$ Variable Utilisateur" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -99,19 +99,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -132,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (préréglage)" @@ -174,6 +175,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 ne prend pas en charge cette fonctionnalité sur votre système." @@ -200,7 +206,7 @@ msgstr "%1 s'est connecté" msgid "%1 has left" msgstr "%1 s'est déconnecté" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -208,7 +214,7 @@ 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 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" @@ -224,12 +230,12 @@ msgstr "%1 est en mode golf" msgid "%1 is playing %2" msgstr "%1 joue à %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -246,7 +252,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%" @@ -254,26 +260,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "La valeur de %1 est utilisée" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -311,20 +317,20 @@ msgstr "%1x Natif (%2x%3) pour %4" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n adresse(s) n'ont pu être accédées dans la mémoire émulée." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n adresse(s) restante(s)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -334,23 +340,23 @@ msgstr "%n adresse(s) ont été retirées." msgid "& And" msgstr "& Et" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&À propos" @@ -358,12 +364,12 @@ msgstr "&À propos" msgid "&Add Memory Breakpoint" msgstr "&&Ajouter un point d'arrêt mémoire" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Ajouter un nouveau code..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Ajouter une fonction" @@ -371,27 +377,27 @@ msgstr "&Ajouter une fonction" msgid "&Add..." msgstr "&Ajouter..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "&Assembleur" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Paramètres &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "Mise à jour &automatique :" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "Fenêtre sans &bordures" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Points d'arrêt" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "Suivi des &bugs" @@ -399,15 +405,15 @@ msgstr "Suivi des &bugs" msgid "&Cancel" msgstr "&Annuler" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "Gestionnaire de &cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "Rechercher des &mises à jour..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Effacer les symboles" @@ -415,19 +421,24 @@ msgstr "&Effacer les symboles" msgid "&Clone..." msgstr "&Cloner..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Code" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Connecté" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Paramètres des &manettes" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Copier l'adresse" @@ -435,7 +446,7 @@ msgstr "&Copier l'adresse" msgid "&Create..." msgstr "&Créer..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Supprimer..." @@ -452,9 +463,9 @@ msgstr "&Effacer la surveillance" msgid "&Delete Watches" msgstr "&Supprimer les observations" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Modifier le code" @@ -462,23 +473,23 @@ msgstr "&Modifier le code" msgid "&Edit..." msgstr "&Éditer..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Éjecter le disque" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Émulation" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exporter" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Exporter la sauvegarde du jeu..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Exporter l'état..." @@ -486,55 +497,53 @@ msgstr "&Exporter l'état..." msgid "&Export as .gci..." msgstr "&Exporter comme .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Police..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Avancement d'image" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "Réglages de la &Vue libre" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Générer les symboles depuis" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Dépôt &GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Aller au début de la fonction" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Paramètres &graphiques" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Aide" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Paramètres des &Raccouris clavier" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importer" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Importer la sauvegarde du jeu..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importer l'état..." @@ -542,19 +551,19 @@ msgstr "&Importer l'état..." msgid "&Import..." msgstr "&Importer..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Insérer blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "Fusion &inter-images" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -562,15 +571,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Langue :" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Charger l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Charger une Carte de Symboles" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Charger le fichier à l'adresse actuelle" @@ -580,23 +593,23 @@ msgstr "&Charger le fichier à l'adresse actuelle" msgid "&Lock Watches" msgstr "&Verrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "Verrouiller l'emplacement des &Widgets" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "Fil&m" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Couper le son" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Réseau" @@ -605,23 +618,23 @@ msgid "&No" msgstr "&Non" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Ouvrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Options" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Patcher les fonctions HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Démarrer" @@ -629,15 +642,15 @@ msgstr "&Démarrer" msgid "&Properties" msgstr "&Propriétés" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "Mode &Lecture seule" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Actualiser la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registres" @@ -645,41 +658,45 @@ msgstr "&Registres" msgid "&Remove" msgstr "&Retirer" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Retirer le Code" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Renommer symbole" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "Gestionnaire de Packs de &Ressources" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Sauvegarder la carte des symboles" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "&Lire la ou les carte(s) e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "&Portail Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Limite de vitesse :" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Stop" @@ -687,15 +704,19 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Thème :" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Outils" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&Décharger la ROM" @@ -705,17 +726,17 @@ msgstr "&Décharger la ROM" msgid "&Unlock Watches" msgstr "&Déverrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Regarder" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "Site &web" @@ -727,11 +748,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Oui" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' introuvable, aucun nom de symbole généré" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' introuvable, recherche de fonctions communes à la place" @@ -747,7 +768,7 @@ msgstr "(Clair)" msgid "(System)" msgstr "(Système)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(hôte)" @@ -755,7 +776,7 @@ msgstr "(hôte)" msgid "(off)" msgstr "(aucun)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -775,15 +796,15 @@ msgstr ", Virgule" msgid "- Subtract" msgstr "- Soustraire" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Inconnu--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -794,12 +815,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Diviser" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 Gio" @@ -811,7 +832,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 Mio" @@ -819,11 +840,11 @@ msgstr "128 Mio" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 octets" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 Gio (SDHC)" @@ -835,17 +856,17 @@ msgstr "16 Mbit (251 blocs)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "Entier 16 bits signé" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "Entier 16 bits non signé" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16/9" @@ -857,11 +878,11 @@ msgstr "Anisotropique 16x" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 Gio" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 Mio" @@ -873,7 +894,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "Anisotropique 2x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 Gio (SDHC)" @@ -885,25 +906,25 @@ msgstr "32 Mbit (507 blocs)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "Flottant 32 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "Entier 32 bits signé" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -917,11 +938,11 @@ msgstr "Profondeur 3D" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 octets" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 Gio (SDHC)" @@ -929,7 +950,7 @@ msgstr "4 Gio (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4/3" @@ -945,7 +966,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "Anisotropique 4x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 Mio" @@ -957,22 +978,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 Mio" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "Flottant 64 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "Entier 64 bits signé" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "Entier 64 bits non signé" @@ -980,11 +1001,11 @@ msgstr "Entier 64 bits non signé" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 octets" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 Gio (SDHC)" @@ -996,13 +1017,13 @@ msgstr "8 Mbit (123 blocs)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "Entier 8 bits signé" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "Entier 8 bits non signé" @@ -1018,7 +1039,7 @@ msgstr "Anisotropique 8x" msgid "< Less-than" msgstr "< Inférieur à" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1030,12 +1051,12 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "Désactivé en mode Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1074,12 +1095,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Supérieur à" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Une session NetPlay est en cours !" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1096,7 +1117,7 @@ msgstr "" "Installer cette WAD va remplacer celle de la NAND de manière irréversible. " "Continuer ?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Un disque est déjà sur le point d'être inséré." @@ -1109,13 +1130,13 @@ msgstr "" "que les jeux GC et Wii s'affichent dans l'espace de couleur pour lequel ils " "sont prévus." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Une sauvegarde d'état ne peut être chargée sans avoir spécifié quel jeu " "démarrer." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1138,6 +1159,10 @@ msgstr "" "Une synchronisation ne peut être faite que lorsqu'un jeu Wii est entrain de " "fonctionner." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1173,7 +1198,7 @@ msgstr "" "considérée comme fonctionnelle.\n" "Utilisez-les à vos risques.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Code AR" @@ -1182,8 +1207,8 @@ msgstr "Code AR" msgid "AR Codes" msgstr "Codes AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1197,7 +1222,7 @@ msgid "About Dolphin" msgstr "À propos de Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Accéléromètre" @@ -1216,7 +1241,7 @@ msgid "Achievement Settings" msgstr "Paramètres des succès" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Succès" @@ -1322,19 +1347,19 @@ msgstr "Activer le Chat NetPlay" msgid "Active" msgstr "Actif" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Figurines Infinity actives :" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "File d'attente de threads actifs" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Threads actifs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adaptateur" @@ -1342,7 +1367,7 @@ msgstr "Adaptateur" msgid "Adapter Detected" msgstr "Adaptateur détecté" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Carte :" @@ -1352,7 +1377,7 @@ msgstr "Carte :" msgid "Add" msgstr "Ajouter" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Ajouter un &point d'arrêt" @@ -1381,51 +1406,48 @@ msgstr "Ajouter un point d'arrêt à la mémoire" msgid "Add memory &breakpoint" msgstr "Ajouter un &point d'arrêt mémoire" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Ajouter à la surveillance" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Ajouter..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adresse" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Espace d'adresse" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Espace d'adresse par état de CPU" @@ -1512,12 +1534,12 @@ msgid "Advance Game Port" msgstr "Port jeu avancé" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avancé" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Réglages avancés" @@ -1532,41 +1554,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"Affecte la manière dont l'affichage du jeu est mis à l'échelle en fonction " -"de la résolution de la fenêtre.
Les performances dépendent principalement " -"du nombre d'échantillons que chaque méthode utilise.
Comparé au SSAA, le " -"rééchantillonnage est utile dans le cas où la résolution de la fenêtre " -"d'affichage
n'est pas un multiple de la résolution native émulée." -"

Par défaut - [le plus rapide]
Échantillonneur bilinéaire " -"interne au GPU qui ne corrige pas le gamma.
Ce réglage peut être ignoré " -"si la correction gamma est forcée sur marche.

Bilinéaire - [4 " -"échantillons]
Interpolation linéaire entre les pixels avec correction " -"gamma.

Bicubique - [16 échantillons]
Interpolation cubique " -"entre les pixels avec correction gamma.
Bien lors d'une mise à l'échelle " -"sur des résolutions proches, par exemple 1080p et 1440p.
Fourni dans " -"différents parfums :
B-Spline : flou, mais évite tous les " -"artefacts de lobing.
Mitchell-Netravali : bon compromis entre flou " -"et le lobing.
Catmull-Rom : plus net, mais peut provoquer des " -"artefacts de lobing.

Bilinéaire net - [1 à 4 " -"échantillons]
Similaire au \"Plus proche\", il conserve un affichage net, " -"
mais fait un peu de mélange pour éviter les reflets.
Fonctionne au " -"mieux avec les jeux en 2D dans de faibles résolutions." -"

Échantillonnage de zone - [jusqu'à 324 " -"échantillons]
Pondère les pixels en fonction du pourcentage de surface " -"qu'ils occupent. Avec correction gamma.
C'est le mieux pour downscaler " -"par plus de 2x.

Dans le doute, sélectionnez \"Par " -"défaut\"." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1574,16 +1572,16 @@ msgstr "Afrique" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Air" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Aligné sur le type de longueur de données" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Tout" @@ -1597,11 +1595,11 @@ msgid "All Double" msgstr "Tout Double" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1609,7 +1607,7 @@ msgid "All Files" msgstr "Tous les fichiers" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Tous les fichiers (*)" @@ -1618,7 +1616,7 @@ msgstr "Tous les fichiers (*)" msgid "All Float" msgstr "Tout Flottant" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tous les fichiers GC/Wii" @@ -1627,8 +1625,8 @@ msgstr "Tous les fichiers GC/Wii" msgid "All Hexadecimal" msgstr "Tout Hexadécimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tous les états sauvegardés (*.sav *.s##);; Tous les fichiers (*)" @@ -1640,7 +1638,7 @@ msgstr "Tout Entier Signé" msgid "All Unsigned Integer" msgstr "Tout Entier Non-signé" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Tous les fichiers (*)" @@ -1652,15 +1650,15 @@ 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:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Autoriser des réglages pour région différente" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Autoriser l'envoi des statistiques d'utilisation" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Autoriser les écritures sur la carte SD" @@ -1690,7 +1688,7 @@ msgstr "Toujours" msgid "Always Connected" msgstr "Toujours connecté" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "&Toujours au premier plan" @@ -1728,15 +1726,15 @@ msgstr "Anti-Aliasing :" msgid "Any Region" msgstr "Toutes régions" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Ajouter la signature à" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Ajouter à un fichier de signature &existant..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "A&ppliquer un fichier de signature" @@ -1757,7 +1755,7 @@ msgstr "Date de l'Apploader :" msgid "Apply" msgstr "Appliquer" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Appliquer un fichier de signature" @@ -1789,12 +1787,16 @@ msgstr "Êtes-vous sûr ?" msgid "Area Sampling" msgstr "Échantillonnage de zone" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Format d'écran" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Format d'écran :" @@ -1802,7 +1804,7 @@ msgstr "Format d'écran :" msgid "Assemble" msgstr "Assembler" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "Assembler l'instruction" @@ -1810,7 +1812,7 @@ msgstr "Assembler l'instruction" msgid "Assembler" msgstr "Assembleur" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "Fichier Assembleur" @@ -1829,7 +1831,7 @@ msgstr "" "Au moins deux des fichiers de sauvegarde sélectionnés ont le même nom de " "fichier interne." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Attacher le MotionPlus" @@ -1837,11 +1839,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" @@ -1853,12 +1855,12 @@ msgstr "Australie" msgid "Author" msgstr "Auteur" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Auteurs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1866,11 +1868,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiple de 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "Sauvegarde automatique" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Paramètres de mise à jour automatique" @@ -1886,7 +1884,7 @@ msgstr "" "\n" "Veuillez choisir une résolution interne spécifique." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Ajuster auto. la taille de la fenêtre" @@ -1894,15 +1892,15 @@ msgstr "Ajuster auto. la taille de la fenêtre" msgid "Auto-Hide" msgstr "Cacher automatiquement" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Détecter automatiquement les modules RSO ?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: 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:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1911,18 +1909,18 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Mettre à jour automatiquement les valeurs actuelles" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Auxiliaire" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "o" @@ -1930,7 +1928,7 @@ msgstr "o" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT incorrect, Dolphin va quitter" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1940,31 +1938,35 @@ msgstr "" "GameCube valide doit être utilisée. Générez une nouvelle adresse MAC " "commençant par 00:09:bf ou 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS :" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Registres BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Moteur" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Moteur :" @@ -1980,13 +1982,13 @@ msgstr "Entrée en arrière-plan" msgid "Backward" msgstr "Arrière" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Mauvaise valeur entrée" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Mauvaise adresse fournie." @@ -1994,20 +1996,20 @@ msgstr "Mauvaise adresse fournie." msgid "Bad dump" msgstr "Mauvais dump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Mauvais offset fourni." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Mauvaise valeur fournie." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Bannière" @@ -2027,15 +2029,15 @@ msgstr "Barre" msgid "Base Address" msgstr "Adresse de base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Priorité de base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Paramètres généraux" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Paramètres de base" @@ -2043,15 +2045,15 @@ msgstr "Paramètres de base" msgid "Bass" msgstr "Basse" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Vous devez spécifier un jeu à lancer pour utiliser le mode batch." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batterie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (mensuelle)" @@ -2075,33 +2077,33 @@ msgstr "Bicubic : Mitchell-Netravali" msgid "Bilinear" msgstr "Bilinéaire" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Binaire SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Binaire SSL (lecture)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Binaire SSL (écriture)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps) :" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"La création d'une figurine vierge a échoué à :\n" -"%1, essayez à nouveau avec un autre personnage" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Taille des blocs" @@ -2110,7 +2112,7 @@ msgstr "Taille des blocs" msgid "Block Size:" msgstr "Taille des blocs :" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blocking" @@ -2139,33 +2141,144 @@ 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:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Démarrer sur Pause" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 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:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fichier de clés BootMii (*.bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Plein écran sans bords" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Bas" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Branche : %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Branches" @@ -2203,11 +2316,11 @@ msgstr "Adaptateur réseau (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Adaptateur réseau (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "Réglages DNS de l'adaptateur Ethernet" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Erreur d'adaptateur réseau" @@ -2217,11 +2330,11 @@ msgstr "Erreur d'adaptateur réseau" msgid "Broadband Adapter MAC Address" msgstr "Adresse MAC de l'adaptateur réseau" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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 :" @@ -2256,7 +2369,7 @@ msgstr "Bouton" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2272,7 +2385,7 @@ msgstr "Bouton" msgid "Buttons" msgstr "Boutons" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "Par : %1" @@ -2282,11 +2395,11 @@ msgstr "Par : %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "&Créer un Fichier Signature..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Registre CP" @@ -2298,7 +2411,7 @@ msgstr "Moteur d'émulation du CPU :" msgid "CPU Options" msgstr "Options du CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32 :" @@ -2306,7 +2419,7 @@ msgstr "CRC32 :" msgid "Cached Interpreter (slower)" msgstr "Interpréteur avec cache (lent)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2317,7 +2430,7 @@ msgstr "" "saccades.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Calculer" @@ -2334,11 +2447,11 @@ msgstr "" "ou pépins graphiques.

Dans le doute, décochez cette " "case." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Étalonner" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Étalonnage" @@ -2346,19 +2459,19 @@ msgstr "Étalonnage" msgid "Calibration Period" msgstr "Durée d'étalonnage" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Appel de la liste d'affichage à %1 avec pour taille %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Callers" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Appels" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Pile d'exécution" @@ -2367,75 +2480,87 @@ msgid "Camera 1" msgstr "Caméra 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" "Champ de vue de la caméra (agit sur la sensibilité du pointeur de la " "Wiimote)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 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 " "uniquement." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "Ne peut pas encore être modifié !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "Impossible d'éditer les méchants pour ce trophée !" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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 " "d'exécution !" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Annuler l'étalonnage" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Impossible d'utiliser le pas à pas pour le FIFO. Utilisez l'avancement image " "par image à la place." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Impossible de démarrer ce WAD car il ne peut être installé dans la NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Impossible de trouver l'IPL de GC" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Impossible de générer un code AR pour cette adresse." @@ -2443,19 +2568,21 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 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:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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é." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Méchant %1 capturé :" @@ -2473,7 +2600,7 @@ msgstr "Centre" msgid "Center Mouse" msgstr "Centrer la souris" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Centrer et étalonner" @@ -2481,7 +2608,7 @@ msgstr "Centrer et étalonner" msgid "Change &Disc" msgstr "&Changer de disque" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "&Changer de disque..." @@ -2489,7 +2616,7 @@ msgstr "&Changer de disque..." msgid "Change Disc" msgstr "Changer de disque" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Changer automatiquement les disques" @@ -2497,7 +2624,7 @@ msgstr "Changer automatiquement les disques" msgid "Change the disc to {0}" msgstr "Changer le disque par {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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 +2664,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Partition de Chaîne (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "Le personnage entré est invalide !" @@ -2549,15 +2676,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editeur de cheat codes" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Rechercher un cheat" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Gestionnaire de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Vérifier la NAND..." @@ -2565,7 +2692,7 @@ msgstr "Vérifier la NAND..." msgid "Check for Game List Changes in the Background" msgstr "Rechercher en arrière-plan les changements dans la liste des jeux" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Rechercher des mises à jour" @@ -2585,27 +2712,27 @@ msgstr "Somme de contrôle" msgid "China" msgstr "Chine" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Choisissez" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Choisir un fichier à ouvrir" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "Choisissez un fichier à ouvrir ou créer" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Choisir le fichier d'entrée prioritaire." -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Choisir le fichier d'entrée secondaire." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Choisissez le dossier racine du GCI" @@ -2632,15 +2759,19 @@ msgstr "Manette classique" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Effacer" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Effacer le cache" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Effacer le slot" @@ -2648,7 +2779,7 @@ msgstr "Effacer le slot" msgid "Clock Override" msgstr "Changement de vitesse" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "&Cloner et modifier le Code..." @@ -2657,37 +2788,21 @@ msgstr "&Cloner et modifier le Code..." msgid "Close" msgstr "Fermer" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Co&nfiguration" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Outil de différenciation de code" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Aide de l'outil de différenciation de code" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "Le code n'a pas été exécuté" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "Le code a été exécuté" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2713,7 +2828,11 @@ msgstr "Correction de couleur :" msgid "Color Space" msgstr "Espace de couleur" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Combiner &deux fichiers de signature..." @@ -2746,7 +2865,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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compiler les Shaders avant le démarrage" @@ -2754,9 +2873,9 @@ msgstr "Compiler les Shaders avant le démarrage" msgid "Compiling Shaders" msgstr "Compilation des Shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Compression" @@ -2769,10 +2888,16 @@ msgstr "Niveau de compression :" msgid "Compression:" msgstr "Compression :" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2895,7 +3020,7 @@ msgstr "" "avertissement sera affiché si un NaN est retourné, et la variable qui est " "devenue un NaN sera journalisée." -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Configurer" @@ -2928,13 +3053,13 @@ msgstr "Configurer la sortie" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmer" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Confirmez le changement de moteur" @@ -2942,7 +3067,7 @@ msgstr "Confirmez le changement de moteur" msgid "Confirm on Stop" msgstr "Confirmer l'arrêt de l'émulation" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2953,15 +3078,15 @@ msgstr "Confirmation" msgid "Connect" msgstr "Connecter" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Connecter la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Connecter le clavier USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Connecter la Wiimote %1" @@ -2981,7 +3106,7 @@ msgstr "Connecter la Wiimote 3" msgid "Connect Wii Remote 4" msgstr "Connecter la Wiimote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Connecter les Wiimotes" @@ -3022,7 +3147,7 @@ msgstr "Contrôler le mode Golf de NetPlay" msgid "Control Stick" msgstr "Stick de contrôle" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Config de manette" @@ -3046,7 +3171,7 @@ msgstr "Profil de la manette 4" msgid "Controller Settings" msgstr "Paramètres des manettes" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Manettes" @@ -3134,8 +3259,8 @@ msgstr "Convergence" msgid "Convergence:" msgstr "Convergence :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Échec de la conversion." @@ -3143,9 +3268,9 @@ msgstr "Échec de la conversion." msgid "Convert" msgstr "Convertir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3153,9 +3278,9 @@ msgstr "Convertir le fichier en dossier maintenant" msgid "Convert File..." msgstr "Convertir le fichier..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3178,8 +3303,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:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Conversion..." @@ -3231,15 +3356,15 @@ msgstr "" msgid "Copy" msgstr "Copier" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Copier la &fonction" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Copier l'&hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Copier l'adresse" @@ -3247,19 +3372,19 @@ msgstr "Copier l'adresse" msgid "Copy Failed" msgstr "Échec de la copie" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Copier l'Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Copier la valeur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Copier la &ligne de code" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Copier l'adresse &cible" @@ -3277,6 +3402,11 @@ msgstr "Copier vers B" msgid "Core" msgstr "Core" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Corriger l'espace de couleurs" @@ -3286,7 +3416,7 @@ msgid "Correct SDR Gamma" msgstr "Corriger le gamma SDR" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Coût" @@ -3380,7 +3510,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Fichier {0} non reconnu" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Impossible d'enregistrer vos changements !" @@ -3425,13 +3555,13 @@ msgstr "Impossible de lire le fichier." msgid "Country:" msgstr "Pays :" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Créer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Créer un fichier Infinity" @@ -3440,15 +3570,11 @@ msgstr "Créer un fichier Infinity" msgid "Create New Memory Card" msgstr "Créer une nouvelle Carte mémoire" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Créer un fichier Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Créer le dossier pour Skylander" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Crée des mappages pour les autres appareils" @@ -3457,23 +3583,8 @@ msgstr "Crée des mappages pour les autres appareils" msgid "Create..." msgstr "Créer..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Crée une capture d'image et d'écran dans la résolution interne du rendu, " -"plutôt que la taille de la fenêtre dans laquelle elle est affichée. " -"

Si le format d'écran est 16/9è, l'image capturée sera adaptée " -"horizontalement pour préserver la résolution verticale." -"

Dans le doute, décochez cette case." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Créateur :" @@ -3481,11 +3592,11 @@ msgstr "Créateur :" msgid "Critical" msgstr "Critique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Recadrer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3501,11 +3612,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: 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:380 +#: 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, " @@ -3516,15 +3627,15 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Région actuelle" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Valeur actuelle" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Contexte acutel" @@ -3532,27 +3643,31 @@ msgstr "Contexte acutel" msgid "Current game" msgstr "Jeu en cours" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Thread actuel" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personnalisé" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Espace d'adresse personnalisé" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Hauteur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Largeur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Format d'affichage personnalisé :" @@ -3564,13 +3679,13 @@ msgstr "Options pour l'horloge personnalisée" msgid "Custom:" msgstr "Personnalisé :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Personnaliser" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3597,7 +3712,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)" @@ -3605,15 +3720,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)" @@ -3640,7 +3755,7 @@ msgstr "Tapis de danse" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Ténèbres" @@ -3656,7 +3771,7 @@ msgstr "Partition de données (%1)" msgid "Data Transfer" msgstr "Transfert de données" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Type de données" @@ -3689,8 +3804,8 @@ msgstr "Zone morte" msgid "Debug" msgstr "Débug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Débogage" @@ -3699,7 +3814,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 :" @@ -3746,7 +3861,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" @@ -3758,11 +3873,11 @@ msgstr "Police par défaut" msgid "Default ISO:" msgstr "ISO par défaut :" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Thread par défaut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Différer l'invalidation du cache EFB" @@ -3770,7 +3885,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:384 +#: 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,26 +3931,53 @@ msgstr "Pourcentage de la profondeur :" msgid "Depth:" msgstr "Profondeur :" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Description" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Description :" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "Description : %1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Détaché" @@ -3843,7 +3985,7 @@ msgstr "Détaché" msgid "Detect" msgstr "Détecter" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Détection des modules RSO" @@ -3851,7 +3993,7 @@ msgstr "Détection des modules RSO" msgid "Deterministic dual core:" msgstr "Double cœur déterministe :" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (plusieurs fois par jour)" @@ -3860,7 +4002,7 @@ msgid "Device" msgstr "Appareil" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "PID de l'appareil (ex : 0305)" @@ -3869,11 +4011,11 @@ msgid "Device Settings" msgstr "Paramètres de la console émulée" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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" @@ -3881,11 +4023,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Diff" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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é." @@ -3897,12 +4035,12 @@ msgstr "Connexion directe" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "Dé&connecté" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Désactiver" @@ -3914,7 +4052,7 @@ msgstr "Désactiver Bounding Box" msgid "Disable Copy Filter" msgstr "Désactiver le filtre de copie" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Désactiver les copies EFB dans la VRAM" @@ -3922,11 +4060,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:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Désactiver Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "Désactiver Fastmem Arena" @@ -3934,11 +4072,11 @@ msgstr "Désactiver Fastmem Arena" msgid "Disable Fog" msgstr "Désactiver le brouillard" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Désactiver le cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "Désactiver la carte des grands points d'entrée" @@ -3957,7 +4095,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4324,7 +4458,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4343,15 +4477,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Néerlandais" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Quitter" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "Copie %1 d'EFB" @@ -4385,7 +4519,7 @@ msgstr "Premières mises à jour de mémoire" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Terre" @@ -4398,7 +4532,7 @@ msgstr "Asie de l'Est" msgid "Edit Breakpoint" msgstr "Modifier le point d'arrêt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Modifier..." @@ -4414,15 +4548,15 @@ msgstr "Effets" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effective" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Priorité effective" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "Eio" @@ -4432,7 +4566,7 @@ msgstr "Éjecter le disque" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Élément" @@ -4440,11 +4574,11 @@ msgstr "Élément" msgid "Embedded Frame Buffer (EFB)" msgstr "Buffer d'image embarqué (Embedded Frame Buffer - EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Vide" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread d'émulation déjà en cours d'exécution" @@ -4452,11 +4586,11 @@ 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:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Émuler la Infinity Base" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Émuler un portail Skylander" @@ -4472,7 +4606,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:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Appareils USB émulés" @@ -4495,28 +4629,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Vitesse de l'émulation" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "L'émulation doit être démarrée avant de charger un fichier." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "L'émulation doit être démarrée avant de sauvegarder un fichier." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "L'émulation doit être démarrée pour pouvoir enregistrer." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Activer les couches de validation d'API" @@ -4528,11 +4650,11 @@ msgstr "Activer les badges de succès" msgid "Enable Achievements" msgstr "Activer les succès" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Activer l'étirement du son" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Activer les Cheats" @@ -4552,7 +4674,7 @@ msgstr "Activer l'interface de débogage" msgid "Enable Dual Core" msgstr "Activer le double cœur" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Activer le double cœur (plus rapide)" @@ -4572,7 +4694,7 @@ msgstr "Activer les succès Encore" msgid "Enable FPRF" msgstr "Activer le FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Activer les mods graphiques" @@ -4614,6 +4736,10 @@ 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 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Activer les tableaux de classements" @@ -4627,7 +4753,7 @@ msgstr "Activer le MMU" msgid "Enable Progress Notifications" msgstr "Activer les notifications de progression" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activer le balayage progressif" @@ -4640,11 +4766,11 @@ msgid "Enable Rich Presence" msgstr "Activer la Rich Presence" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Activer le vibreur" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activer l'économiseur d'écran" @@ -4656,15 +4782,15 @@ msgstr "Activer les données du haut-parleur" msgid "Enable Unofficial Achievements" msgstr "Activer les succès non officiels" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Activer l'envoi des statistiques d'utilisation" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activer WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activer le rendu en fil de fer" @@ -4763,7 +4889,7 @@ msgstr "" "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:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4812,7 +4938,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4826,7 +4952,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4855,7 +4981,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." @@ -4893,7 +5019,7 @@ msgstr "" "Rapide)

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4905,7 +5031,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:302 +#: 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 " @@ -4918,7 +5044,7 @@ msgstr "" "compilés.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4951,7 +5077,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Anglais" @@ -4960,7 +5086,7 @@ msgstr "Anglais" msgid "Enhancements" msgstr "Améliorations" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "Entrez l'adresse IP de l'appareil exécutant le client XLink Kai :" @@ -4982,11 +5108,17 @@ msgstr "Entrez la nouvelle adresse MAC de l'adaptateur réseau :" msgid "Enter password" msgstr "Entrez le mot de passe" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Entrez le serveur DNS à utiliser :" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Entrer l'adresse du module RSO :" @@ -4995,8 +5127,8 @@ msgstr "Entrer l'adresse du module RSO :" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -5007,45 +5139,51 @@ msgstr "Entrer l'adresse du module RSO :" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -5055,16 +5193,16 @@ msgstr "Entrer l'adresse du module RSO :" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Erreur" @@ -5081,9 +5219,9 @@ 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:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Erreur lors de la conversion de la valeur" @@ -5097,7 +5235,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:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" "Une erreur est survenue lors de l'ouverture de certains packs de texture" @@ -5166,7 +5304,7 @@ msgstr "Erreur : GBA{0} n'a pas pu ouvrir la sauvegarde dans {1}" msgid "Error: This build does not support emulated GBA controllers" msgstr "Erreur : Cette version ne prend pas en charge les manettes GBA émulées" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5175,7 +5313,7 @@ msgstr "" "chargées. Les jeux peuvent ne pas afficher les polices correctement, ou " "planter." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5198,58 +5336,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphorie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europe" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Exemple :\n" -"Vous voulez trouver une fonction qui s'exécute lorsque HP est modifié.\n" -"1. Démarrez l'enregistrement et jouez au jeu sans que le HP soit modifié, " -"puis cliquez sur 'Le code n'a pas été exécuté'.\n" -"2. Gagnez ou perdez immédiatement des HP et cliquez sur 'Le code a été " -"exécuté'.\n" -"3. Répétez 1. ou 2. pour affiner les résultats.\n" -"Les inclusions (Le code a été exécuté) devraient être des enregistrements " -"courts pour cibler ce que vous cherchez.\n" -"\n" -"Appuyer deux fois sur 'Le code a été exécuté' ne gardera que les fonctions " -"qui ont été exécutées lors des deux enregistrements. Les concordances se " -"mettront à jour pour refléter le nombre de concordances du dernier " -"enregistrement. Le nombre total de concordances reflétera le nombre total de " -"fois qu'une fonction a été exécutée jusqu'à ce que les listes soient " -"effacées par une Réinitialisation.\n" -"\n" -"Clic droit -> 'Définir blr' placera un blr au début du symbole.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Exclu : %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Exclu : 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershaders exclusifs" @@ -5257,7 +5349,7 @@ msgstr "Ubershaders exclusifs" msgid "Exit" msgstr "Quitter" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "+ ou fermeture de parenthèse attendue" @@ -5265,7 +5357,7 @@ msgstr "+ ou fermeture de parenthèse attendue" msgid "Expected arguments: " msgstr "Arguments attendus :" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Fermeture de parenthèse attendu." @@ -5277,15 +5369,15 @@ msgstr "Virgule attendue." msgid "Expected end of expression." msgstr "Fin d'expression attendue." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Nom d'entrée attendu" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Ouverture de parenthèse attendue" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Début d'expression attendu" @@ -5293,11 +5385,11 @@ msgstr "Début d'expression attendu" msgid "Expected variable name." msgstr "Nom de variable attendu." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Expérimental" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exporter toutes les sauvegardes Wii" @@ -5312,7 +5404,7 @@ msgstr "L'exportation a échoué" msgid "Export Recording" msgstr "Exporter l'enregistrement..." -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exporter l'enregistrement..." @@ -5340,14 +5432,14 @@ msgstr "Exporter comme .&gcs..." msgid "Export as .&sav..." msgstr "Exporter comme .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n sauvegarde(s) exportée(s)" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extension" @@ -5368,7 +5460,7 @@ msgstr "Externe" msgid "External Frame Buffer (XFB)" msgstr "Buffer externe d'image (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Extraire les certificats de la NAND" @@ -5401,12 +5493,12 @@ msgid "Extracting Directory..." msgstr "Extraction du dossier..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Lecteur FIFO" @@ -5426,7 +5518,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Impossible d'ajouter cela au fichier de signature '%1'" @@ -5434,13 +5526,13 @@ msgstr "Impossible d'ajouter cela au fichier de signature '%1'" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "Impossible d'obtenir une interface pour l'accès direct Bluetooth : {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Impossible d'effacer Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "Impossible d'effacer Skylander depuis le slot(%1) !" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5467,23 +5559,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Impossible de créer le fichier Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Impossible de créer le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Impossible de créer le fichier Skylander :\n" -"%1\n" -"(Skylander est peut-être déjà sur le portail)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5506,15 +5596,15 @@ msgstr "Impossible de supprimer le fichier sélectionné." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Impossible de détacher le driver du Kernel pour l'adaptateur BT : {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Impossible de télécharger les codes." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Impossible de dumper %1 : impossible d'ouvrir le fichier" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Impossible de dumper %1 : impossible d'écrire vers le fichier" @@ -5527,7 +5617,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Impossible d'extraire les certificats depuis la NAND" @@ -5553,22 +5643,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Impossible de trouver un ou plusieurs symboles D3D" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "Impossible de trouver ou d'ouvrir le fichier : %1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Impossible d'importer \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5576,7 +5662,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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5587,7 +5673,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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Impossible d'initialiser la base" @@ -5601,7 +5687,7 @@ msgstr "" "Vérifiez que votre carte graphique prend au minimum en charge D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Impossible d'initialiser les classes du moteur de rendu" @@ -5610,11 +5696,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Impossible d'installer ce titre dans la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5622,8 +5708,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:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Impossible de charger le module RSO à %1" @@ -5635,19 +5721,21 @@ msgstr "Impossible de charger d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Impossible de charger dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Impossible d'ouvrir le fichier de carte '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Impossible de charger le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Impossible de charger le fichier Skylander (%1) !\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Impossible de charger l'exécutable en mémoire." @@ -5659,13 +5747,21 @@ msgstr "" "Impossible de charger {0}. Si vous utilisez Windows 7, essayez d'installer " "la mise à jour KB4019990." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Impossible de modifier Skylander !" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Impossible d'ouvrir \"%1\"" @@ -5673,6 +5769,10 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Impossible d'ouvrir le fichier de configuration !" @@ -5702,33 +5802,33 @@ msgstr "" msgid "Failed to open file." msgstr "Impossible d'ouvrir le fichier." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Impossible d'accéder au serveur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Impossible d'ouvrir le fichier Infinity !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Impossible d'ouvrir le fichier Infinity (%1) !\n" -"Le fichier est peut-être déjà utilisé sur la base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Impossible d'ouvrir le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Impossible d'ouvrir le fichier Skylander (%1) !\n" -"Le fichier est peut être déjà utilisé sur le portail." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5750,7 +5850,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Impossible de traiter les données de Redump.org" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "Impossible d'analyser la valeur donnée dans le type de données cible." @@ -5774,39 +5874,35 @@ msgstr "" "Impossible de lire le(s) fichier(s) de sauvegarde sélectionné(s) depuis la " "carte mémoire." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Impossible de lire le fichier Infinity !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Impossible de lire le fichier Infinity (%1) !\n" -"Le fichier était trop petit." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Impossible de lire le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Impossible de lire le fichier Skylander (%1) !\n" -"Le fichier était trop petit." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"Impossible de lire le contenu du fichier\n" -"\n" -"\"%1\"" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5848,31 +5944,31 @@ msgstr "" "Impossible de réinitialiser le dossier de redirection de NetPlay. Vérifiez " "vos droits d'écriture." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Echec de l'enregistrement du journal FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Impossible de sauvegarder la carte du code vers le dossier '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "Impossible de sauvegarder le fichier vers: %1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Impossible de sauvegarder le fichier de signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 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:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5929,7 +6025,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Échec" @@ -5937,11 +6033,11 @@ msgstr "Échec" msgid "Fair Input Delay" msgstr "Délai d'entrée des commandes égalisé" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Région de remplacement" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Région de remplacement :" @@ -5954,7 +6050,7 @@ msgstr "Rapide" msgid "Fast Depth Calculation" msgstr "Calcul rapide de la profondeur" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5967,11 +6063,11 @@ msgstr "" msgid "Field of View" msgstr "Champ de vision" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "Numéro de figurine :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "Type de jouet" @@ -5979,9 +6075,9 @@ msgstr "Type de jouet" msgid "File Details" msgstr "Détails du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Format du fichier" @@ -5993,20 +6089,20 @@ msgstr "Format du fichier :" msgid "File Info" msgstr "Infos du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nom du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Chemin du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Taille du fichier" @@ -6014,7 +6110,7 @@ msgstr "Taille du fichier" msgid "File Size:" msgstr "Taille du fichier :" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Le fichier ne contient pas de code." @@ -6053,15 +6149,15 @@ msgstr "Système de fichiers" msgid "Filters" msgstr "Filtres" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Chercher le &suivant" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Chercher le &précédent" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Terminer l'étalonnage" @@ -6075,7 +6171,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Feu" @@ -6091,31 +6187,32 @@ msgstr "Corriger les sommes de contrôle" msgid "Fix Checksums Failed" msgstr "Échec de la correction des sommes de contrôle" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Drapeaux" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Flottant" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Suivre la &branche" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Pour de meilleurs résultats, bougez lentement votre entrée dans toutes les " @@ -6129,7 +6226,7 @@ msgstr "" "Pour des instructions d'installation, consultez cette page." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -6137,7 +6234,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è" @@ -6145,7 +6242,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" @@ -6177,11 +6274,11 @@ msgstr "Forcer l'écoute du port :" msgid "Force Nearest" msgstr "Forcer au plus proche" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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." @@ -6229,17 +6326,17 @@ msgstr "Avant" msgid "Forward port (UPnP)" msgstr "Faire suivre le port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "1% résultats trouvés pour \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "%n adresse(s) trouvée(s)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Image %1" @@ -6260,7 +6357,7 @@ 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:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Capture d'image" @@ -6268,7 +6365,7 @@ msgstr "Capture d'image" msgid "Frame Range" msgstr "Plage d'images :" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "La/Les capture(s) d'image '{0}' existe déjà. Remplacer ?" @@ -6292,7 +6389,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:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Manette %1 pour la Vue libre" @@ -6327,7 +6424,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:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Français" @@ -6351,7 +6448,7 @@ msgstr "De" msgid "From:" msgstr "De :" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Plein écran" @@ -6383,7 +6480,7 @@ msgstr "Cœur GBA" msgid "GBA Port %1" msgstr "Port GBA %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "Réglages GBA" @@ -6527,20 +6624,20 @@ msgstr "" "GPU : Est-ce que votre carte graphique prend en charge OpenGL 2.x ?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Jeu" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartes Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6548,7 +6645,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:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance sur le Port %1" @@ -6576,8 +6673,8 @@ msgstr "Gamma du jeu" msgid "Game Gamma:" msgstr "Gamma du jeu :" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID du jeu" @@ -6642,11 +6739,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Manette GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Manette GameCube sur le port %1" @@ -6654,11 +6751,11 @@ msgstr "Manette GameCube sur le port %1" msgid "GameCube Controllers" msgstr "Manettes GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Clavier pour GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Clavier pour GameCube sur le Port %1" @@ -6671,11 +6768,11 @@ msgid "GameCube Memory Cards" msgstr "Cartes mémoire de GameCube" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Cartes mémoire de GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "Micro pour GameCube, Slot %1" @@ -6703,7 +6800,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codes Gecko" @@ -6713,35 +6810,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Général" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Général et Options" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Générer un code Action Replay" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Générer une nouvelle identité pour les statistiques" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Code AR généré." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Allemand" @@ -6753,18 +6850,18 @@ msgstr "Allemagne" msgid "GetDeviceList failed: {0}" msgstr "Échec de GetDeviceList : {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "Gio" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "Giant" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Giants" @@ -6777,8 +6874,8 @@ msgid "Good dump" msgstr "Dump OK" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Graphismes" @@ -6822,7 +6919,7 @@ msgstr "Vert Gauche" msgid "Green Right" msgstr "Vert Droite" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Grille" @@ -6831,7 +6928,7 @@ msgstr "Grille" msgid "Guitar" msgstr "Guitare" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Gyroscope" @@ -6859,36 +6956,35 @@ msgstr "Post-Processing HDR" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Head" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Aide" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Niveau du héros :" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Hex Byte String" @@ -6901,7 +6997,11 @@ msgstr "Hexadécimal" msgid "Hide" msgstr "Cacher" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Tout masquer" @@ -6917,12 +7017,12 @@ msgstr "Masquer les sessions incompatibles" msgid "Hide Remote GBAs" msgstr "Masquer les GBA distantes" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6931,14 +7031,8 @@ msgstr "La meilleure" msgid "Hit Strength" msgstr "Puissance du coup" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Concordances" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Champ de vision horizontal" @@ -6955,7 +7049,7 @@ msgstr "Code de l'hôte :" msgid "Host Input Authority" msgstr "Autorité de l'hôte sur les entrées" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Taille de l'hôte" @@ -6984,16 +7078,16 @@ msgstr "Autorité de l'hôte sur les entrées activée" msgid "Host with NetPlay" msgstr "Hôte avec Netplay" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Nom de l'hôte" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Paramètres des Raccouris clavier" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Raccourcis clavier" @@ -7002,7 +7096,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:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershaders hybrides" @@ -7016,16 +7110,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Je suis conscient des risques et souhaite continuer" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "L'identifiant entré est invalide !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "Identifiant :" @@ -7066,7 +7160,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilité de l'IR :" @@ -7119,11 +7213,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:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Génération d'une identité" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -7195,11 +7289,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorer" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorer les changements de formats" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Ignorer pour cette session" @@ -7233,7 +7331,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Présenter immédiatement l'XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7248,7 +7346,7 @@ msgstr "" "abaissant légèrement les performances.

Dans le " "doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Importer une sauvegarde BootMii de la NAND..." @@ -7263,15 +7361,15 @@ msgstr "L'importation a échoué" msgid "Import Save File(s)" msgstr "Importer le(s) fichier(s) de sauvegarde" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importer une sauvegarde Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importation de la sauvegarde de la NAND..." -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7284,15 +7382,6 @@ msgstr "" msgid "In-Game?" msgstr "En cours ?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Inclus : %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Inclus : 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7307,27 +7396,27 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "Valeur de niveau de héros incorrecte !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "Heure de dernier placement incorrecte !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "Heure de dernière réinitialisation incorrecte !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "Valeur d'argent incorrecte !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "Pseudo incorrect !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "Valeur de temps de jeu incorrecte !" @@ -7372,15 +7461,16 @@ msgstr "Rotation incrémentale" msgid "Incremental Rotation (rad/sec)" msgstr "Rotation incrémentale (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Créateur de figurine Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Gestionnaire Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Objet Infinity (*.bin);;" @@ -7403,8 +7493,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Information" @@ -7418,10 +7508,10 @@ msgstr "Injecter" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Entrée" @@ -7435,20 +7525,26 @@ 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/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Insérer &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Insérer une carte SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Inspecté" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7462,7 +7558,7 @@ msgstr "Partition d'installation (%1)" msgid "Install Update" msgstr "Installer la mise à jour" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Installer un WAD..." @@ -7470,11 +7566,13 @@ msgstr "Installer un WAD..." msgid "Install to the NAND" msgstr "Installer dans la NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruction" @@ -7483,7 +7581,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Point d'arrêt instruction" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instruction :" @@ -7492,7 +7590,7 @@ msgstr "Instruction :" msgid "Instruction: %1" msgstr "Instruction : %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7513,19 +7611,19 @@ msgstr "Intensité" msgid "Interface" msgstr "Interface" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Erreur interne LZ4 - Tentative de décompression de {0} octets" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Erreur interne LZ4 - échec de la compression" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 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:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" "Erreur interne LZ4 - la taille du paquet ne correspond pas ({0} / {1}))" @@ -7539,7 +7637,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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7547,7 +7645,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:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7555,7 +7653,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:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7572,7 +7670,7 @@ msgstr "Résolution interne" msgid "Internal Resolution:" msgstr "Résolution interne :" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Erreur interne lors de la génération du code AR." @@ -7580,11 +7678,11 @@ 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:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreter Core" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Expression non valide." @@ -7596,7 +7694,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:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Pack %1 non valide indiqué : %2" @@ -7605,11 +7703,11 @@ msgstr "Pack %1 non valide indiqué : %2" msgid "Invalid Player ID" msgstr "ID joueur non valide" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Adresse du module RSO non valide : %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Pile d'exécution non valide" @@ -7638,7 +7736,7 @@ msgstr "Entrée indiquée non valide" msgid "Invalid literal." msgstr "Expression non valide." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Paramètres de recherche non valides." @@ -7650,21 +7748,21 @@ msgstr "Mot de passe incorrect." msgid "Invalid recording file" msgstr "Fichier d'enregitrement non valide" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Paramètres de recherche non valide (aucun objet sélectionné)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Texte de recherche non valide (seules les longueurs de chaînes de caractères " "sont prises en charge)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "ID du titre non valide." @@ -7674,7 +7772,7 @@ 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:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italien" @@ -7683,63 +7781,63 @@ msgid "Italy" msgstr "Italie" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "Objet" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "Blocs JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7751,16 +7849,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:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "Cache de registre JIT désactivé" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7769,12 +7867,16 @@ msgstr "" "ne devrait jamais arriver. Veuillez transmettre cet incident au suivi de " "bugs. Dolphin va maintenant quitter." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japon" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonais" @@ -7785,7 +7887,7 @@ msgstr "Japonais" msgid "Japanese (Shift-JIS)" msgstr "Japonais (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7793,7 +7895,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:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Continuer l'exécution" @@ -7807,7 +7909,7 @@ msgstr "Toujours au premier plan" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Garder les adresses dont la valeur en mémoire" @@ -7828,7 +7930,7 @@ msgstr "Clavier" msgid "Keys" msgstr "Touches" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "Kio" @@ -7836,12 +7938,12 @@ msgstr "Kio" msgid "Kick Player" msgstr "Sortir le joueur" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Corée" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coréen" @@ -7852,7 +7954,7 @@ msgstr "Coréen" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "C&harger une ROM..." @@ -7862,7 +7964,7 @@ msgstr "C&harger une ROM..." msgid "L-Analog" msgstr "L Analog." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "Sauvegarde LR" @@ -7870,35 +7972,37 @@ msgstr "Sauvegarde LR" msgid "Label" msgstr "Étiquette" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Dernière valeur" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "Dernier emplacement :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7974,13 +8078,13 @@ msgstr "" msgid "Levers" msgstr "Levers" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licence" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Vie" @@ -7994,7 +8098,7 @@ msgstr "Soulever" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Lumière" @@ -8002,11 +8106,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:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Colonnes de la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Liste" @@ -8017,29 +8121,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Charger" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Charger un fichier de carte de &défauts..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Charger un &Autre fichier de carte..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Charger textures personnalisées" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Charger le fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Charger le Menu Principal de la GameCube" @@ -8060,7 +8171,7 @@ msgstr "Charger le dossier :" msgid "Load ROM" msgstr "Charger une ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Charger le slot" @@ -8149,19 +8260,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:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Charger un état depuis un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Charge l'état depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Charger un état depuis un slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Charger le Menu Système Wii %1" @@ -8173,16 +8284,16 @@ 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:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Chargement depuis le Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Charger un fichier de carte" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Charger le menu %1 du système vWii" @@ -8190,11 +8301,11 @@ msgstr "Charger le menu %1 du système vWii" msgid "Load..." msgstr "Charger..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Symboles chargés à partir de '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8205,7 +8316,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8228,7 +8339,7 @@ msgid "Locked" msgstr "Verrouillé" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Journal" @@ -8240,7 +8351,7 @@ msgstr "Configuration de la journalisation" msgid "Log In" msgstr "Connexion" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -8248,7 +8359,7 @@ msgstr "Log JIT Instruction Coverage" msgid "Log Out" msgstr "Déconnexion" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Noter le temps de rendu dans un fichier" @@ -8264,7 +8375,7 @@ msgstr "Sorties des journalisations" msgid "Login Failed" msgstr "Échec de la connection" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8283,16 +8394,16 @@ msgstr "Boucle" msgid "Lost connection to NetPlay server..." msgstr "Connexion au serveur NetPlay perdue !" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5 :" @@ -8300,7 +8411,7 @@ msgstr "MD5 :" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -8310,7 +8421,7 @@ msgstr "Fichiers MadCatz Gameshark" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Magie" @@ -8318,39 +8429,39 @@ msgstr "Magie" msgid "Main Stick" msgstr "Stick principal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" "Vérifiez que la valeur du niveau du héros est comprise entre 0 et 100 !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "Vérifiez que l'heure de dernier placement est valide !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "Vérifiez que l'heure de dernière réinitialisation est valide !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "Vérifiez que la valeur de l'argent est comprise entre 0 et 65 000 !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" "Vérifiez que la longueur du pseudo est comprise entre 0 et 15 caractères !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "Vérifiez que la valeur de temps de jeu est valide !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 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:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Concepteur" @@ -8372,12 +8483,12 @@ msgstr "" "

\n" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Gestion de NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Échantillonnage manuel de la texture" @@ -8389,7 +8500,7 @@ msgstr "Mappage" msgid "Mask ROM" msgstr "ROM masque" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Correspondance trouvée" @@ -8406,16 +8517,16 @@ msgstr "Taille maximum du tampon changée à %1" msgid "Maximum tilt angle." msgstr "Angle maximum d'inclinaison." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Moyen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Mémoire" @@ -8427,7 +8538,7 @@ msgstr "Point d'arrêt mémoire" msgid "Memory Card" msgstr "Carte mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Gestionnaire de cartes mémoires" @@ -8439,7 +8550,7 @@ msgstr "Dossier de la carte mémoire :" msgid "Memory Override" msgstr "Modification de la mémoire" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Options pour le point d'arrêt en mémoire" @@ -8459,7 +8570,7 @@ msgstr "" "MemoryCard : l'écriture a été appelée avec une mauvaise adresse de " "destination ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8471,29 +8582,33 @@ 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:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Micro" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Divers" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Paramètres divers" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8522,12 +8637,16 @@ msgstr "" "- Titre : {3}\n" "- Hash : {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modif." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " @@ -8538,24 +8657,25 @@ msgstr "" "effet.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "Modifier le slot" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "Modification de Skylander : %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Modules trouvés : %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Argent :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8567,16 +8687,16 @@ msgstr "Ombres monoscopiques" msgid "Monospaced Font" msgstr "Police mono-espacée." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Entrée des mouvements" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Simulation des mouvements" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Vibreur" @@ -8618,6 +8738,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8627,10 +8751,10 @@ msgstr "Multiplicateur" msgid "N&o to All" msgstr "Non à &tout" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Vérification de la NAND" @@ -8639,8 +8763,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:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8649,7 +8773,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8672,25 +8796,25 @@ msgstr "" "

Dans le doute, laissez la valeur à 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Nom" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Nom du nouveau tag :" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Nom du tag à retirer :" @@ -8699,7 +8823,7 @@ msgid "Name of your session shown in the server browser" msgstr "Le nom de votre session qui est affichée dans le navigateur de serveur" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8764,7 +8888,7 @@ msgstr "" msgid "Network" msgstr "Réseau" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Format d'enregistrement du réseau :" @@ -8794,7 +8918,7 @@ msgstr "Nouveau fichier" msgid "New File (%1)" msgstr "Nouveau fichier (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Nouvelle recherche" @@ -8802,7 +8926,7 @@ msgstr "Nouvelle recherche" msgid "New Tag..." msgstr "Nouveau tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Nouvelle identité générée." @@ -8810,7 +8934,7 @@ msgstr "Nouvelle identité générée." msgid "New instruction:" msgstr "Nouvelle instruction :" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Nouveau tag" @@ -8819,7 +8943,7 @@ msgstr "Nouveau tag" msgid "Next Game Profile" msgstr "Profil de jeu suivant" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Rechercher le suivant" @@ -8833,7 +8957,7 @@ msgid "Nickname is too long." msgstr "Le pseudo est trop long." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Pseudo :" @@ -8847,7 +8971,7 @@ msgstr "Non" msgid "No Adapter Detected" msgstr "Aucun adaptateur détecté" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "Aucun alignement" @@ -8861,7 +8985,7 @@ msgstr "Pas de sortie audio" msgid "No Compression" msgstr "Aucune compression" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Aucune correspondance trouvée" @@ -8869,16 +8993,16 @@ msgstr "Aucune correspondance trouvée" msgid "No Save Data" msgstr "Aucune donnée sauvegardée" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "Pas de donnée à modifier !" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Aucune description disponible" @@ -8894,15 +9018,15 @@ msgstr "Aucune extension sélectionnée" msgid "No file loaded / recorded." msgstr "Aucun fichier chargé / enregistré" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Aucun jeu en fonctionnement." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Aucun jeu en fonctionnement." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "Aucun mod de graphique sélectionné" @@ -8911,7 +9035,7 @@ msgstr "Aucun mod de graphique sélectionné" msgid "No input" msgstr "Aucune entrée" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Aucun souci n'a été détecté" @@ -8923,10 +9047,6 @@ msgstr "Aucun jeu correspondant n'a été trouvé" msgid "No paths found in the M3U file \"{0}\"" msgstr "Aucun chemin trouvé dans le fichier M3U \"{0}\"" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "Aucune fonction restante possible. Réinitialiser." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Aucun problème n'a été trouvé." @@ -8942,11 +9062,11 @@ msgstr "" "vérification, cela veut dire qu'il n'y aura probablement aucun problème qui " "affectera l'émulation." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 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:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Aucun enregistrement chargé." @@ -8955,7 +9075,7 @@ msgstr "Aucun enregistrement chargé." msgid "No save data found." msgstr "Aucune donnée de sauvegarde trouvée" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Pas de fichier undo.dtm trouvé, abandon de l'annulation de chargement d'état " @@ -8964,11 +9084,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Aucune" @@ -9035,7 +9155,7 @@ msgid "Null" msgstr "Null" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -9070,10 +9190,58 @@ msgstr "Stick du Nunchuk" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Objet %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Plage d'objets :" @@ -9087,7 +9255,7 @@ msgstr "Océanie" msgid "Off" msgstr "Arrêt" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Offset" @@ -9099,7 +9267,7 @@ msgstr "Marche" msgid "On Movement" msgstr "Si mouvement" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -9109,7 +9277,22 @@ msgstr "" "et les shaders vertex pour étendre des points et des lignes, utiliser le " "shader vertex. Peut affecter les performances.

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Documentation en ligne" @@ -9117,7 +9300,7 @@ msgstr "&Documentation en ligne" msgid "Only Show Collection" msgstr "Afficher uniquement la Collection" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9125,7 +9308,7 @@ msgstr "" "Uniquement ajouter les symboles avec le préfixe :\n" "(Vide pour tous les symboles) " -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9135,7 +9318,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Ouvrir" @@ -9144,11 +9327,11 @@ msgstr "Ouvrir" msgid "Open &Containing Folder" msgstr "Ouvrir l'emplacement du fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Ouvrir le dossier &utilisateur" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Ouvrir le dossier..." @@ -9169,7 +9352,7 @@ msgstr "Ouvrir un XML Riivolution..." msgid "Open Wii &Save Folder" msgstr "Ouvrir le dossier de &sauvegarde Wii" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Ouvrir le dossier de dump" @@ -9202,11 +9385,11 @@ msgid "Operators" msgstr "Opérateurs" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Options" @@ -9219,13 +9402,36 @@ msgstr "Orange" msgid "Orbital" msgstr "Orbite" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Autres" @@ -9238,7 +9444,7 @@ msgstr "Autre partition (%1)" msgid "Other State Hotkeys" msgstr "Autres raccourcis clavier" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Autres manipulations des états" @@ -9258,16 +9464,16 @@ msgstr "Rééchantillonnage de la sortie" msgid "Output Resampling:" msgstr "Rééchantillonnage de la sortie :" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Écrasé" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Jouer l'enregistrement..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9276,15 +9482,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: 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:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Niveau de compression en PNG :" @@ -9292,11 +9498,11 @@ msgstr "Niveau de compression en PNG :" msgid "PNG image file (*.png);; All Files (*)" msgstr "Fichier d'image PNG (*.png);; Tous le fichiers (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Taille PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Hôte" @@ -9309,11 +9515,11 @@ msgstr "Manette" msgid "Pads" msgstr "Manettes" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Paramètres" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Traiter comme hexadécimal" @@ -9364,11 +9570,15 @@ msgstr "Chemin :" msgid "Paths" msgstr "Dossiers" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pause à la fin du Film" @@ -9411,7 +9621,7 @@ msgstr "Vitesse maximale des mouvements de va-et-vient." msgid "Per-Pixel Lighting" msgstr "Eclairage par pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Effectuer une mise à jour en ligne" @@ -9419,33 +9629,33 @@ 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:65 +#: 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:75 +#: 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:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Statistiques de performances" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Physique" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Espace d'adresse physique" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "Pio" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Choisissez une police pour le débogage" @@ -9461,12 +9671,12 @@ msgstr "Baisser" msgid "Pitch Up" msgstr "Monter" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plateforme" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Démarrer" @@ -9478,7 +9688,7 @@ msgstr "Lecture / Enregistrement" msgid "Play Recording" msgstr "Jouer l'enregistrement..." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Jouer au plateau / Mettre en route le disque" @@ -9490,27 +9700,27 @@ msgstr "Options de lecture" msgid "Player" msgstr "Joueur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Joueur 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Joueur Un Capacité Une" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Joueur Un Capacité Deux" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Joueur Deux" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Joueur Deux Capacité Une" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Joueur Deux Capacité Deux" @@ -9519,7 +9729,8 @@ msgstr "Joueur Deux Capacité Deux" msgid "Players" msgstr "Joueurs" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Temps de jeu :" @@ -9533,7 +9744,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:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9541,17 +9752,21 @@ msgstr "" "mémoires standard." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Pointer" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "ROM sur Port %1 :" @@ -9560,7 +9775,7 @@ msgstr "ROM sur Port %1 :" msgid "Port:" msgstr "Port :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Slots de portail" @@ -9583,11 +9798,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Configuration du post-traitement des Shaders" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Précharger textures personnalisées" @@ -9595,11 +9810,11 @@ msgstr "Précharger textures personnalisées" 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:1314 +#: Source/Core/Core/Movie.cpp:1313 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:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Fin de film prématurée dans PlayWiimote. {0} > {1}" @@ -9624,7 +9839,7 @@ msgstr "Appuyer sur le bouton Sync" msgid "Pressure" msgstr "Pression" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9644,7 +9859,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Profil de jeu précédent" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Rechercher le précédent" @@ -9655,7 +9870,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitive %1" @@ -9667,7 +9882,7 @@ msgstr "Privée" msgid "Private and Public" msgstr "Privée et publique" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problème" @@ -9707,8 +9922,8 @@ msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Progression" @@ -9716,11 +9931,11 @@ msgstr "Progression" msgid "Public" msgstr "Publique" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Purger le cache de la liste de jeu" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Placez les ROM d'IPL dans User/GC/." @@ -9740,7 +9955,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 " @@ -9749,7 +9964,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Question" @@ -9770,19 +9985,19 @@ msgstr "R" msgid "R-Analog" msgstr "R Analog." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "PRÊT" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "Modules RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "Détection automatique du RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "EN EXÉCUTION" @@ -9795,11 +10010,11 @@ msgstr "Images GC/Wii en RVZ (*.rvz)" msgid "Range" msgstr "Etendue" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Fin de zone :" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Début de zone :" @@ -9811,7 +10026,11 @@ msgstr "Rang %1" msgid "Raw" msgstr "Raw (brut)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Rem&placer l'instruction" @@ -9823,14 +10042,14 @@ msgstr "Lire" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Lu et écrit" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Uniquement lu" @@ -9851,10 +10070,15 @@ msgstr "Balance Board physique" msgid "Real Wii Remote" msgstr "Wiimote physique" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9868,7 +10092,7 @@ msgstr "Enregistrer" msgid "Record Inputs" msgstr "Enregistrer les entrées" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Enregistrement" @@ -9910,7 +10134,7 @@ msgstr "" "

Dans le doute, sélectionnez Aucune." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "État de Redump.org :" @@ -9918,14 +10142,14 @@ msgstr "État de Redump.org :" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Rafraîchir" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Rafraîchir les valeurs actuelles" @@ -9933,13 +10157,13 @@ msgstr "Rafraîchir les valeurs actuelles" msgid "Refresh Game List" msgstr "Rafraîchir la liste des jeux" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" "Impossible de rafraîchir. Exécutez le jeu pendant un moment et essayez à " "nouveau." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Valeurs actuelles actualisées." @@ -9948,8 +10172,8 @@ msgstr "Valeurs actuelles actualisées." msgid "Refreshing..." msgstr "Actualisation..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Région" @@ -9978,7 +10202,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Retirer" @@ -9995,7 +10219,7 @@ msgstr "Retirer les données inutiles (irréversible) :" msgid "Remove Tag..." msgstr "Supprimer le tag..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Supprimer le tag" @@ -10009,8 +10233,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Renommer le symbole" @@ -10018,11 +10242,11 @@ msgstr "Renommer le symbole" msgid "Render Window" msgstr "Fenêtre de rendu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10040,23 +10264,22 @@ msgstr "Quelqu'un demande à rejoindre votre partie" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reset" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Tout réinitialiser" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Réinitialiser Ignorer le gestionnaire de panique" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Réinitialiser les résultats" @@ -10084,6 +10307,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Gestionnaire de Packs de Ressources" @@ -10100,7 +10327,7 @@ msgstr "Redémarrage requis" msgid "Restore Defaults" msgstr "Restaurer les valeurs par défaut" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Restaurer l'instruction" @@ -10117,7 +10344,7 @@ msgstr "Vitesse du retour" msgid "Revision" msgstr "Révision" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Révision : %1" @@ -10176,7 +10403,7 @@ msgstr "Enrouler vers la droite" msgid "Room ID" msgstr "ID Room" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Rotation" @@ -10199,26 +10426,52 @@ msgstr "" "utilisez la résolution interne native.

Dans le " "doute, décochez cette case." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibreur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Exécu&ter jusqu'ici" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Exécuter jusqu'à" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Exécuter jusqu'à (ignorer les points d'arrêts)" @@ -10234,19 +10487,19 @@ msgstr "Russie" msgid "SD Card" msgstr "Carte SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: 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:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Réglages de la carte SD" @@ -10254,7 +10507,7 @@ msgstr "Réglages de la carte SD" msgid "SD Root:" msgstr "Racine de la carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Dossier de synchronisation SD :" @@ -10267,7 +10520,7 @@ msgstr "Gamma cible d'un écran SDR" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1 :" @@ -10275,11 +10528,11 @@ msgstr "SHA-1 :" msgid "SHA1 Digest" msgstr "SHA1 Digest" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1 :" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "Contexte SSL" @@ -10289,11 +10542,11 @@ msgstr "Contexte SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Sau&vegarder le code" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Sau&vegarder l'état" @@ -10306,7 +10559,6 @@ msgstr "Sûr " #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10316,9 +10568,17 @@ msgstr "Sauver" msgid "Save All" msgstr "Tout enregistrer" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Exportation de la sauvegarde" @@ -10327,24 +10587,24 @@ msgid "Save FIFO log" msgstr "Enregistrer le journal FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Sauvegarder le fichier sous" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Sauvegarde du jeu" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Fichiers de sauvegarde de jeu (*.sav);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Importation de la sauvegarde" @@ -10356,13 +10616,13 @@ msgstr "Sauvegarder l'ancien état" msgid "Save Preset" msgstr "Enregistrer le préréglage" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 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/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Sauvegarder l'état" @@ -10406,23 +10666,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:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Sauvegarder l'état dans un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Sauvegarder l'état dans le slot le plus ancien" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Sauvegarder l'état dans l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Sauvegarder l'état dans le slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Sauvegarder la carte des symboles &sous..." @@ -10430,7 +10690,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Sauvegarder et Charger un état" @@ -10442,11 +10702,11 @@ msgstr "Enregistrer sous le préréglage..." msgid "Save as..." msgstr "Enregistrer sous..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Sauvegarder le fichier de sortie combinée sous" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10456,15 +10716,15 @@ msgstr "" "sauvegarde avant de les écraser.\n" "Écraser maintenant ?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 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:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Sauvegarder le fichier de carte" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Sauvegarder le fichier de signature" @@ -10472,7 +10732,7 @@ msgstr "Sauvegarder le fichier de signature" msgid "Save to Selected Slot" msgstr "Sauvegarder vers l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Sauvegarder dans le slot %1 - %2" @@ -10486,7 +10746,7 @@ msgstr "" "La réinitialisation des sauvegardes du jumelage des Wiimotes ne peut être " "fait que lorsqu'un jeu est en cours d'émulation." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Sauvegardes :" @@ -10500,26 +10760,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Copie à l'échelle de l'EFB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Recherche terminée." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Capt écran" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Rechercher" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Rechercher l'adresse" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Chercher l'objet actuel" @@ -10527,11 +10787,11 @@ msgstr "Chercher l'objet actuel" msgid "Search Subfolders" msgstr "Chercher dans les sous-dossiers" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Rechercher et Filtrer" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10539,7 +10799,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:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Rechercher une instruction" @@ -10547,11 +10807,11 @@ msgstr "Rechercher une instruction" msgid "Search games..." msgstr "Rechercher des jeux..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Rechercher une instruction" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Rechercher :" @@ -10572,7 +10832,7 @@ msgid "Section that contains most CPU and Hardware related settings." msgstr "" "Section contenant la plupart des paramètres liés au CPU et au matériel." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Options de sécurité" @@ -10580,28 +10840,36 @@ msgstr "Options de sécurité" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Sélectionner le dossier pour le dump :" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Sélectionner le dossier d'exportation" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Sélectionner le fichier de Figurine" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Sélectionner le BIOS de la GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Sélectionner la ROM GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Sélectionner le dossier des sauvegardes GBA" @@ -10621,15 +10889,15 @@ msgstr "Sélectionner le dossier des Packs de Ressources" msgid "Select Riivolution XML file" msgstr "Sélectionner le fichier XML Riivolution" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Sélectionner la collection Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Sélectionnez un fichier Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Sélectionner le slot %1 - %2" @@ -10637,7 +10905,7 @@ msgstr "Sélectionner le slot %1 - %2" msgid "Select State" msgstr "Sélectionner l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Sélectionner l'emplacement de l'état" @@ -10696,15 +10964,15 @@ msgstr "Sélectionner un dossier" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Sélectionner un fichier" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10712,11 +10980,11 @@ 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:504 +#: 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:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Sélectionner un fichier" @@ -10724,19 +10992,19 @@ msgstr "Sélectionner un fichier" msgid "Select a game" msgstr "Sélectionner un jeu" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Sélectionner un titre à installer dans la NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Sélectionner les cartes e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Sélectionner l'adresse du module RSO :" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Sélectionnez le fichier d'enregistrement à lire" @@ -10744,12 +11012,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:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Sélectionner le fichier des clés (dump OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Sélectionner le fichier à enregistrer" @@ -10765,7 +11033,7 @@ msgstr "Sélectionner le dossier où seront enregistrées les images converties" msgid "Selected Font" msgstr "Police sélectionnée" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Le profil de contrôleur sélectionné n'existe pas" @@ -10777,15 +11045,15 @@ msgstr "Le profil de contrôleur sélectionné n'existe pas" 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:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Pile d'appels du thread sélectionné" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Contexte du thread sélectionné" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10793,7 +11061,7 @@ msgstr "" "Sélectionne l'adaptateur matériel à utiliser.

%1 " "ne prend pas en charge cette fonctionnalité." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10801,6 +11069,25 @@ msgstr "" "Sélectionne la carte graphique à utiliser.

Dans le " "doute, sélectionnez la première." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10821,26 +11108,29 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." -msgstr "" -"Sélectionne le format d'écran utilisé pour le rendu.
Chaque jeu peut " -"avoir un format d'écran natif légèrement différent.

Auto : Utiliser " -"le format d'écran natif
Forcer 16/9è : Imite une TV analogique avec un " -"format d'écran 16/9è.
Forcer 4/3 : Imite une TV analogique standard en " -"4/3.
Étirer à la fenêtre : Adapter l'image à la taille de la fenêtre." -"
Personnalisé : pour les jeux utilisant des cheats de format d'écran " -"personnalisé.

Dans le doute, choisissez Auto.
The aspect " +"ratio of the image sent out by the original consoles varied depending on the " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10861,7 +11151,7 @@ msgstr "" msgid "Send" msgstr "Envoyer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Position de la Sensor Bar :" @@ -10889,16 +11179,12 @@ msgstr "Port du serveur" msgid "Server rejected traversal attempt" msgstr "Le serveur a rejeté la tentative traversal" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Définir &Valeur" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Définir &blr" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Définir PC" @@ -10914,23 +11200,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Définir l'adresse de &fin du symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Définir la taille du &symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Définir l'adresse de fin du symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Entrer la taille du symbole (%1) :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10940,11 +11226,11 @@ msgstr "" "pour les jeux.\n" "Peut ne pas fonctionner pour tous les jeux." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Définit la langue du système de la Wii." -#: 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." @@ -10952,7 +11238,7 @@ 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/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10967,20 +11253,20 @@ msgstr "" msgid "Settings" msgstr "Réglages" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory : Impossible de créer le fichier setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Importance" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilation de Shader" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Secouement" @@ -10997,16 +11283,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Manette Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Afficher le % de vitesse" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Afficher le &journal" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Afficher la barre d'&outils" @@ -11014,53 +11300,53 @@ 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:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Tout afficher" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Afficher Australie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Afficher le jeu en cours sur Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Afficher d'abord les codes désactivés" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Afficher les ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "Afficher d'abord les codes activés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Afficher le nombre de FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Afficher le compteur d'images" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: 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:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Afficher France" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Afficher GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Afficher Allemagne" @@ -11072,23 +11358,23 @@ msgstr "Afficher le Mode golf en surimpression" msgid "Show Infinity Base" msgstr "Afficher la Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Afficher les entrées du contrôleur" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Afficher Italie" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "Afficher JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Afficher Corée" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Afficher le compteur de lags" @@ -11096,19 +11382,19 @@ msgstr "Afficher le compteur de lags" msgid "Show Language:" msgstr "Afficher en :" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Afficher la config. de journalisation" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Afficher les messages NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Afficher le ping du NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Afficher Pays-bas" @@ -11116,32 +11402,36 @@ msgstr "Afficher Pays-bas" msgid "Show On-Screen Display Messages" msgstr "Afficher les messages informatifs" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Afficher PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Afficher les graphiques de performance" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Afficher les plateformes" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Afficher les régions" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Afficher le compteur de réenregistrements" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Afficher Russie" @@ -11149,72 +11439,72 @@ msgstr "Afficher Russie" msgid "Show Skylanders Portal" msgstr "Afficher le Portail Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Afficher Espagne" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: 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:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Afficher les statistiques" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Afficher l'heure du système" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Afficher Taïwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Afficher USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Afficher les inconnus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: 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:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Afficher les VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Afficher les WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Afficher Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Afficher Monde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Afficher dans la &mémoire" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Afficher dans le code" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Afficher dans la mémoire" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Afficher dans le &code" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Afficher dans la mémoire" @@ -11222,11 +11512,11 @@ msgstr "Afficher dans la mémoire" msgid "Show in server browser" msgstr "Afficher dans le navigateur de serveurs" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "Afficher la &mémoire cible" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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 +11526,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11257,7 +11547,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11267,7 +11557,7 @@ msgstr "" "une déviation standard.

Dans le doute, décochez " "cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11277,7 +11567,7 @@ msgstr "" "standard.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11287,7 +11577,7 @@ msgstr "" "fluidité visuelle.

Dans le doute, décochez cette " "case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11306,7 +11596,13 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11318,34 +11614,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Côte-à-côte" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Garder à l'horizontale" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Utiliser à l'horizontale" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wiimote à l'horizontale" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Base de données de Signatures" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Signé 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Signé 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Signé 8" @@ -11354,7 +11650,7 @@ msgid "Signed Integer" msgstr "Entier signé" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinois simplifié" @@ -11371,7 +11667,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." @@ -11379,11 +11675,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Sauter" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Saute le dessin" @@ -11432,24 +11728,24 @@ msgstr "" "dolphin_emphasis>" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Dossier de la collection Skylander :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" "Skylander n'a pas été trouvé dans cette collection. Créer un nouveau " @@ -11459,12 +11755,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "Gestionnaire de Skylanders" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" -"Le dossier Skylander n'a pas été trouvé pour cet utilisateur. Créer un " -"nouveau dossier ?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11474,7 +11764,7 @@ msgstr "Slider Bar" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Slot A :" @@ -11482,7 +11772,7 @@ msgstr "Slot A :" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Slot B :" @@ -11491,7 +11781,7 @@ msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" "Décale la position du stick analogique vers l'axe octogonal le plus proche." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Table des sockets" @@ -11519,12 +11809,12 @@ msgstr "" "Certaines valeurs que vous avez entrées ne sont pas valides.\n" "Veuillez vérifier les valeurs en surbrillance." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Trier par ordre alphabétique" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Son :" @@ -11538,27 +11828,27 @@ msgstr "Espagne" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espagnol" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Volume du haut-parleur" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume du haut-parleur :" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Spécialisé (par défaut)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Spécifique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11590,15 +11880,15 @@ msgstr "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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Fin de pile" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Début de pile" @@ -11611,25 +11901,28 @@ msgstr "Contrôleur standard" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Démarrer &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Démarrer une nouvelle recherche de cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Démarrer l'enregistrement de l'entrée" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Commencer l'enregistrement" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Démarrer en Plein écran" @@ -11645,10 +11938,10 @@ msgstr "Démarrer avec les patchs Riivolution..." msgid "Started game" msgstr "Jeu démarré" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "État" @@ -11658,7 +11951,7 @@ msgstr "Volant" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Pas à pas" @@ -11670,13 +11963,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Step Over" @@ -11692,7 +11985,7 @@ msgstr "Temps écoulé pour la sortie !" msgid "Step over in progress..." msgstr "Saut en cours..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Pas à pas réussi !" @@ -11701,7 +11994,7 @@ msgstr "Pas à pas réussi !" msgid "Stepping" msgstr "Pas à pas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stéréo" @@ -11731,18 +12024,14 @@ msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Arrêter" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Arrêter de jouer/enregistrer l'entrée" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Arrêter l'enregistrement" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Jeu arrêté" @@ -11785,7 +12074,7 @@ msgstr "" "RAM (et Texture)

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Étirer à la fenêtre" @@ -11820,8 +12109,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Succès !" @@ -11848,7 +12137,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:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Certificats extraits avec succès depuis la NAND" @@ -11860,12 +12149,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:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 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:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Ce titre a été installé avec succès dans la NAND." @@ -11876,11 +12165,11 @@ msgstr "Ce titre a été supprimé avec succès de la NAND." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Aide" @@ -11888,17 +12177,17 @@ msgstr "Aide" msgid "Supported file formats" msgstr "Formats de fichiers pris en charge" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Suspendu" @@ -11908,12 +12197,12 @@ msgstr "Inverser les yeux" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Swap Forces" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "Swapper" @@ -11927,7 +12216,7 @@ msgstr "" "cette case." #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Balancement" @@ -11941,39 +12230,21 @@ msgid "Switch to B" msgstr "Basculer vers B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Adresse de fin du symbole (%1) :" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"Carte des symboles introuvable.\n" -"\n" -"S'il n'en existe pas, vous pouvez en générer une depuis la barre de Menu :\n" -"Symboles -> Générer les Symboles depuis ->\n" -"\tAdresse | Base de donnée de Signatures | Modules RSO" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Nom du symbole :" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symboles" @@ -12001,7 +12272,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12022,24 +12293,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:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Langue du système :" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Outils TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Tags" @@ -12049,7 +12320,7 @@ msgstr "Tags" msgid "Taiko Drum" msgstr "Percussion Taiko" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Tail" @@ -12057,15 +12328,15 @@ msgstr "Tail" msgid "Taiwan" msgstr "Taïwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Capture d'écran" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "La zone d'adresse cible n'est pas valide." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12075,7 +12346,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Tech" @@ -12083,6 +12354,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -12092,7 +12369,7 @@ msgstr "Cache de texture" msgid "Texture Cache Accuracy" msgstr "Précision du cache de texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Copie des textures" @@ -12104,7 +12381,7 @@ msgstr "Filtrage de texture" msgid "Texture Filtering:" msgstr "Filtrage de texture :" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Infos de format de texture" @@ -12136,7 +12413,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "Le table de hash H3 pour la partition {0} n'est pas correcte." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "Le fichier IPL n'est pas connu comme un dump correct. (CRC32 : {0:x})" @@ -12150,7 +12427,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12158,7 +12435,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "La NAND a été réparée." @@ -12172,12 +12449,11 @@ msgstr "" "vers la carte SD, le menu système de la Wii ne démarrera plus et refusera " "également de le recopier ou le redéplacer vers la NAND." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -"La quantité d'argent que ce Skylander doit avoir. Compris entre 0 et 65000." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -12221,6 +12497,13 @@ msgstr "" "Les clés de déchiffrage doivent être ajoutées au fichier de sauvegarde de la " "NAND." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12244,7 +12527,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 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é." @@ -12266,17 +12549,17 @@ msgstr "La console Wii émulée est déjà à jour." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "L'adresse MAC entrée n'est pas valide." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Le PID entré n'est pas valide." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Le VID entré n'est pas valide." @@ -12284,7 +12567,7 @@ msgstr "Le VID entré n'est pas valide." msgid "The expression contains a syntax error." msgstr "L'expression contient une erreur de syntaxe." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12304,7 +12587,7 @@ msgstr "" "Le fichier %1 existe déjà.\n" "Voulez-vous le remplacer ?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12324,7 +12607,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "Le fichier {0} était déjà ouvert, son entête n'a pas pu être écrite." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12338,7 +12621,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:573 +#: 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 " @@ -12407,13 +12690,11 @@ msgstr "Les hashs ne correspondent pas !" msgid "The hashes match!" msgstr "Les hashs correspondent !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"Le niveau du héros de ce Skylander. Uniquement vu dans Skylanders: Spyro's " -"Adventure. Compris entre 0 et 100." #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12427,11 +12708,11 @@ msgstr "" msgid "The install partition is missing." msgstr "La partition d'installation est manquante." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "La dernière fois que la figurine a été placée sur le portail" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12451,9 +12732,9 @@ msgstr "" "correctement synchronisé, veuillez changer l'appareil sélectionné vers Carte " "mémoire ou Dossier GCI." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "Le pseudo pour ce Skylander. Limité à 15 caractères." +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12486,14 +12767,14 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Le code AR décrypté ne contient aucune ligne." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." 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:596 +#: 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 "" @@ -12534,7 +12815,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12551,12 +12832,12 @@ msgstr "La carte mémoire cible contient déjà un fichier nommé \"%1\"." msgid "The ticket is not correctly signed." msgstr "Le ticket n'est pas correctement signé." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" "Le temps total où cette figurine a été utilisée dans un jeu, en secondes." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" "Le code jouet pour cette figurine. Disponible uniquement pour les vraies " @@ -12566,15 +12847,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "Le type de partition ne peut être lu." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "Ce type de Skylander n'a aucune donnée qui peut être modifiée !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "Ce type de Skylander est inconnu !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "Ce type de Skylander est inconnu, ou ne peut pas encore être modifié !" @@ -12600,7 +12881,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12628,7 +12909,7 @@ msgstr "La partition n°{0} n'est pas correctement alignée." 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." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12638,7 +12919,12 @@ msgstr "" "\n" "Souhaitez-vous sauvegarder avant de fermer ?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Il n'y a rien à annuler !" @@ -12681,19 +12967,19 @@ msgstr "" "utilisé sur les consoles coréennes. Cela va vraisemblablement mener au " "message ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "Ce type de Skylander ne peut pas encore être modifié !" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Ce périphérique USB est déjà sur liste blanche." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Ce WAD n'est pas bootable" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Ce WAD n'est pas valide." @@ -12845,6 +13131,10 @@ msgstr "" msgid "This is a good dump." msgstr "Ceci est un dump correct." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Cette session requiert un mot de passe :" @@ -12861,13 +13151,13 @@ msgstr "" "\n" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." 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:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Ce titre ne peut pas être démarré." @@ -12880,7 +13170,7 @@ msgstr "Ce titre est réglé pour utiliser un IOS qui n'est pas valide." msgid "This title is set to use an invalid common key." msgstr "Ce titre est réglé pour utiliser une clé partagée non valide." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12892,7 +13182,7 @@ msgstr "" "\n" "DSPHLE : ucode inconnu (CRC = {0:08x}) - forçage de AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12919,6 +13209,13 @@ msgstr "" "Cette valeur est multipliée par la profondeur définie dans la configuration " "des graphiques." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12940,11 +13237,11 @@ msgstr "" "d'EFB. Veuillez vous assurer que tout le monde utilise le même moteur " "graphique." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Contexte du flux" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Flux" @@ -12952,12 +13249,12 @@ msgstr "Flux" msgid "Threshold" msgstr "Seuil" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "Tio" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Tilt" @@ -12973,10 +13270,10 @@ msgstr "" msgid "Timed Out" msgstr "Délai dépassé" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titre" @@ -12990,7 +13287,7 @@ msgstr "À" msgid "To:" msgstr "jusqu'à :" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Activer le &plein écran" @@ -13015,7 +13312,7 @@ msgid "Toggle Aspect Ratio" msgstr "Activer le ratio hauteur/largeur" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Activer Point d'arrêt" @@ -13067,15 +13364,19 @@ msgstr "Activer les copies XFB" msgid "Toggle XFB Immediate Mode" msgstr "Activer le mode XFB immédiat" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Échec du jetonnage." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Barre d'outils" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Haut" @@ -13083,9 +13384,8 @@ msgstr "Haut" msgid "Top-and-Bottom" msgstr "Dessus-dessous" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Nombre de concordances" @@ -13122,28 +13422,28 @@ msgstr "Distance totale parcourue" msgid "Touch" msgstr "Toucher" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "Code du jouet :" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinois traditionnel" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "Trap" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "Trap Master" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -13182,26 +13482,26 @@ msgid "Triggers" msgstr "Déclencheurs" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "Trophée" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Type" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Alignement basé sur Type" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Adresse de mémoire GameCube/Wii typique" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "INCONNU" @@ -13213,7 +13513,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "Émulation d'un appareil USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "Émulation de l'USB" @@ -13225,13 +13525,13 @@ msgstr "Émulation d'appareils USB" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "Erreur dans la liste blanche des USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -13243,7 +13543,7 @@ msgstr "" "

Dans le doute, sélectionnez ce mode." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13256,7 +13556,7 @@ msgstr "" "saccades avec les Ubershaders hybrides et que vous avez un GPU puissant." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -13271,7 +13571,7 @@ msgstr "" "impact minimal sur les performances, mais cela dépend du comportement du " "driver de la carte graphique." -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Impossible de détecter automatiquement le module RSO" @@ -13283,11 +13583,11 @@ msgstr "Impossible de contacter le serveur de mises à jour." msgid "Unable to create updater copy." msgstr "Impossible de créer une copie de l'Updater." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "Impossible de modifier Skylander !" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Impossible d'ouvrir le fichier." @@ -13315,7 +13615,7 @@ msgstr "" "\n" "Voulez-vous ignorer cette ligne et continuer le traitement ?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Impossible de lire le fichier." @@ -13338,15 +13638,15 @@ msgstr "Images GC/Wii non compressées (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Mort-vivant" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "&Annuler le lancement d'état" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Annuler la sauvegarde de l'état" @@ -13366,11 +13666,11 @@ 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:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "États-Unis" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13381,12 +13681,13 @@ msgstr "États-Unis" msgid "Unknown" msgstr "Inconnu" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Inconnu (Id :%1 Var :%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Commande DVD inconnue {0:08x} - erreur fatale" @@ -13414,11 +13715,11 @@ msgstr "" "Message SYNC_SAVE_DATA inconnu avec l'ID : {0} reçu du joueur : {1}. Sortie " "du joueur !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "Type de Skylander inconnu !" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Espace d'adresse inconnu" @@ -13426,7 +13727,7 @@ msgstr "Espace d'adresse inconnu" msgid "Unknown author" msgstr "Auteur inconnu" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Type de données inconnu" @@ -13434,7 +13735,7 @@ msgstr "Type de données inconnu" msgid "Unknown disc" msgstr "Disque inconnu" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Une erreur inconnue est survenue." @@ -13455,16 +13756,18 @@ msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Message inconnu avec l'ID {0} reçu du joueur {1}. Exclusion du joueur !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Inconnu(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Inconnu(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Illimitée" @@ -13497,22 +13800,22 @@ msgid "Unpacking" msgstr "Décompression" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "Changements non sauvegardés" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Non signé 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Non signé 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Non signé 8" @@ -13576,23 +13879,23 @@ msgstr "" "Mise à jour du titre %1...\n" "Cela peut prendre un certain temps." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Garder à la verticale" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Utiliser à la verticale" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wiimote debout" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Paramètres de l'envoi des données statistiques" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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é" @@ -13605,15 +13908,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Utiliser un codec sans perte (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "Utiliser le pointage contrôlé par la souris" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Utiliser le mode PAL60 (EuRGB60)" @@ -13621,7 +13924,7 @@ msgstr "Utiliser le mode PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Utiliser les gestionnaires de panique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13652,71 +13955,19 @@ msgstr "" "Utiliser un buffer de simple profondeur pour les deux yeux. Requis pour " "quelques jeux." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" "Utiliser la configuration de mappeur de mémoire au moment de la recherche." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Utiliser les adresses physiques" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Utiliser les adresses virtuelles lorsque c'est possible" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" -"Utilisé pour trouver les fonctions en se basant sur le moment où elles " -"devraient être exécutées.\n" -"Semblable au Cheat Engine Ultimap.\n" -"Une carte des symboles doit être chargée avant utilisation.\n" -"Les listes d'inclusion/exclusion persisteront après un arrêt ou redémarrage " -"de l'émulation.\n" -"Ces listes ne persisteront pas lorsque Dolphin sera quitté.\n" -"\n" -"'Démarrer l'enregistrement' : garde la trace de ce que les fonctions " -"exécutent.\n" -"'Arrêter l'enregistrement' : efface l'enregistrement en cours sans effectuer " -"de changement dans les listes.\n" -"'Le code n'a pas été exécuté' : cliquez pendant l'enregistrement, cela " -"ajoutera les fonctions enregistrées à la liste d'exclusion, puis " -"réinitialisera la liste d'enregistrement.\n" -"'Le code a été exécuté' : cliquez pendant l'enregistrement, ajoutera la " -"fonction enregistrée à la liste d'inclusion, puis réinitialisera la liste " -"d'enregistrement.\n" -"\n" -"Lorsque vous aurez utilisé une fois l'inclusion et l'exclusion, la liste " -"d'exclusion sera soustraite à celle de l'inclusion et les inclusions " -"restantes seront affichées.\n" -"Vous pouvez continuer à utiliser 'Le code n'a pas été exécuté'/'Le code a " -"été exécuté' pour affiner les résultats.\n" -"\n" -"Sauvegarder permettra d'enregistrer la liste en cours dans le dossier Log de " -"Dolphin (Fichier -> Ouvrir le dossier utilisateur)" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Configuration personnalisée" @@ -13757,7 +14008,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13768,7 +14019,7 @@ msgstr "" "créée.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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 doute, décochez cette case." "" -#: Source/Core/DolphinQt/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Utilisation de Qt %1" @@ -13786,31 +14037,31 @@ msgstr "Utilisation de Qt %1" msgid "Using TTL %1 for probe packet" msgstr "Utilisation du TTL %1 pour sonder le paquet" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Utilisé habituellement pour les objets lumineux" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Utilisé habituellement pour les matrices normales" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Utilisé habituellement pour la matrices de position" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Utilisé habituellement pour les matrices de coordonnées de textures" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utilitaires" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Synchro verticale" @@ -13818,11 +14069,11 @@ msgstr "Synchro verticale" msgid "VBI Skip" msgstr "Ignorer VBI" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valeur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Valeur traquée à l'instruction en cours." @@ -13830,17 +14081,17 @@ msgstr "Valeur traquée à l'instruction en cours." msgid "Value:" msgstr "Valeur :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "La variante entrée est invalide !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Variante :" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Véhicule" @@ -13856,16 +14107,16 @@ msgstr "Niveau de détail" msgid "Verify" msgstr "Vérifier" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Vérifier l'intégrité" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Vérifier les certificats" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Vérification..." @@ -13879,7 +14130,7 @@ msgid "Vertex Rounding" msgstr "Arrondir les vertex" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Champ de vision vertical" @@ -13893,12 +14144,12 @@ msgid "Video" msgstr "Affichage" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Voir &code" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Voir &mémoire" @@ -13906,14 +14157,14 @@ msgstr "Voir &mémoire" msgid "Virtual Notches" msgstr "Coins virtuels" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Espace d'adresse virtuelle" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" @@ -13933,40 +14184,40 @@ msgstr "Augmenter" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "Fichiers WAD (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "Echec de l'installation du WAD : Impossible de créer les fichiers de journal " "du Wii Shop." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "Echec de l'installation du WAD : Impossible de finaliser l'importation du " "titre." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" "Echec de l'installation du WAD : Impossible d'importer le contenu {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "Echec de l'installation du WAD : Impossible d'initialiser l'importation de " "titre (erreur {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "Echec de l'installation du WAD : Le fichier sélectionné n'est pas un WAD " "valide." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "EN ATTENTE" @@ -14017,12 +14268,12 @@ msgstr "Dossier WFS :" msgid "WIA GC/Wii images (*.wia)" msgstr "Images GC/Wii en WIA (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "En attente de la première recherche..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -14040,7 +14291,7 @@ msgstr "" "compiler peut ralentir le jeu.

Dans le cas " "contraire et dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -14072,7 +14323,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Avertissement" @@ -14179,7 +14430,7 @@ msgstr "Surveiller" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Eau" @@ -14196,7 +14447,7 @@ msgstr "Occidental (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -14209,7 +14460,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -14222,7 +14473,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: 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" @@ -14246,7 +14497,7 @@ msgstr "Menu Wii" msgid "Wii NAND Root:" msgstr "Racine de la NAND (Wii) :" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wiimote" @@ -14254,7 +14505,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -14272,7 +14523,7 @@ msgstr "Boutons de la Wiimote" msgid "Wii Remote Gyroscope" msgstr "Gyroscope de la Wiimote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Paramètres de la Wiimote" @@ -14292,7 +14543,7 @@ msgstr "Entrée TAS %1 pour Wii - Wiimote" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Entrée TAS %1 pour Wii - Wiimote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii et Wiimote" @@ -14300,11 +14551,11 @@ msgstr "Wii et Wiimote" msgid "Wii data is not public yet" msgstr "Données Wii pas encore publiques" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fichiers de sauvegarde de Wii (*.bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "Fichier MEGA de signature de WiiTools" @@ -14316,11 +14567,23 @@ 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 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Taille de la fenêtre" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Casse" @@ -14334,10 +14597,14 @@ msgstr "Monde" msgid "Write" msgstr "Écrire" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Uniquement écrit" @@ -14379,6 +14646,14 @@ msgstr "Mauvaise région" msgid "Wrong revision" msgstr "Mauvaise révision" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14387,11 +14662,11 @@ msgstr "Mauvaise révision" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Registre XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "Adresse de destination de XLink Kai BBA" @@ -14426,7 +14701,7 @@ msgstr "Oui" msgid "Yes to &All" msgstr "Oui à to&ut" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14435,7 +14710,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:272 +#: 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 " @@ -14581,7 +14856,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:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14601,15 +14876,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Code Zero 3 non pris en charge" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Code Zero inconnu pour Dolphin : {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] et [%3, %4]" @@ -14617,11 +14896,11 @@ msgstr "[%1, %2] et [%3, %4]" msgid "^ Xor" msgstr "^ Xor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "aligné" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "toute valeur" @@ -14640,21 +14919,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "Impossible de charger d3d12.dll" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "par défaut" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "déconnecté" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Cartes e-Reader (*.raw);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14662,31 +14941,35 @@ msgstr "errno" msgid "fake-completion" msgstr "Faux achèvement" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "est égale à" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "est supérieure à" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "est supérieure ou égale à" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "est inférieure à" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "est inférieure ou égale à" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "n'est pas égale à" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "la dernière valeur" @@ -14696,7 +14979,7 @@ msgstr "la dernière valeur" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14708,13 +14991,13 @@ msgstr "" msgid "none" msgstr "Aucun" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: 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:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "à" @@ -14731,16 +15014,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "cette valeur :" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "Tablette de jeu uDraw" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "non aligné" @@ -14755,11 +15042,11 @@ msgstr "non aligné" msgid "{0} (Masterpiece)" msgstr "{0} (Chefs-d'œuvre)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "IPL {0} trouvé dans le dossier {1}. Le disque peut ne pas être reconnu" @@ -14796,7 +15083,7 @@ msgstr "| Or" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14807,8 +15094,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/hr.po b/Languages/po/hr.po index 9b8e302df183..1c90ba383e0b 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -59,8 +59,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -79,19 +79,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -112,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -151,6 +152,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -174,13 +180,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -196,12 +202,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +224,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -226,26 +232,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -283,20 +289,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -306,23 +312,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -330,12 +336,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -343,27 +349,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -371,15 +377,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -387,19 +393,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -407,7 +418,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -424,9 +435,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -434,23 +445,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulacija" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -458,55 +469,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Datoteka" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Upravljač sličica po sekundi" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Postavke Grafike" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Pomoć" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Postavke prečica na tipkovnici" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -514,19 +523,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -534,15 +543,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Učitaj stanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -552,23 +565,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -577,23 +590,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Pokreni igru" @@ -601,15 +614,15 @@ msgstr "&Pokreni igru" msgid "&Properties" msgstr "&Svojstva" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registri" @@ -617,41 +630,45 @@ msgstr "&Registri" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Resetiraj" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Zaustavi igru" @@ -659,15 +676,19 @@ msgstr "&Zaustavi igru" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Alati" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -677,17 +698,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -699,11 +720,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -719,7 +740,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -727,7 +748,7 @@ msgstr "" msgid "(off)" msgstr "(isključeno)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -747,15 +768,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -766,12 +787,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -783,7 +804,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -791,11 +812,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -807,17 +828,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -829,11 +850,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -845,7 +866,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -857,25 +878,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -889,11 +910,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -901,7 +922,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -917,7 +938,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -929,22 +950,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -952,11 +973,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -968,13 +989,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -990,7 +1011,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1002,11 +1023,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1036,12 +1057,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1051,7 +1072,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1061,11 +1082,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1081,6 +1102,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1102,7 +1127,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1111,8 +1136,8 @@ msgstr "" msgid "AR Codes" msgstr "AR Kodovi" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1126,7 +1151,7 @@ msgid "About Dolphin" msgstr "O Dolphin-u" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1145,7 +1170,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1231,19 +1256,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1251,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1261,7 +1286,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Dodaj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1290,51 +1315,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Dodaj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1395,12 +1417,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Napredno" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1415,15 +1437,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1433,16 +1455,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1456,11 +1478,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1468,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1477,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1486,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1499,7 +1521,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1511,15 +1533,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1547,7 +1569,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1585,15 +1607,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1611,7 +1633,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1643,12 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Omjer Slike:" @@ -1656,7 +1682,7 @@ msgstr "Omjer Slike:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1664,7 +1690,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1681,7 +1707,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1689,11 +1715,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 "" @@ -1705,12 +1731,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatski" @@ -1718,11 +1744,7 @@ msgstr "Automatski" msgid "Auto (Multiple of 640x528)" msgstr "Automatski (Višestruko od 640*528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1734,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1742,32 +1764,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1775,38 +1797,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP registar" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Upravljač:" @@ -1822,13 +1848,13 @@ msgstr "Prati unos podataka i u pozadini" msgid "Backward" msgstr "Natrag" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1836,20 +1862,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Transparent" @@ -1869,15 +1895,15 @@ msgstr "Tremolo" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Osnovno" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Osnovne postavke" @@ -1885,15 +1911,15 @@ msgstr "Osnovne postavke" msgid "Bass" msgstr "Bas" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1917,31 +1943,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1950,7 +1978,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1977,32 +2005,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Dno" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2040,11 +2179,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2054,11 +2193,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2090,7 +2229,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2106,7 +2245,7 @@ msgstr "" msgid "Buttons" msgstr "Tipke" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2116,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "C Gljiva" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2132,7 +2271,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2140,14 +2279,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2159,11 +2298,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2171,19 +2310,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2192,64 +2331,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2257,19 +2408,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2287,7 +2440,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2295,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Promjeni &Disk..." @@ -2303,7 +2456,7 @@ msgstr "Promjeni &Disk..." msgid "Change Disc" msgstr "Promjeni disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2311,7 +2464,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2337,7 +2490,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2349,15 +2502,15 @@ msgstr "Čavrljanje" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Tražilica" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2365,7 +2518,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2383,27 +2536,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Odaberite datoteku za otvaranje" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2430,15 +2583,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Očisti" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2446,7 +2603,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2455,36 +2612,20 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2511,7 +2652,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2538,7 +2683,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2546,9 +2691,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2561,10 +2706,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2637,7 +2788,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Konfiguracja" @@ -2670,13 +2821,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2684,7 +2835,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Potvrdite zaustavljanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2695,15 +2846,15 @@ msgstr "" msgid "Connect" msgstr "Spoji" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Priključite USB tipkovnicu" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2723,7 +2874,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2764,7 +2915,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2788,7 +2939,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2851,8 +3002,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2860,9 +3011,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2870,9 +3021,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2892,8 +3043,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2929,15 +3080,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2945,19 +3096,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2975,6 +3126,11 @@ msgstr "" msgid "Core" msgstr "Jezgra" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2984,7 +3140,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3057,7 +3213,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3094,13 +3250,13 @@ msgstr "" msgid "Country:" msgstr "Država:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3109,15 +3265,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3126,17 +3278,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3144,11 +3287,11 @@ msgstr "" msgid "Critical" msgstr "Kritično" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Podrezati" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3160,26 +3303,26 @@ msgstr "" msgid "Crossfade" msgstr "Prijelaz" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3187,27 +3330,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3219,13 +3366,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3250,7 +3397,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 "" @@ -3258,15 +3405,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 "" @@ -3288,7 +3435,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3304,7 +3451,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3337,8 +3484,8 @@ msgstr "Mrtva Zona" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Traženje/ispravljanje pogrešaka" @@ -3347,7 +3494,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 "" @@ -3394,7 +3541,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 "" @@ -3406,11 +3553,11 @@ msgstr "" msgid "Default ISO:" msgstr "Uobičajeni ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3418,7 +3565,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3458,26 +3605,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3485,7 +3659,7 @@ msgstr "" msgid "Detect" msgstr "Otkrij" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3493,7 +3667,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3502,7 +3676,7 @@ msgid "Device" msgstr "Uređaj" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3511,11 +3685,11 @@ msgid "Device Settings" msgstr "Postavke Uređaja" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3523,11 +3697,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3539,12 +3709,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3556,7 +3726,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3564,11 +3734,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3576,11 +3746,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemogući maglu" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3595,7 +3765,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3941,15 +4107,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nizozemski" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "I&zlaz" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3975,7 +4141,7 @@ msgstr "Rana Ažuriranja Memorije" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3988,7 +4154,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4004,15 +4170,15 @@ msgstr "Efekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4022,7 +4188,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4030,11 +4196,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emu Thread je već pokrenut" @@ -4042,11 +4208,11 @@ msgstr "Emu Thread je već pokrenut" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4060,7 +4226,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4080,28 +4246,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4113,11 +4267,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Omogućite kodove za varanje" @@ -4137,7 +4291,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Omogućite korištenje dvije jezgre" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Omogućite korištenje dvije jezgre (ubrzanje)" @@ -4157,7 +4311,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4183,6 +4337,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4196,7 +4354,7 @@ msgstr "Omogući MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Omogućite Progresivno Skeniranje" @@ -4209,11 +4367,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Omogućite Čuvar Zaslona" @@ -4225,15 +4383,15 @@ msgstr "Omogući Zvučne Podatke" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Omogući Žičani Okvir" @@ -4303,7 +4461,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4334,7 +4492,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4342,7 +4500,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4359,7 +4517,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 "" @@ -4387,7 +4545,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4395,7 +4553,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4403,7 +4561,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4428,7 +4586,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engleski" @@ -4437,7 +4595,7 @@ msgstr "Engleski" msgid "Enhancements" msgstr "Poboljšanja" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4459,11 +4617,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4472,8 +4636,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4484,45 +4648,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4532,16 +4702,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Pogreška" @@ -4558,9 +4728,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4573,7 +4743,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4639,13 +4809,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4664,40 +4834,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforija" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4705,7 +4847,7 @@ msgstr "" msgid "Exit" msgstr "Izlaz" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4713,7 +4855,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4725,15 +4867,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4741,11 +4883,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "" @@ -4760,7 +4902,7 @@ msgstr "" msgid "Export Recording" msgstr "Izvedi Snimku Videa" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Izvedi Snimku Videa..." @@ -4788,14 +4930,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Produžetak" @@ -4816,7 +4958,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4849,12 +4991,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO Pokretač Datoteka" @@ -4872,7 +5014,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4880,12 +5022,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4913,19 +5055,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4945,15 +5088,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Neuspjeh u preuzimanju kodova." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4966,7 +5109,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4989,33 +5132,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5026,7 +5165,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5035,18 +5174,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5058,19 +5197,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5080,13 +5221,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5094,6 +5243,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5120,28 +5273,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5161,7 +5318,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5183,31 +5340,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5241,31 +5401,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5316,7 +5476,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5324,11 +5484,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5341,7 +5501,7 @@ msgstr "Brzo" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5352,11 +5512,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5364,9 +5524,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5378,20 +5538,20 @@ msgstr "" msgid "File Info" msgstr "Informacije o Datoteci" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5399,7 +5559,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Datoteka ne sadržava ni jedan kod." @@ -5433,15 +5593,15 @@ msgstr "Datotečni sustav" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5453,7 +5613,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5469,31 +5629,32 @@ msgstr "Popravi Checksum" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5503,13 +5664,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5517,7 +5678,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" @@ -5549,11 +5710,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5590,17 +5751,17 @@ msgstr "Naprijed" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5621,7 +5782,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5629,7 +5790,7 @@ msgstr "" msgid "Frame Range" msgstr "Domet Slike" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5653,7 +5814,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5684,7 +5845,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francuski" @@ -5708,7 +5869,7 @@ msgstr "Iz" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "CijeliZaslon" @@ -5740,7 +5901,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5856,26 +6017,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5903,8 +6064,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5964,11 +6125,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5976,11 +6137,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5993,11 +6154,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6025,7 +6186,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Kodovi" @@ -6035,35 +6196,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Opće" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Njemački" @@ -6075,18 +6236,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6099,8 +6260,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6139,7 +6300,7 @@ msgstr "Zelena Lijevo" msgid "Green Right" msgstr "Zelena Desno" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6148,7 +6309,7 @@ msgstr "" msgid "Guitar" msgstr "Gitara" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6176,36 +6337,35 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6218,7 +6378,11 @@ msgstr "" msgid "Hide" msgstr "Sakrij" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6234,12 +6398,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6248,14 +6412,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6272,7 +6430,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6296,16 +6454,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Brze Tipke" @@ -6314,7 +6472,7 @@ msgstr "Brze Tipke" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6328,16 +6486,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6372,7 +6530,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR Osjetljivost:" @@ -6405,11 +6563,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6455,11 +6613,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignoriraj Promjene Formata" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6483,7 +6645,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6492,7 +6654,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6507,15 +6669,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6526,15 +6688,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6543,27 +6696,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6608,15 +6761,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6636,8 +6790,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informacije" @@ -6651,10 +6805,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Unos" @@ -6668,20 +6822,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Umetni SD karticu" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6695,7 +6855,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6703,11 +6863,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6716,7 +6878,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6725,7 +6887,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6742,19 +6904,19 @@ msgstr "" msgid "Interface" msgstr "Sučelje" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6767,19 +6929,19 @@ msgstr "Interna LZO pogreška - komprimiranje nije uspjelo" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6794,7 +6956,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Interna Rezolucija:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6802,11 +6964,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6818,7 +6980,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6827,11 +6989,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6860,7 +7022,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6872,19 +7034,19 @@ msgstr "" msgid "Invalid recording file" msgstr "Nevažeći video snimak" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Nevažeći parametri potrage (objekt nije odabran)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6894,7 +7056,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Talijanski" @@ -6903,63 +7065,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6971,27 +7133,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanski" @@ -7002,13 +7168,13 @@ msgstr "Japanski" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7022,7 +7188,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7043,7 +7209,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7051,12 +7217,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korejski" @@ -7067,7 +7233,7 @@ msgstr "Korejski" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7077,7 +7243,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7085,35 +7251,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7183,13 +7351,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7203,7 +7371,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7211,11 +7379,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7226,29 +7394,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Učitaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Učitaj Posebne Teksture" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7269,7 +7444,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7358,19 +7533,19 @@ msgstr "Učitaj Stanje Igre 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7382,16 +7557,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7399,18 +7574,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7430,7 +7605,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Zapis" @@ -7442,7 +7617,7 @@ msgstr "Konfiguracija Zapisa" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7450,7 +7625,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7466,7 +7641,7 @@ msgstr "Ispisi Bilježenja" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7481,16 +7656,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7498,7 +7673,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7508,7 +7683,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7516,37 +7691,37 @@ msgstr "" msgid "Main Stick" msgstr "Glavna Gljiva" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7563,12 +7738,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7580,7 +7755,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7597,16 +7772,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7618,7 +7793,7 @@ msgstr "" msgid "Memory Card" msgstr "Memorijska Kartica" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7630,7 +7805,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7646,7 +7821,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7654,29 +7829,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Razno" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Razne Postavke" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7696,36 +7875,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifikator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7737,16 +7921,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7783,6 +7967,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7792,10 +7980,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7804,8 +7992,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7814,7 +8002,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7831,25 +8019,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7858,7 +8046,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7915,7 +8103,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7945,7 +8133,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7953,7 +8141,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7961,7 +8149,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7970,7 +8158,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7984,7 +8172,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -7998,7 +8186,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8012,7 +8200,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8020,16 +8208,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Opis nije dostupan" @@ -8045,15 +8233,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8062,7 +8250,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8074,10 +8262,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8089,11 +8273,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8102,18 +8286,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Ništa" @@ -8173,7 +8357,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8208,10 +8392,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Domet Objekta" @@ -8225,7 +8457,7 @@ msgstr "" msgid "Off" msgstr "Isključeno" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8237,14 +8469,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "" @@ -8252,13 +8499,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8266,7 +8513,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Otvori" @@ -8275,11 +8522,11 @@ msgstr "Otvori" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8300,7 +8547,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8333,11 +8580,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opcije" @@ -8350,13 +8597,36 @@ msgstr "Narančasti" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Drugo" @@ -8369,7 +8639,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8389,16 +8659,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8407,15 +8677,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8423,11 +8693,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8440,11 +8710,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pad-ovi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8495,11 +8765,15 @@ msgstr "" msgid "Paths" msgstr "Mape" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8538,7 +8812,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvjetljenje po pikselu" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8546,33 +8820,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8588,12 +8862,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Pokreni" @@ -8605,7 +8879,7 @@ msgstr "" msgid "Play Recording" msgstr "Pokreni Video Snimak" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8617,27 +8891,27 @@ msgstr "Postavke Reprodukcije" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8646,7 +8920,8 @@ msgstr "" msgid "Players" msgstr "Igrači" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8658,23 +8933,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8683,7 +8962,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8704,11 +8983,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8716,11 +8995,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8743,7 +9022,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8758,7 +9037,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8769,7 +9048,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8781,7 +9060,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8815,8 +9094,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8824,11 +9103,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8848,14 +9127,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Pitanje" @@ -8876,19 +9155,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analogan" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8901,11 +9180,11 @@ msgstr "" msgid "Range" msgstr "Domet" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8917,7 +9196,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8929,14 +9212,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8957,10 +9240,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8974,7 +9262,7 @@ msgstr "Snimi Video" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9009,7 +9297,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9017,14 +9305,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Osvježi" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9032,11 +9320,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9045,8 +9333,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9075,7 +9363,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Ukloni" @@ -9092,7 +9380,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9103,8 +9391,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9112,11 +9400,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9132,23 +9420,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Resetiraj" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9176,6 +9463,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9192,7 +9483,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9209,7 +9500,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9268,7 +9559,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9286,26 +9577,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9321,19 +9638,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9341,7 +9658,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9354,7 +9671,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9362,11 +9679,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9376,11 +9693,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Sn&imi stanje igre" @@ -9393,7 +9710,6 @@ msgstr "Sigurno" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9403,9 +9719,17 @@ msgstr "Snimi" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9414,24 +9738,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9443,13 +9767,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Mjesta Snimanja" @@ -9493,23 +9817,23 @@ msgstr "Snimi Stanje Igre 8" msgid "Save State Slot 9" msgstr "Mjesto za Stanje Snimanja 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9517,7 +9841,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9529,26 +9853,26 @@ msgstr "" msgid "Save as..." msgstr "Snimi kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9556,7 +9880,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9568,7 +9892,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9580,26 +9904,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Umanjena EFB kopija" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "UslikajZaslon" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Traži" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9607,17 +9931,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Pretraži Podmape" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9625,11 +9949,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9649,7 +9973,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9657,28 +9981,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9698,15 +10030,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9714,7 +10046,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9773,15 +10105,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9789,11 +10121,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9801,19 +10133,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9821,12 +10153,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Odaberite snimak igre" @@ -9842,7 +10174,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Odabrani profil kontrolera ne postoji." @@ -9854,26 +10186,45 @@ msgstr "Odabrani profil kontrolera ne postoji." msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9885,18 +10236,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9910,7 +10272,7 @@ msgstr "" msgid "Send" msgstr "Poslati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Pozicija Senzora:" @@ -9934,16 +10296,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9959,40 +10317,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10004,20 +10362,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Protresti" @@ -10034,16 +10392,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Pokaži &Zapis" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Pokaži &Alatnu Traku" @@ -10051,53 +10409,53 @@ msgstr "Pokaži &Alatnu Traku" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Pokaži FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Pokaži Francusku" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Pokaži GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10109,23 +10467,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Pokaži Unos Tipki" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Pokaži Italiju" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Pokaži Koreju" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10133,19 +10491,19 @@ msgstr "" msgid "Show Language:" msgstr "Pokaži Jezik:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Pokaži Konfiguraciju za &Zapis" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10153,32 +10511,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Pokaži Platforme" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Pokaži Regije" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10186,72 +10548,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Pokaži Statistike" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Pokaži Taivan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Pokaži SAD" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Pokaži Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10259,65 +10621,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10327,34 +10695,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10363,7 +10731,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Pojednostavljeni Kineski" @@ -10380,17 +10748,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10425,24 +10793,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10450,10 +10818,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10463,7 +10827,7 @@ msgstr "" msgid "Slot A" msgstr "Utor A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10471,7 +10835,7 @@ msgstr "" msgid "Slot B" msgstr "Utor B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10479,7 +10843,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10503,12 +10867,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10522,27 +10886,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Španjolski" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Glasnoća Zvučnika:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10563,15 +10927,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10584,25 +10948,28 @@ msgstr "Standardni Kontroler" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Počni Snimati Video" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10618,10 +10985,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10631,7 +10998,7 @@ msgstr "Volan" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10643,13 +11010,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10665,7 +11032,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10674,7 +11041,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10704,18 +11071,14 @@ msgstr "Gljiva" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10748,7 +11111,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Rastegni do Prozora" @@ -10783,8 +11146,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10811,7 +11174,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10823,12 +11186,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10839,11 +11202,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10851,16 +11214,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10870,12 +11233,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10886,7 +11249,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Zamah" @@ -10900,34 +11263,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10953,7 +11303,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10972,24 +11322,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Jezik Sustava:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -10999,7 +11349,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11007,15 +11357,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Uslikaj Ekran" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11023,7 +11373,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11031,6 +11381,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11040,7 +11396,7 @@ msgstr "Predmemorija za Teksture" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11052,7 +11408,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Prekriti Format Teksture" @@ -11075,7 +11431,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11089,13 +11445,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11106,11 +11462,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11143,6 +11499,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11160,7 +11523,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11180,17 +11543,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11198,7 +11561,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11212,7 +11575,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11228,7 +11591,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11239,7 +11602,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11296,9 +11659,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11312,11 +11675,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11330,8 +11693,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11358,12 +11721,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Rezultirajući de-šifrirani AR kod ne sadrži niti jedan redak." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11397,7 +11760,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11412,11 +11775,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11424,15 +11787,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11455,7 +11818,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11481,14 +11844,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11522,19 +11890,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11649,6 +12017,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11661,11 +12033,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11678,7 +12050,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11686,7 +12058,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11705,6 +12077,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11719,11 +12098,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11731,12 +12110,12 @@ msgstr "" msgid "Threshold" msgstr "Prag" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Nagib" @@ -11750,10 +12129,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Naslov" @@ -11767,7 +12146,7 @@ msgstr "Do" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11792,7 +12171,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11844,15 +12223,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Vrh" @@ -11860,9 +12243,8 @@ msgstr "Vrh" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11899,28 +12281,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Tradicionalni Kineski" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11957,26 +12339,26 @@ msgid "Triggers" msgstr "Okidači" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tip" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11988,7 +12370,7 @@ msgstr "SAD" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12000,20 +12382,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12021,7 +12403,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12030,7 +12412,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12042,11 +12424,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12066,7 +12448,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12089,15 +12471,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Poništi Posljednje Učitavanje" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "" @@ -12115,11 +12497,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12130,12 +12512,13 @@ msgstr "" msgid "Unknown" msgstr "Nepoznato" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12159,11 +12542,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12171,7 +12554,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12179,7 +12562,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12199,16 +12582,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12241,22 +12626,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12318,23 +12703,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12346,15 +12731,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12362,7 +12747,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "Koristi Rješavanje Panike" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12380,43 +12765,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12448,21 +12808,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12470,31 +12830,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Uslužni program" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sinkro" @@ -12502,11 +12862,11 @@ msgstr "V-Sinkro" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Vrijednost" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12514,17 +12874,17 @@ msgstr "" msgid "Value:" msgstr "Vrijednost:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12540,16 +12900,16 @@ msgstr "Preopširno" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12563,7 +12923,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12577,12 +12937,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12590,14 +12950,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Glasnoća" @@ -12617,31 +12977,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12680,12 +13040,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12696,7 +13056,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12718,7 +13078,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Upozorenje" @@ -12790,7 +13150,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12807,7 +13167,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12815,7 +13175,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12823,7 +13183,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12847,7 +13207,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "Wii NAND Korijen:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12855,7 +13215,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12873,7 +13233,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12893,7 +13253,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12901,11 +13261,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12915,11 +13275,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Word Wrap" @@ -12933,10 +13305,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12978,6 +13354,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12986,11 +13370,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13025,14 +13409,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13129,7 +13513,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13147,15 +13531,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "Zero 3 kod nije podržan" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13163,11 +13551,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13186,21 +13574,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13208,31 +13596,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13242,7 +13634,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13252,13 +13644,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13275,16 +13667,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13299,11 +13695,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13338,7 +13734,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13347,8 +13743,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/hu.po b/Languages/po/hu.po index bdc519541386..212a2092a264 100644 --- a/Languages/po/hu.po +++ b/Languages/po/hu.po @@ -6,14 +6,14 @@ # Delirious , 2011,2013 # Delirious , 2013,2023 # Evin, 2016,2023 -# Péter Patkós, 2023 +# Péter Patkós, 2023-2024 msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Péter Patkós, 2023\n" +"Last-Translator: Péter Patkós, 2023-2024\n" "Language-Team: Hungarian (http://app.transifex.com/delroth/dolphin-emu/" "language/hu/)\n" "Language: hu\n" @@ -65,8 +65,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -87,19 +87,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -120,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (alap)" @@ -159,6 +160,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 nem támogatja ezt a funkciót a rendszereden." @@ -182,13 +188,13 @@ msgstr "%1 csatlakozott" msgid "%1 has left" msgstr "%1 kilépett" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -204,12 +210,12 @@ msgstr "%1 éppen golfozik" msgid "%1 is playing %2" msgstr "%1 ezzel játszik: %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +232,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%" @@ -234,26 +240,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -291,20 +297,20 @@ msgstr "" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -312,25 +318,25 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:291 msgid "& And" -msgstr "" +msgstr "& és" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Névjegy" @@ -338,12 +344,12 @@ msgstr "&Névjegy" msgid "&Add Memory Breakpoint" msgstr "&Új memória töréspont hozzáadása" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Új kód hozzáadása..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Funkció hozzáadása" @@ -351,27 +357,27 @@ msgstr "&Funkció hozzáadása" msgid "&Add..." msgstr "&Hozzáadás..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Audió beállítások" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Automatikus frissítés:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Szegély nélküli ablak" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Töréspontok" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -379,15 +385,15 @@ msgstr "" msgid "&Cancel" msgstr "&Mégse" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Csaláskezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Frissítések keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -395,19 +401,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Kód" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Csatlakoztatva" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Vezérlő beállítások" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Cím másolása" @@ -415,7 +426,7 @@ msgstr "&Cím másolása" msgid "&Create..." msgstr "&Létrehozás..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Törlés" @@ -432,9 +443,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Kód szerkesztése..." @@ -442,23 +453,23 @@ msgstr "&Kód szerkesztése..." msgid "&Edit..." msgstr "&Szerkesztés..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Lemez kiadása" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emuláció" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exportálás" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Játékmentés exportálása..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Állapot exportálása..." @@ -466,55 +477,53 @@ msgstr "&Állapot exportálása..." msgid "&Export as .gci..." msgstr "&Exportálás, mint .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fájl" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "Képkocka léptetése" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub tárház" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafikai beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Súgó" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Gyorsbillentyű beállítások" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importálás" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Játékmentés importálása..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Állapot importálása..." @@ -522,19 +531,19 @@ msgstr "&Állapot importálása..." msgid "&Import..." msgstr "&Importálás..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -542,15 +551,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Nyelv:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Állapot betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -560,23 +573,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Film" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Némítás" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Hálózat" @@ -585,23 +598,23 @@ msgid "&No" msgstr "&Nem" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Megnyitás..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Szünet" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Indítás" @@ -609,15 +622,15 @@ msgstr "&Indítás" msgid "&Properties" msgstr "&Tulajdonságok" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Írásvédett mód" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Lista frissítése" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Regiszterek" @@ -625,41 +638,45 @@ msgstr "&Regiszterek" msgid "&Remove" msgstr "&Törlés" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Kód törlése" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Alapbeállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Sebességkorlát:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Stop" @@ -667,15 +684,19 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Téma:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" +msgstr "&Szálak" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Eszközök" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -685,17 +706,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Figyelés" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Weboldal" @@ -707,11 +728,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Igen" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -727,7 +748,7 @@ msgstr "(Világos)" msgid "(System)" msgstr "(Rendszer)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -735,7 +756,7 @@ msgstr "" msgid "(off)" msgstr "(ki)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -749,61 +770,61 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:298 msgid ", Comma" -msgstr "" +msgstr ", vessző" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:288 msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" -msgstr "" +msgstr "--Ismeretlen--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." -msgstr "" +msgstr "..." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:285 msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" -msgstr "" +msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1080p" -msgstr "" +msgstr "1080p" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31 msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1440p" -msgstr "" +msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -815,33 +836,33 @@ msgstr "" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117 msgid "16x Anisotropic" -msgstr "" +msgstr "16x Anizotróp" #: Source/Core/Core/HotkeyManager.cpp:193 msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -851,9 +872,9 @@ msgstr "2x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114 msgid "2x Anisotropic" -msgstr "" +msgstr "2x Anizotróp" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -865,25 +886,25 @@ msgstr "" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -897,11 +918,11 @@ msgstr "3D mélység" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -909,7 +930,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -923,9 +944,9 @@ msgstr "4x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115 msgid "4x Anisotropic" -msgstr "" +msgstr "4x Anizotróp" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -937,22 +958,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -960,11 +981,11 @@ msgstr "" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -976,13 +997,13 @@ msgstr "" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -992,13 +1013,13 @@ msgstr "8K" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116 msgid "8x Anisotropic" -msgstr "" +msgstr "8x Anizotróp" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290 msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1010,11 +1031,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1046,12 +1067,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1061,7 +1082,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Egy lemez már behelyezés alatt." @@ -1071,11 +1092,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1091,6 +1112,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1112,7 +1137,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR kód" @@ -1121,8 +1146,8 @@ msgstr "AR kód" msgid "AR Codes" msgstr "AR kódok" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1136,7 +1161,7 @@ msgid "About Dolphin" msgstr "Dolphin névjegy" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1152,10 +1177,10 @@ msgstr "Pontosság:" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "Teljesítmény beállítások" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Teljesítmények" @@ -1241,19 +1266,19 @@ msgstr "" msgid "Active" msgstr "Aktív" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Aktív szálak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adapter" @@ -1261,7 +1286,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter érzékelve" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1271,7 +1296,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Hozzáadás" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "&Töréspont hozzáadása" @@ -1300,51 +1325,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Hozzáadás" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Cím" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1405,12 +1427,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Haladó" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Haladó beállítások" @@ -1425,15 +1447,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1443,16 +1465,16 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1466,11 +1488,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1478,7 +1500,7 @@ msgid "All Files" msgstr "Minden fájl" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Minden fájl (*)" @@ -1487,7 +1509,7 @@ msgstr "Minden fájl (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Minden GC/Wii fájl" @@ -1496,8 +1518,8 @@ msgstr "Minden GC/Wii fájl" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1509,7 +1531,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Minden fájl (*)" @@ -1521,15 +1543,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD kártyára írás engedélyezése" @@ -1557,7 +1579,7 @@ msgstr "Mindig" msgid "Always Connected" msgstr "Mindig csatlakozva" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "Mindig &felül" @@ -1595,15 +1617,15 @@ msgstr "Élsimítás:" msgid "Any Region" msgstr "Bármilyen régió" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1621,7 +1643,7 @@ msgstr "Betöltőprogram dátuma:" msgid "Apply" msgstr "Alkalmaz" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1631,7 +1653,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 msgid "Are you sure that you want to delete '%1'?" -msgstr "" +msgstr "Biztosan törölni szeretnéd: '%1'?" #: Source/Core/DolphinQt/GameList/GameList.cpp:834 msgid "Are you sure you want to delete this file?" @@ -1653,12 +1675,16 @@ msgstr "Biztos vagy benne?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Képarány" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Képarány:" @@ -1666,7 +1692,7 @@ msgstr "Képarány:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1674,7 +1700,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1684,14 +1710,14 @@ msgstr "Vezérlő portjainak társítása" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:21 msgid "Assign Controllers" -msgstr "" +msgstr "Vezérlők kiosztása" #: Source/Core/DolphinQt/GCMemcardManager.cpp:536 msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1699,11 +1725,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" @@ -1715,12 +1741,12 @@ msgstr "Ausztrália" msgid "Author" msgstr "Szerző" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Készítők" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatikus" @@ -1728,11 +1754,7 @@ msgstr "Automatikus" msgid "Auto (Multiple of 640x528)" msgstr "Automatikus (640x528 többszöröse)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Automatikus frissítés beállításai" @@ -1744,7 +1766,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Ablak automatikus méretezése" @@ -1752,32 +1774,32 @@ msgstr "Ablak automatikus méretezése" msgid "Auto-Hide" msgstr "Automatikus elrejtés" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1785,38 +1807,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "Helytelen BAT. A Dolphin most kilép." -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP regiszter " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Háttéralkalmazás:" @@ -1832,13 +1858,13 @@ msgstr "Háttér bemenet" msgid "Backward" msgstr "Hátra" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1846,20 +1872,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1879,15 +1905,15 @@ msgstr "Hangoló" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Alap" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Alapok beállítása" @@ -1895,15 +1921,15 @@ msgstr "Alapok beállítása" msgid "Bass" msgstr "Basszus" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Akkumulátor" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Béta (havonta egyszer)" @@ -1927,31 +1953,33 @@ msgstr "" msgid "Bilinear" msgstr "Bilineáris" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitráta (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Blokk méret" @@ -1960,7 +1988,7 @@ msgstr "Blokk méret" msgid "Block Size:" msgstr "Blokk mérete:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1987,32 +2015,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: 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:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Lent" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2050,11 +2189,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2064,11 +2203,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2100,7 +2239,7 @@ msgstr "Gomb" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2116,7 +2255,7 @@ msgstr "Gomb" msgid "Buttons" msgstr "Gombok" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2126,11 +2265,11 @@ msgstr "" msgid "C Stick" msgstr "C kar" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP regiszter " @@ -2142,7 +2281,7 @@ msgstr "" msgid "CPU Options" msgstr "CPU beállítások" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2150,14 +2289,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Gyorsítótáras értelmező (lassabb)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2169,118 +2308,132 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibrálás" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" -msgstr "" +msgstr "Kalibráció" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:45 msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:75 msgid "Camera 1" -msgstr "" +msgstr "Kamera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Kalibrálás megszakítása" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Sikertelen SingleStep a FIFO-ban. Helyette használj Képkocka léptetést." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:438 msgid "Cannot refresh without results." -msgstr "" +msgstr "Eredmények nélkül nem lehet frissíteni." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2298,7 +2451,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2306,7 +2459,7 @@ msgstr "" msgid "Change &Disc" msgstr "Lemez&váltás" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Lemez&váltás..." @@ -2314,7 +2467,7 @@ msgstr "Lemez&váltás..." msgid "Change Disc" msgstr "Lemezváltás" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Automatikus lemezváltás" @@ -2322,7 +2475,7 @@ msgstr "Automatikus lemezváltás" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2348,7 +2501,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2358,25 +2511,25 @@ msgstr "Chat" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:25 msgid "Cheat Code Editor" -msgstr "" +msgstr "Csaláskód szerkesztő" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Csalás keresése" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" -msgstr "" +msgstr "Csalás kezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." -msgstr "" +msgstr "NAND ellenőrzése..." #: Source/Core/DolphinQt/Settings/PathPane.cpp:149 msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Frissítések keresése" @@ -2394,27 +2547,27 @@ msgstr "" msgid "China" msgstr "Kína" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Válassz" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Válassz megnyitandó fájlt" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: 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:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2429,7 +2582,7 @@ msgstr "" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 msgid "Classic Buttons" -msgstr "" +msgstr "Klasszikus gombok" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.cpp:54 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:45 @@ -2441,15 +2594,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Törlés" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Gyorsítótár törlése" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Foglalat törlése" @@ -2457,7 +2614,7 @@ msgstr "Foglalat törlése" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2466,36 +2623,20 @@ msgstr "" msgid "Close" msgstr "Bezárás" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ko&nfiguráció" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Kód" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2522,14 +2663,18 @@ msgstr "Színkorrekció:" msgid "Color Space" msgstr "Színtér" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" #. i18n: This is "common" as in "shared", not the opposite of "uncommon" #: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:33 msgid "Common" -msgstr "" +msgstr "Közös" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:151 msgid "Comparand:" @@ -2549,7 +2694,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2557,9 +2702,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Tömörítés" @@ -2572,10 +2717,16 @@ msgstr "Tömörítés szintje:" msgid "Compression:" msgstr "Tömörítés:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2648,7 +2799,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Beállítás" @@ -2681,13 +2832,13 @@ msgstr "Kimenet konfigurálása" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Megerősítés" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2695,7 +2846,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Megerősítés leállításkor" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2706,15 +2857,15 @@ msgstr "Megerősítés" msgid "Connect" msgstr "Csatlakozás" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Balance Board csatlakoztatása" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB billentyűzet csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2734,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2775,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "Vezérlő kar" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2799,7 +2950,7 @@ msgstr "" msgid "Controller Settings" msgstr "Vezérlőbeállítások" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Vezérlők" @@ -2862,18 +3013,18 @@ msgstr "Konvergencia" msgid "Convergence:" msgstr "Konvergencia:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." -msgstr "" +msgstr "Sikertelen átalakítás." #: Source/Core/DolphinQt/ConvertDialog.cpp:44 msgid "Convert" msgstr "Konvertálás" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -2881,9 +3032,9 @@ msgstr "Fájl mappává konvertálása" msgid "Convert File..." msgstr "Fájl konvertálása..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 " @@ -2903,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konvertálás..." @@ -2942,15 +3093,15 @@ msgstr "" msgid "Copy" msgstr "Másolás" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Cím másolása" @@ -2958,19 +3109,19 @@ msgstr "Cím másolása" msgid "Copy Failed" msgstr "Másolás sikertelen" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Érték másolása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2988,6 +3139,11 @@ msgstr "" msgid "Core" msgstr "Mag" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Színtér korrekció" @@ -2997,7 +3153,7 @@ msgid "Correct SDR Gamma" msgstr "SDR Gamma korrekció" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3068,9 +3224,9 @@ msgstr "" #: Source/Core/Core/Boot/Boot.cpp:283 Source/Core/Core/Boot/Boot.cpp:300 msgid "Could not recognize file {0}" -msgstr "" +msgstr "A {0} fájl nem ismerhető fel" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Nem sikerült menteni a változtatásokat!" @@ -3107,13 +3263,13 @@ msgstr "A fájl nem olvasható." msgid "Country:" msgstr "Ország:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Létrehozás" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3122,14 +3278,10 @@ msgstr "" msgid "Create New Memory Card" msgstr "Új memóriakártya létrehozása" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" -msgstr "" - -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" +msgstr "Skylander fájl létrehozása" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" @@ -3139,17 +3291,8 @@ msgstr "" msgid "Create..." msgstr "Létrehozás..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3157,11 +3300,11 @@ msgstr "" msgid "Critical" msgstr "Kritikus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Levágás" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3173,26 +3316,26 @@ msgstr "" msgid "Crossfade" msgstr "Átúsztatás" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Jelenlegi régió" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Jelenlegi érték" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Jelenlegi kontextus" @@ -3200,29 +3343,33 @@ msgstr "Jelenlegi kontextus" msgid "Current game" msgstr "Jelenlegi játék" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Jelenlegi szál" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" +msgstr "Egyéni" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "" +msgstr "Egyéni képarány magassága" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "" +msgstr "Egyéni képarány szélessége" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "Egyéni képarány:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3232,13 +3379,13 @@ msgstr "Egyéni RTC beállítások" msgid "Custom:" msgstr "Egyéni:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Testreszabás" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3252,7 +3399,7 @@ msgstr "" #: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:219 msgid "DFF file size is 0; corrupt/incomplete file?" -msgstr "" +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 @@ -3263,7 +3410,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 "" @@ -3271,15 +3418,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ú)" @@ -3301,7 +3448,7 @@ msgstr "Dance Mat" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Sötét" @@ -3317,7 +3464,7 @@ msgstr "Adatpartíció (%1)" msgid "Data Transfer" msgstr "Adatátvitel" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Adattípus" @@ -3350,8 +3497,8 @@ msgstr "Holtsáv" msgid "Debug" msgstr "Hibakeresés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Hibakeresés" @@ -3360,7 +3507,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:" @@ -3407,7 +3554,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" @@ -3419,11 +3566,11 @@ msgstr "Alapértelmezett betítípus" msgid "Default ISO:" msgstr "Alapértelmezett ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Alapértelmezett szál" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3431,7 +3578,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3471,26 +3618,53 @@ msgstr "" msgid "Depth:" msgstr "Mélység:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Leírás" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Leírás:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" +msgstr "Leírás: %1" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Leválasztva" @@ -3498,7 +3672,7 @@ msgstr "Leválasztva" msgid "Detect" msgstr "Észlelés" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "RSO modulok észlelése" @@ -3506,7 +3680,7 @@ msgstr "RSO modulok észlelése" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Fejlesztői (naponta többször)" @@ -3515,7 +3689,7 @@ msgid "Device" msgstr "Eszköz" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3524,11 +3698,11 @@ msgid "Device Settings" msgstr "Eszköz beállítások" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3536,11 +3710,7 @@ msgstr "Eszköz:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3552,12 +3722,12 @@ msgstr "Közvetlen kapcsolat" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" -msgstr "" +msgstr "Le&csatlakoztatva" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Letiltás" @@ -3569,7 +3739,7 @@ msgstr "Határolókeret kikapcsolása" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3577,11 +3747,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Emulációs sebességkorlát kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Fastmem tiltása" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3589,11 +3759,11 @@ msgstr "" msgid "Disable Fog" msgstr "Köd kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "JIT gyorsítótár tiltása" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3608,7 +3778,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3954,15 +4120,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holland" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "K&ilépés" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3988,7 +4154,7 @@ msgstr "Korai memória frissítés" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Föld" @@ -4001,7 +4167,7 @@ msgstr "Kelet-Ázsia" msgid "Edit Breakpoint" msgstr "Töréspont módosítása" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Szerkesztés..." @@ -4017,15 +4183,15 @@ msgstr "Effekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effektív" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4035,7 +4201,7 @@ msgstr "Lemez kiadása" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4043,11 +4209,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Beágyazott képkocka puffer (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Üres" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Az emulációs szál már fut" @@ -4055,11 +4221,11 @@ msgstr "Az emulációs szál már fut" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4073,7 +4239,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Emulált USB esközök" @@ -4091,30 +4257,18 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:335 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" +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:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API-érvényesítési rétegek használata" @@ -4126,17 +4280,17 @@ msgstr "Teljesítményjelvények engedélyezése" msgid "Enable Achievements" msgstr "Teljesítmények engedélyezése" -#: 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" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Csalások használata" #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 msgid "Enable Controller Inpu&t" -msgstr "" +msgstr "Vezérlőbemenet engedélyezése" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:162 msgid "Enable Custom RTC" @@ -4144,13 +4298,13 @@ msgstr "Egyéni RTC használata" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 msgid "Enable Debugging UI" -msgstr "" +msgstr "Hibakereső felület engedélyezése" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Kétmagos mód használata" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Kétmagos mód használata (gyorsítás)" @@ -4170,9 +4324,9 @@ msgstr "" msgid "Enable FPRF" msgstr "FPRF használata" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" -msgstr "" +msgstr "Grafikai modok engedélyezése" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "Enable Hardcore Mode" @@ -4196,6 +4350,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Ranglisták engedélyezése" @@ -4207,9 +4365,9 @@ msgstr "MMU használata" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 msgid "Enable Progress Notifications" -msgstr "" +msgstr "Előrehaladási értesítések engedélyezése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Progresszív pásztázás használata" @@ -4222,11 +4380,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Képernyővédő használata" @@ -4238,15 +4396,15 @@ msgstr "Hangszóró adatok bekapcsolása" msgid "Enable Unofficial Achievements" msgstr "Nem hivatalos teljesítmények engedélyezése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Használati statisztika jelentése" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Vonalháló használata" @@ -4316,7 +4474,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4349,7 +4507,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4357,7 +4515,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4374,7 +4532,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 "" @@ -4402,7 +4560,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4410,7 +4568,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4418,7 +4576,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4443,7 +4601,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Angol" @@ -4452,7 +4610,7 @@ msgstr "Angol" msgid "Enhancements" msgstr "Képjavítások" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4474,11 +4632,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4487,8 +4651,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4499,45 +4663,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4547,23 +4717,23 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Hiba" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:456 msgid "Error Log" -msgstr "" +msgstr "Hibanapló" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:75 msgid "Error Opening Adapter: %1" @@ -4573,9 +4743,9 @@ msgstr "Hiba az adapter megnyitásakor: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4589,7 +4759,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4655,13 +4825,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4680,40 +4850,12 @@ msgstr "" msgid "Euphoria" msgstr "Eufória" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Európa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4721,7 +4863,7 @@ msgstr "" msgid "Exit" msgstr "Kilépés" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4729,7 +4871,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4741,15 +4883,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4757,11 +4899,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Kísérleti" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Minden Wii mentés exportálása" @@ -4776,7 +4918,7 @@ msgstr "Sikertelen exportálás" msgid "Export Recording" msgstr "Felvétel exportálása" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Felvétel exportálása..." @@ -4804,14 +4946,14 @@ msgstr "Exportálás, mint .&gcs..." msgid "Export as .&sav..." msgstr "Exportálás, mint .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n mentés exportálva" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Kiegészítő" @@ -4832,7 +4974,7 @@ msgstr "Külső" msgid "External Frame Buffer (XFB)" msgstr "Küldő képkockapuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4865,12 +5007,12 @@ msgid "Extracting Directory..." msgstr "Könyvtár kibontása..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO lejátszó" @@ -4890,7 +5032,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4898,12 +5040,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4931,19 +5073,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" -msgstr "" +msgstr "Nem sikerült létrehozni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4963,15 +5106,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Kódok letöltése sikertelen." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4984,7 +5127,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5007,33 +5150,31 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "\"%1\" importálása sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5044,7 +5185,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5053,18 +5194,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5076,19 +5217,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:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" -msgstr "" +msgstr "Nem sikerült betölteni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5098,13 +5241,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Nem sikerült módosítani a Skylander-t!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "'%1' megnyitása sikertelen" @@ -5112,13 +5263,17 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Konfig fájl megnyitása sikertelen!" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:731 msgid "Failed to open file" -msgstr "" +msgstr "Nem sikerült megnyitni a fájlt" #: Source/Core/Core/NetPlayCommon.cpp:26 msgid "Failed to open file \"{0}\"." @@ -5138,28 +5293,32 @@ msgstr "" msgid "Failed to open file." msgstr "Nem sikerült megnyitni a fájlt." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Nem sikerült megnyitni a szervert" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Nem sikerült megnyitni az Infinity fájlt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Nem sikerült megnyitni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5179,7 +5338,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5201,35 +5360,34 @@ 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Nem sikerült beolvasni az Infinity fájlt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Nem sikerült beolvasni az Infinity fájlt (%1)!\n" -"A fájl túl kicsi." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Nem sikerült beolvasni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Nem sikerült beolvasni a Skylander fájlt (%1)!\n" -"A fájl túl kicsi." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5263,31 +5421,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5338,7 +5496,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5346,11 +5504,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5363,7 +5521,7 @@ msgstr "Gyors" msgid "Fast Depth Calculation" msgstr "Gyors mélységszámolás" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5374,11 +5532,11 @@ msgstr "" msgid "Field of View" msgstr "Látómező" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5386,9 +5544,9 @@ msgstr "" msgid "File Details" msgstr "Fájl részletei" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Fájlformátum" @@ -5400,20 +5558,20 @@ msgstr "Fájl formátuma:" msgid "File Info" msgstr "Fájl információ" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Fájlnév" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Fájl útvonala:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Fájlméret" @@ -5421,7 +5579,7 @@ msgstr "Fájlméret" msgid "File Size:" msgstr "Fájl mérete:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "A fájl nem tartalmazott kódokat." @@ -5455,15 +5613,15 @@ msgstr "Fájlrendszer" msgid "Filters" msgstr "Szűrők" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Kalibrálás befejezése" @@ -5477,7 +5635,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Tűz" @@ -5493,31 +5651,32 @@ msgstr "Ellenőrzőösszeg javítása" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5527,13 +5686,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5541,7 +5700,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" @@ -5573,11 +5732,11 @@ msgstr "" msgid "Force Nearest" msgstr "Legközelebbi kényszerítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5614,17 +5773,17 @@ msgstr "Előre" msgid "Forward port (UPnP)" msgstr "Port forward (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5645,7 +5804,7 @@ 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:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5653,7 +5812,7 @@ msgstr "" msgid "Frame Range" msgstr "Képkocka hatókör" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5677,7 +5836,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5708,7 +5867,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francia" @@ -5732,7 +5891,7 @@ msgstr "Ettől:" msgid "From:" msgstr "Ettől:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Teljes képernyő" @@ -5764,7 +5923,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA beállítások" @@ -5880,20 +6039,20 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Játék" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance kártyák (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -5901,7 +6060,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:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5929,8 +6088,8 @@ msgstr "Játék gamma" msgid "Game Gamma:" msgstr "Játék gamma:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Játék azonosító" @@ -5990,11 +6149,11 @@ msgstr "GameCube adapter Wii U-hoz" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube vezérlő" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -6002,11 +6161,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube vezérlők" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube billentyűzet" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6019,17 +6178,17 @@ msgid "GameCube Memory Cards" msgstr "GameCube memóriakártyák" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube memóriakártyák (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" #: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:27 msgid "GameCube TAS Input %1" -msgstr "" +msgstr "GameCube TAS bemenet %1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:80 msgid "Gamma" @@ -6051,7 +6210,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko kódok" @@ -6061,35 +6220,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Általános" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" -msgstr "" +msgstr "Általános és beállítások" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Új statisztikai azonosító generálása" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Német" @@ -6101,20 +6260,20 @@ msgstr "Németország" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" -msgstr "" +msgstr "Óriás" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" -msgstr "" +msgstr "Óriások" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 msgid "Golf Mode" @@ -6125,8 +6284,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6165,7 +6324,7 @@ msgstr "Zöld balra" msgid "Green Right" msgstr "Zöld jobbra" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Rács nézet" @@ -6174,7 +6333,7 @@ msgstr "Rács nézet" msgid "Guitar" msgstr "Gitár" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Giroszkóp" @@ -6202,36 +6361,35 @@ msgstr "HDR utófeldolgozás" msgid "Hacks" msgstr "Hangolások" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Segítség" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Hős szintje:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6244,7 +6402,11 @@ msgstr "Hexadecimális" msgid "Hide" msgstr "Elrejtés" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Összes elrejtése" @@ -6260,12 +6422,12 @@ msgstr "Nem kompatibilisek elrejtése" msgid "Hide Remote GBAs" msgstr "Távoli GBAk elrejtése" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6274,16 +6436,10 @@ msgstr "Legmagasabb" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" -msgstr "" +msgstr "Vízszintes látótér (FOV)" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:152 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:206 @@ -6298,7 +6454,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6322,16 +6478,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Gyorsbillentyű beállítások" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Gyorsbillentyűk" @@ -6340,7 +6496,7 @@ msgstr "Gyorsbillentyűk" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6354,16 +6510,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Tisztában vagyok a kockázatokkal, és folytatni szeretném" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "Azonosító" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "A megadott azonosító érvénytelen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "Azonosító:" @@ -6398,7 +6554,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR érzékenysége:" @@ -6431,11 +6587,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6481,11 +6637,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Formátumváltozások kihagyása" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6509,7 +6669,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6518,7 +6678,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6533,15 +6693,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:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Wii mentés importálása..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6552,15 +6712,6 @@ msgstr "" msgid "In-Game?" msgstr "Játékban?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6569,29 +6720,29 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" -msgstr "" +msgstr "Helytelen pénz érték!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "Helytelen becenév!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" -msgstr "" +msgstr "Helytelen játékidő érték!" #: Source/Core/Core/FreeLookManager.cpp:98 msgid "Increase" @@ -6634,15 +6785,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6662,8 +6814,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Információk" @@ -6677,10 +6829,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Bemenet" @@ -6694,20 +6846,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD kártya behelyezése" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6721,7 +6879,7 @@ msgstr "" msgid "Install Update" msgstr "Frissítés telepítése" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WAD telepítése..." @@ -6729,11 +6887,13 @@ msgstr "WAD telepítése..." msgid "Install to the NAND" msgstr "Telepítés a NAND-ra" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Utasítás" @@ -6742,7 +6902,7 @@ msgstr "Utasítás" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Utasítás:" @@ -6751,7 +6911,7 @@ msgstr "Utasítás:" msgid "Instruction: %1" msgstr "Utasítás: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6768,19 +6928,19 @@ msgstr "Intenzitás" msgid "Interface" msgstr "Felhasználói felület" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Belső LZ4 hiba - sikertelen tömörítés" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6793,19 +6953,19 @@ msgstr "Belső LZO hiba - sikertelen tömörítés" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6820,7 +6980,7 @@ msgstr "Belső felbontás" msgid "Internal Resolution:" msgstr "Belső felbontás:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6828,11 +6988,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Értelmező (leglassabb)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Érvénytelen kifejezés." @@ -6844,20 +7004,20 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" #: Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp:26 #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:23 msgid "Invalid Player ID" -msgstr "" +msgstr "Érvénytelen játékos ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6886,9 +7046,9 @@ msgstr "Érvénytelen bemenet" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." -msgstr "" +msgstr "Érvénytelen paraméterek kerültek megadásra a kereséshez." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 msgid "Invalid password provided." @@ -6898,20 +7058,20 @@ msgstr "" msgid "Invalid recording file" msgstr "Érvénytelen rögzített fájl" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Érvénytelen keresési paraméterek (nincs kiválasztott elem)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Érvénytelen keresési karakterlánc (csak azonos karakterlánchossz támogatott)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6921,7 +7081,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Olasz" @@ -6930,63 +7090,63 @@ msgid "Italy" msgstr "Olaszország" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6998,27 +7158,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japán" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japán" @@ -7029,13 +7193,13 @@ msgstr "Japán" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7049,7 +7213,7 @@ msgstr "Ablak mindig felül" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7070,7 +7234,7 @@ msgstr "Billentyűzet vezérlő" msgid "Keys" msgstr "Gombok" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7078,12 +7242,12 @@ msgstr "" msgid "Kick Player" msgstr "Játékos kirúgása" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korea" @@ -7094,7 +7258,7 @@ msgstr "Korea" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "&ROM betöltése..." @@ -7104,7 +7268,7 @@ msgstr "&ROM betöltése..." msgid "L-Analog" msgstr "Bal analóg" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7112,35 +7276,37 @@ msgstr "" msgid "Label" msgstr "Címke" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Legutóbbi érték" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7210,13 +7376,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licence" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7230,7 +7396,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7238,11 +7404,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Oszlopok megjelenítése a listában" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Lista nézet" @@ -7253,29 +7419,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Betöltés" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Egyedi textúrák betöltése" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Fájl betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "GameCube főmenü betöltése" @@ -7296,7 +7469,7 @@ msgstr "Betöltési útvonal:" msgid "Load ROM" msgstr "ROM betöltése" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Foglalat betöltése" @@ -7385,19 +7558,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:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Állapot betöltése fájlból" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Állapot betöltése a választott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Állapot betöltése foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Wii rendszermenü betöltése %1" @@ -7409,16 +7582,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Betöltés a kiválasztott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Betöltés a foglalatból %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7426,18 +7599,18 @@ msgstr "" msgid "Load..." msgstr "Betöltés..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7457,7 +7630,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Napló" @@ -7469,7 +7642,7 @@ msgstr "Napló beállítások" msgid "Log In" msgstr "Bejelentkezés" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7477,7 +7650,7 @@ msgstr "" msgid "Log Out" msgstr "Kijelentkezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Renderidő naplózása fájlba" @@ -7493,7 +7666,7 @@ msgstr "Napló kimenetek" msgid "Login Failed" msgstr "Sikertelen bejelentkezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7508,16 +7681,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7525,7 +7698,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7535,7 +7708,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7543,37 +7716,37 @@ msgstr "" msgid "Main Stick" msgstr "Főkar" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Készítő" @@ -7590,12 +7763,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "NAND kezelése" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7607,7 +7780,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7617,23 +7790,23 @@ msgstr "Max puffer:" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 msgid "Max buffer size changed to %1" -msgstr "" +msgstr "A maximális pufferméret %1 értékre változott" #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:32 msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Közepes" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Memória" @@ -7645,7 +7818,7 @@ msgstr "Memória töréspont" msgid "Memory Card" msgstr "Memóriakártya" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Memóriakártya kezelő" @@ -7657,7 +7830,7 @@ msgstr "Memóriakártya útvonal:" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7673,7 +7846,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7681,29 +7854,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" -msgstr "" +msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Egyebek" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Egyéb beállítások" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7723,36 +7900,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Módosító" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Pénz:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7764,16 +7946,16 @@ msgstr "Monoszkóp árnyékok" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7810,6 +7992,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7819,10 +8005,10 @@ msgstr "" msgid "N&o to All" msgstr "N&em mindre" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND ellenőrzés" @@ -7831,8 +8017,8 @@ msgstr "NAND ellenőrzés" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7841,7 +8027,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7858,25 +8044,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Név" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Új címke neve:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Eltávolítandó címke neve:" @@ -7885,7 +8071,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7942,7 +8128,7 @@ msgstr "" msgid "Network" msgstr "Hálózat" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7966,13 +8152,13 @@ msgstr "Új töréspont" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:706 msgid "New File" -msgstr "" +msgstr "Új fájl" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:708 msgid "New File (%1)" -msgstr "" +msgstr "Új fájl (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Új keresés" @@ -7980,7 +8166,7 @@ msgstr "Új keresés" msgid "New Tag..." msgstr "Új címke..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Új azonosító generálva." @@ -7988,7 +8174,7 @@ msgstr "Új azonosító generálva." msgid "New instruction:" msgstr "Új utasítás:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Új címke" @@ -7997,7 +8183,7 @@ msgstr "Új címke" msgid "Next Game Profile" msgstr "Következő játékprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8011,7 +8197,7 @@ msgid "Nickname is too long." msgstr "A becenév túl hosszú." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Becenév:" @@ -8025,7 +8211,7 @@ msgstr "Nem" msgid "No Adapter Detected" msgstr "Nem található adapter" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8039,7 +8225,7 @@ msgstr "Nincs hangkimenet" msgid "No Compression" msgstr "Nincs tömörítés" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8047,16 +8233,16 @@ msgstr "" msgid "No Save Data" msgstr "Nincs mentett adat" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "Nincs módosítható adat!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Nincs elérhető leírás" @@ -8066,30 +8252,30 @@ msgstr "Nincs hiba." #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:93 msgid "No extension selected." -msgstr "" +msgstr "Nincs kiterjesztés kiválasztva." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "No file loaded / recorded." -msgstr "" +msgstr "Nincs betöltött / rögzített fájl." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Nincs futó játék." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Nincs futó játék." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" -msgstr "" +msgstr "Nincs kiválasztva grafikai mod" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:59 #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:107 msgid "No input" -msgstr "" +msgstr "Nincs bemenet" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Nem található probléma." @@ -8099,11 +8285,7 @@ msgstr "" #: Source/Core/Core/Boot/Boot.cpp:98 msgid "No paths found in the M3U file \"{0}\"" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" +msgstr "Nem található útvonal az M3U fájlban \"{0}\"" #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." @@ -8116,11 +8298,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8129,7 +8311,7 @@ msgstr "" msgid "No save data found." msgstr "Nem található mentett adat." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Nem található undo.dtm, állás betöltésének megszakítása a videó " @@ -8138,11 +8320,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Nincs" @@ -8202,7 +8384,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8237,10 +8419,58 @@ msgstr "" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Objektum hatókör" @@ -8254,7 +8484,7 @@ msgstr "" msgid "Off" msgstr "Ki" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8266,14 +8496,29 @@ msgstr "Be" msgid "On Movement" msgstr "Mozgatáskor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online &dokumentáció" @@ -8281,13 +8526,13 @@ msgstr "Online &dokumentáció" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8295,7 +8540,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Megnyitás" @@ -8304,11 +8549,11 @@ msgstr "Megnyitás" msgid "Open &Containing Folder" msgstr "&Tartalmazó mappa megnyitása" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "&Felhasználói mappa megnyitása" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Könyvtár megnyitása..." @@ -8329,7 +8574,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Kimentési mappa megnyitása" @@ -8362,11 +8607,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Beállítások" @@ -8379,13 +8624,36 @@ msgstr "Narancs" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Egyéb" @@ -8398,7 +8666,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8408,7 +8676,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:446 msgid "Output" -msgstr "" +msgstr "Kimenet" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 msgid "Output Resampling" @@ -8418,16 +8686,16 @@ msgstr "Kimeneti mintavételezés" msgid "Output Resampling:" msgstr "Kimeneti mintavételezés:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Felülírva" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Bemeneti fe&lvétel lejátszása..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8436,15 +8704,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: 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:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG tömörítés szintje:" @@ -8452,11 +8720,11 @@ msgstr "PNG tömörítés szintje:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG képfájl (*.png);; Minden fájl (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8469,11 +8737,11 @@ msgstr "Irányító" msgid "Pads" msgstr "Irányítók" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Paraméterek" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8509,7 +8777,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:63 msgid "Patch name" -msgstr "" +msgstr "Patch név" #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:70 msgid "Patches" @@ -8524,17 +8792,21 @@ msgstr "Útvonal:" msgid "Paths" msgstr "Elérési utak" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Szünet" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Szünet a videó végén" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Pause on Focus Loss" -msgstr "" +msgstr "Szünet fókuszvesztéskor" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:75 msgid "Pause on Panic" @@ -8567,41 +8839,41 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Képpont alapú megvilágítás" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" -msgstr "" +msgstr "Online rendszerfrissítés végrehajtása" #: Source/Core/DolphinQt/GameList/GameList.cpp:432 msgid "Perform System Update" msgstr "Rendszerfrissítés végrehajtása" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" -msgstr "" +msgstr "Teljesítménystatisztikák" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Fizikai" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8617,12 +8889,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Indítás" @@ -8634,7 +8906,7 @@ msgstr "Indítás / Felvétel" msgid "Play Recording" msgstr "Felvétel lejátszása" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8644,29 +8916,29 @@ msgstr "Visszajátszási beállítások" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 msgid "Player" -msgstr "" +msgstr "Játékos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8675,7 +8947,8 @@ msgstr "" msgid "Players" msgstr "Játékosok" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Játékidő:" @@ -8687,23 +8960,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8712,7 +8989,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8733,11 +9010,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Egyedi textúrák előzetes lehívása" @@ -8745,11 +9022,11 @@ msgstr "Egyedi textúrák előzetes lehívása" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8774,7 +9051,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8789,7 +9066,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Előző játékos profil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Előző meccs" @@ -8800,7 +9077,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8812,7 +9089,7 @@ msgstr "Privát" msgid "Private and Public" msgstr "Privát és Nyilvános" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Probléma" @@ -8846,8 +9123,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Haladás" @@ -8855,11 +9132,11 @@ msgstr "Haladás" msgid "Public" msgstr "Nyilvános" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Játéklista gyorsítótár ürítése" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8879,14 +9156,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Kérdés" @@ -8907,19 +9184,19 @@ msgstr "R" msgid "R-Analog" msgstr "Jobb analóg" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "KÉSZ" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "FUT" @@ -8932,11 +9209,11 @@ msgstr "" msgid "Range" msgstr "Tartomány" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Tartomány vége:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Tartomány eleje:" @@ -8948,7 +9225,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8960,14 +9241,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8988,10 +9269,15 @@ msgstr "Valódi Balance Board" msgid "Real Wii Remote" msgstr "Valódi Wii Remote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9005,7 +9291,7 @@ msgstr "Rögzítés" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Rögzítés" @@ -9040,7 +9326,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org állapot:" @@ -9048,14 +9334,14 @@ msgstr "Redump.org állapot:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Frissítés" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Jelenlegi értékek frissítése" @@ -9063,12 +9349,12 @@ msgstr "Jelenlegi értékek frissítése" msgid "Refresh Game List" msgstr "Játéklista frissítése" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" "Sikertelen frissítés. Kérjük, futtasd a játékot egy kicsit és próbáld újra." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Jelenlegi értékek frissítve." @@ -9077,8 +9363,8 @@ msgstr "Jelenlegi értékek frissítve." msgid "Refreshing..." msgstr "Frissítés..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Régió" @@ -9107,7 +9393,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Törlés" @@ -9124,7 +9410,7 @@ msgstr "" msgid "Remove Tag..." msgstr "Címke eltávolítása..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Címke eltávolítása" @@ -9135,20 +9421,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" -msgstr "" +msgstr "Szimbólum átnevezése" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9164,23 +9450,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Alapbeállítások" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Összes visszaállítása" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Eredmények visszaállítása" @@ -9208,6 +9493,10 @@ msgstr "Nézet visszaállítása" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9224,7 +9513,7 @@ msgstr "Újraindítás szükséges" msgid "Restore Defaults" msgstr "Alapértelmezettek visszaállítása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9241,7 +9530,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9290,17 +9579,17 @@ msgstr "" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:31 msgid "Roll Left" -msgstr "" +msgstr "Balra gurulás" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:32 msgid "Roll Right" -msgstr "" +msgstr "Jobbra gurulás" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 msgid "Room ID" -msgstr "" +msgstr "Szoba ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9318,26 +9607,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9353,27 +9668,27 @@ msgstr "Oroszország" msgid "SD Card" msgstr "SD kártya" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: 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:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: 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:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD kártya beállítások" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:186 msgid "SD Root:" -msgstr "" +msgstr "SD gyökér:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9386,7 +9701,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9394,11 +9709,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9408,11 +9723,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "K&ód mentése" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Á&llapot mentése" @@ -9425,7 +9740,6 @@ msgstr "Biztonságos" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9435,9 +9749,17 @@ msgstr "Mentés" msgid "Save All" msgstr "Összes mentése" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9446,24 +9768,24 @@ msgid "Save FIFO log" msgstr "FIFO napló mentése" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Fájl mentése ide" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9473,15 +9795,15 @@ msgstr "Legrégebbi állapot mentése" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:342 msgid "Save Preset" -msgstr "" +msgstr "Előbeállítás mentése" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 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/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Állapot mentése" @@ -9525,23 +9847,23 @@ msgstr "Állapot mentése, foglalat 8" msgid "Save State Slot 9" msgstr "Állapot mentése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Állapot mentése fájlba" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Állapot mentése a legrégebbi foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Állapot mentése a választott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Állapot mentése a foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9549,48 +9871,48 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Állapot mentése és betöltése" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:68 msgid "Save as Preset..." -msgstr "" +msgstr "Mentés előbeállításként..." #: Source/Core/DolphinQt/Config/InfoWidget.cpp:183 msgid "Save as..." msgstr "Mentés másként..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" -msgstr "" +msgstr "Mentés a ROM-mal azonos könyvtárba" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save to Selected Slot" -msgstr "" +msgstr "Mentés a kiválasztott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" -msgstr "" +msgstr "Mentés foglalatba %1 - %2" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Save..." @@ -9600,7 +9922,7 @@ msgstr "Mentés..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Mentések:" @@ -9612,26 +9934,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Méretezett EFB másolat" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Pillanatkép" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Keresés" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9639,17 +9961,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Keresés az almappákban" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Keresés és szűrés" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Utasítás keresése" @@ -9657,11 +9979,11 @@ msgstr "Utasítás keresése" msgid "Search games..." msgstr "Játékok keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Keresési utasítás" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Keresés:" @@ -9681,7 +10003,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Biztonsági beállítások" @@ -9689,28 +10011,36 @@ msgstr "Biztonsági beállítások" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Kimentési útvonal kiválasztása" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Exportálási könyvtár kiválasztása" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "GBA BIOS kiválasztása" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "GBA ROM kiválasztása" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9730,15 +10060,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Skylander fájl kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Foglalat kiválasztása %1 - %2" @@ -9746,7 +10076,7 @@ msgstr "Foglalat kiválasztása %1 - %2" msgid "Select State" msgstr "Állapot kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Állapot kiválasztása, foglalat" @@ -9805,15 +10135,15 @@ msgstr "Válassz egy könyvtárat" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Válassz egy fájlt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9821,11 +10151,11 @@ msgstr "" msgid "Select a Game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Válassz egy fájlt" @@ -9833,19 +10163,19 @@ msgstr "Válassz egy fájlt" msgid "Select a game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9853,12 +10183,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "Virtuális SD kártya gyökér kiválasztása" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Válassz mentési fájlt" @@ -9874,7 +10204,7 @@ msgstr "Válaszd ki, hova szeretnéd menteni a konvertált képeket." msgid "Selected Font" msgstr "Kiválasztott betűtípus" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "A megadott vezérlő profil nem létezik" @@ -9886,26 +10216,45 @@ msgstr "A megadott vezérlő profil nem létezik" 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:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9917,18 +10266,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9942,7 +10302,7 @@ msgstr "" msgid "Send" msgstr "Küldés" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Érzékelősáv helyzete:" @@ -9966,16 +10326,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "A szerver elutasította az átjárási kérelmet" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "&Érték beállítása" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9991,23 +10347,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" -msgstr "" +msgstr "Szimbólum méret beállítása (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10017,17 +10373,17 @@ msgstr "" "helyett.\n" "Nem biztos, hogy minden játékkal működik." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "A Wii rendszer nyelve." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10039,27 +10395,27 @@ msgstr "" msgid "Settings" msgstr "Beállítások" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: setting.txt fájl nem hozható létre" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Rázás" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:140 msgid "Sharp Bilinear" -msgstr "" +msgstr "Éles bilineáris" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:232 msgid "Shinkansen" @@ -10069,16 +10425,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Sebesség % megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Nap&ló megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Eszközt&ár megjelenítése" @@ -10086,53 +10442,53 @@ msgstr "Eszközt&ár megjelenítése" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Összes megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Ausztrália megjelenítése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Jelenlegi játék megjelenítése Discordon" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL megjelenítése" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Képkockaszámoló megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Franciaország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "GameCube megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Németország megjelenítése" @@ -10144,23 +10500,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Bemeneti kijelző megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Olaszország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "JPN megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Korea megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Eltérési szám megjelenítése" @@ -10168,19 +10524,19 @@ msgstr "Eltérési szám megjelenítése" msgid "Show Language:" msgstr "Nyelv megjelenítése:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Naplózási &beállítások megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay ping mgejelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Hollandia megjelenítése" @@ -10188,32 +10544,36 @@ msgstr "Hollandia megjelenítése" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: 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:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Platformok megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Régiók megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Oroszország megjelenítése" @@ -10221,72 +10581,72 @@ msgstr "Oroszország megjelenítése" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Spanyolország megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Statisztikák megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Rendszeróra megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Tajvan megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "USA megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Ismeretlen megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Világ megjelenítése" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10294,65 +10654,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10362,34 +10728,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Egymás mellett" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Oldalra-tartás tartás" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Oldalra tartás kapcsoló" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10398,7 +10764,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Egyszerűsített kínai" @@ -10415,17 +10781,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Átugrás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10460,24 +10826,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Minden fájl (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10485,10 +10851,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "Skylanders kezelő" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10498,7 +10860,7 @@ msgstr "" msgid "Slot A" msgstr "Foglalat A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Foglalat A:" @@ -10506,7 +10868,7 @@ msgstr "Foglalat A:" msgid "Slot B" msgstr "Foglalat B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Foglalat B:" @@ -10514,7 +10876,7 @@ msgstr "Foglalat B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10538,12 +10900,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Alfabetikus rendezés" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Hang:" @@ -10557,27 +10919,27 @@ msgstr "Spanyolország" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanyol" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Hangszóró pásztázás" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Hangszóró hangerő:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Specifikus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10598,15 +10960,15 @@ msgstr "Sebesség" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10619,25 +10981,28 @@ msgstr "Szabványos vezérlő" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "&NetPlay indítása..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Bemenet rögzítésének indítása" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Felvétel indítása" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Indítás teljes képernyőn" @@ -10651,12 +11016,12 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 msgid "Started game" -msgstr "" +msgstr "Elindított játék" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Állapot" @@ -10666,7 +11031,7 @@ msgstr "Kormánykerék" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10678,13 +11043,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10700,7 +11065,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10709,7 +11074,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Sztereó" @@ -10739,21 +11104,17 @@ msgstr "Kar" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Játék/felvétel leállítása" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Felvétel leállítása" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" -msgstr "" +msgstr "Megállított játék" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:216 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:53 @@ -10783,7 +11144,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Ablakméretűvé nyújtás" @@ -10818,8 +11179,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Siker" @@ -10831,7 +11192,7 @@ msgstr "" #, c-format msgctxt "" msgid "Successfully converted %n image(s)." -msgstr "" +msgstr "%n kép sikeresen konvertálva." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 msgid "Successfully deleted '%1'." @@ -10846,9 +11207,9 @@ msgstr "" msgid "Successfully exported save files" msgstr "Sikeresen exportált mentési fájlok" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" -msgstr "" +msgstr "Tanúsítványok sikeresen kivonva a NAND-ból" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." @@ -10858,12 +11219,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." -msgstr "" +msgstr "Mentett fájl sikeresen importálva." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10874,11 +11235,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Támogatás" @@ -10886,16 +11247,16 @@ msgstr "Támogatás" msgid "Supported file formats" msgstr "Támogatott fájlformátumok" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Térhangzás" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Felfüggesztve" @@ -10905,12 +11266,12 @@ msgstr "Szemcsere" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10921,7 +11282,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Lengetés" @@ -10935,34 +11296,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" -msgstr "" +msgstr "Szimbólum neve:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10988,7 +11336,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11004,27 +11352,27 @@ msgstr "Gecko kódok szinkronizálása..." #: Source/Core/Core/NetPlayClient.cpp:1050 msgid "Synchronizing save data..." -msgstr "" +msgstr "Mentett adatok szinkronizálása..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Rendszer nyelve:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS eszközök" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Címkék" @@ -11034,7 +11382,7 @@ msgstr "Címkék" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11042,15 +11390,15 @@ msgstr "" msgid "Taiwan" msgstr "Tajvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Pillanatkép készítése" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11058,7 +11406,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11066,6 +11414,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11075,7 +11429,7 @@ msgstr "Textúra gyorsítótár" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11087,7 +11441,7 @@ msgstr "Textúraszűrés" msgid "Texture Filtering:" msgstr "Textúraszűrés:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Textúra formátum átfedés" @@ -11110,7 +11464,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11124,13 +11478,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11141,11 +11495,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11178,6 +11532,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11195,7 +11556,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "A behelyezni próbált lemez nem található." @@ -11207,25 +11568,25 @@ msgstr "" #: Source/Core/DolphinQt/WiiUpdate.cpp:34 msgid "The emulated Wii console has been updated." -msgstr "" +msgstr "Az emulált Wii konzol frissítve lett." #: Source/Core/DolphinQt/WiiUpdate.cpp:39 msgid "The emulated Wii console is already up-to-date." -msgstr "" +msgstr "Az emulált Wii konzol már naprakész." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "A megadott MAC-cím érvénytelen." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11233,7 +11594,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "A kifejezés szintaxis hibát tartalmaz." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11249,7 +11610,7 @@ msgstr "" "A fájl már létezik: %1.\n" "Le szeretnéd cserélni?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11265,7 +11626,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11276,7 +11637,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:573 +#: 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 " @@ -11333,9 +11694,9 @@ msgstr "A hashek nem egyeznek!" msgid "The hashes match!" msgstr "A hashek megegyeznek!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11349,11 +11710,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11367,8 +11728,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11395,12 +11756,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "A kapott dekódolt AR kód nem tartalmaz sorokat." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11434,7 +11795,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "A megadott fájl \"{0}\" nem létezik." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11449,11 +11810,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11461,15 +11822,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11492,7 +11853,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11518,14 +11879,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Nincs mit visszavonni!" @@ -11561,19 +11927,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: 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:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Ez a WAD nem indítható." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Ez a WAD érvénytelen." @@ -11690,6 +12056,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11702,11 +12072,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11719,7 +12089,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11727,7 +12097,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11750,6 +12120,13 @@ 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 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11764,11 +12141,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Szálak" @@ -11776,12 +12153,12 @@ msgstr "Szálak" msgid "Threshold" msgstr "Küszöbérték" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Billenés" @@ -11795,10 +12172,10 @@ msgstr "" msgid "Timed Out" msgstr "Lejárt az idő" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Cím" @@ -11812,7 +12189,7 @@ msgstr "Eddig:" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Teljes képernyő kapcsoló" @@ -11837,7 +12214,7 @@ msgid "Toggle Aspect Ratio" msgstr "Képarány kapcsoló" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Töréspont kapcsoló" @@ -11889,15 +12266,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Sikertelen tokenizálás." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Eszköztár" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Fent" @@ -11905,9 +12286,8 @@ msgstr "Fent" msgid "Top-and-Bottom" msgstr "Egymás alatt" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11944,28 +12324,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Hagyományos kínai" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12002,26 +12382,26 @@ msgid "Triggers" msgstr "Ravaszok" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Típus" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "ISMERETLEN" @@ -12033,7 +12413,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB eszköz emuláció" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB emuláció" @@ -12045,20 +12425,20 @@ msgstr "USB emulációs eszközök" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB engedélyezési hiba" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12066,7 +12446,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12075,7 +12455,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12087,11 +12467,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "Nem lehet módosítani a Skylander-t!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Nem sikerült megnyitni a fájlt." @@ -12111,7 +12491,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Nem sikerült beolvasni a fájlt." @@ -12134,15 +12514,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Állapot betöltésének visszavonása" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Állapot mentésének visszavonása" @@ -12160,11 +12540,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Egyesült Államok" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12175,12 +12555,13 @@ msgstr "Egyesült Államok" msgid "Unknown" msgstr "Ismeretlen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Ismeretlen DVD parancs {0:08x} - végzetes hiba" @@ -12204,11 +12585,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" -msgstr "" +msgstr "Ismeretlen Skylander típus!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12216,7 +12597,7 @@ msgstr "" msgid "Unknown author" msgstr "Ismeretlen szerző" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Ismeretlen adattípus" @@ -12224,9 +12605,9 @@ msgstr "Ismeretlen adattípus" msgid "Unknown disc" msgstr "Ismeretlen lemez" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." -msgstr "" +msgstr "Ismeretlen hiba lépett fel." #: Source/Core/Core/NetPlayClient.cpp:1987 msgid "Unknown error {0:x}" @@ -12244,16 +12625,18 @@ msgstr "Ismeretlen üzenet érkezett az alábbi azonosítóval: {0}" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Ismeretlen(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Ismeretlen(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Végtelen" @@ -12286,22 +12669,22 @@ msgid "Unpacking" msgstr "Kicsomagolása" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" -msgstr "" +msgstr "Mentetlen változtatások" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12363,23 +12746,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Függőleges tartás" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Függőleges kapcsoló" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Használati statisztika-jelentés beállítások" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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." @@ -12391,15 +12774,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Veszteségmentes kodek használata (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 mód használata (EuRGB60)" @@ -12407,7 +12790,7 @@ msgstr "PAL60 mód használata (EuRGB60)" msgid "Use Panic Handlers" msgstr "Hibakezelők használata" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12426,43 +12809,18 @@ msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" "Egyetlen mélységpuffert használ mindkét szemhez. Néhány játékhoz szükséges." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Fizikai címek használata" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12494,21 +12852,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12516,31 +12874,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Segédprogram" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync" @@ -12548,11 +12906,11 @@ msgstr "V-Sync" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Érték" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12560,17 +12918,17 @@ msgstr "" msgid "Value:" msgstr "Érték:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Jármű" @@ -12586,16 +12944,16 @@ msgstr "Rézletesség" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12609,9 +12967,9 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" -msgstr "" +msgstr "Függőleges látótér (FOV)" #. i18n: Refers to a positional offset applied to an emulated wiimote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:39 @@ -12623,12 +12981,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12636,14 +12994,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Hangerő" @@ -12663,31 +13021,31 @@ msgstr "Hangerő fel" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD fájlok (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "VÁRAKOZÁS" @@ -12726,12 +13084,12 @@ msgstr "WFS útvonal:" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Várakozás az első vizsgálatra..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12742,7 +13100,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12764,7 +13122,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Figyelem" @@ -12836,7 +13194,7 @@ msgstr "Figyelés" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Víz" @@ -12853,7 +13211,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12861,7 +13219,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12869,7 +13227,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Engedélyezett USB átjáró eszközök" @@ -12893,7 +13251,7 @@ msgstr "Wii Menü" msgid "Wii NAND Root:" msgstr "Wii NAND gyökér:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12901,7 +13259,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12919,7 +13277,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12939,7 +13297,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12947,11 +13305,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12961,11 +13319,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Ablakméret" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Sortörés" @@ -12979,10 +13349,14 @@ msgstr "Világ" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -13010,11 +13384,11 @@ msgstr "Ablakba írás" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 msgid "Wrong disc number" -msgstr "Hibás lemezszám" +msgstr "Helytelen lemezszám" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 msgid "Wrong hash" -msgstr "Hibás hash" +msgstr "Helytelen hash" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 msgid "Wrong region" @@ -13022,7 +13396,15 @@ msgstr "Helytelen régió" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 msgid "Wrong revision" -msgstr "Hibás revízió" +msgstr "Helytelen revízió" + +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +msgid "Wrote to \"{0}\"." +msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 @@ -13032,11 +13414,11 @@ msgstr "Hibás revízió" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF regiszter " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13071,14 +13453,14 @@ msgstr "Igen" msgid "Yes to &All" msgstr "&Igen mindre" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13176,7 +13558,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13194,29 +13576,33 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 kód nem támogatott" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" -msgstr "" +msgstr "[%1, %2] és [%3, %4]" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:292 msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" -msgstr "" +msgstr "bármilyen érték" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96 msgid "auto" @@ -13227,27 +13613,27 @@ msgstr "automatikus" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:30 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:143 msgid "cm" -msgstr "" +msgstr "cm" #: Source/Core/VideoBackends/D3D12/DX12Context.cpp:108 msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll nem tölthető be." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "alapértelmezett" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13255,31 +13641,35 @@ msgstr "" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "egyenlő" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "nagyobb, mint" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" -msgstr "nagyobb vagy egyenlő" +msgstr "nagyobb vagy egyenlő, mint" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "kisebb, mint" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" -msgstr "kisebb vagy egyenlő" +msgstr "kisebb vagy egyenlő, mint" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "nem egyenlő" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "legutóbbi érték" @@ -13289,7 +13679,7 @@ msgstr "legutóbbi érték" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13299,13 +13689,13 @@ msgstr "" msgid "none" msgstr "nincs" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "ki" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "be" @@ -13322,16 +13712,20 @@ msgstr "" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "ez az érték:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13346,11 +13740,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13385,7 +13779,7 @@ msgstr "| Vagy" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13396,8 +13790,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/it.po b/Languages/po/it.po index ffa9e97d11f8..ec007989ace9 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -70,8 +70,8 @@ msgstr "$ Variabile utente" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -92,19 +92,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -125,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (predefinito)" @@ -167,6 +168,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 non supporta questa funzionalità sul tuo sistema." @@ -193,7 +199,7 @@ msgstr "%1 è entrato" msgid "%1 has left" msgstr "%1 è uscito" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -201,7 +207,7 @@ msgstr "" "%1 ha sbloccato %2/%3 achievement (%4 hardcore) del valore di %5/%6 punti " "(%7 hardcore)" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha sbloccato %2/%3 achievement del valore di %4/%5 punti" @@ -217,12 +223,12 @@ msgstr "%1 è in modalità golf" msgid "%1 is playing %2" msgstr "%1 sta giocando a %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -239,7 +245,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%" @@ -247,26 +253,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "Il valore di %1 è stato usato" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -304,20 +310,20 @@ msgstr "%1x Nativo (%2x%3) per %4" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "Non è stato possibile accede a %n indirizzo/i nella memoria emulata." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "Indirizzi rimanenti: %n" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -327,23 +333,23 @@ msgstr "Indirizzi rimossi: %n" msgid "& And" msgstr "& And" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&A proposito di..." @@ -351,12 +357,12 @@ msgstr "&A proposito di..." msgid "&Add Memory Breakpoint" msgstr "&Aggiungi punto di interruzione dei dati" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Aggiungi nuovo codice..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Aggiungi funzione" @@ -364,27 +370,27 @@ msgstr "&Aggiungi funzione" msgid "&Add..." msgstr "&Aggiungi..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Impostazioni &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Aggiornamento automatico:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Finestra senza bordi" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Punti di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -392,15 +398,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Annulla" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Gestore trucchi" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Controlla la presenza di aggiornamenti..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Pulisci simboli" @@ -408,19 +414,24 @@ msgstr "&Pulisci simboli" msgid "&Clone..." msgstr "&Clona..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Codice" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Connesso" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Impostazioni &Controller" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Copia indirizzo" @@ -428,7 +439,7 @@ msgstr "&Copia indirizzo" msgid "&Create..." msgstr "&Nuovo..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Elimina" @@ -445,9 +456,9 @@ msgstr "&Elimina espressione di controllo" msgid "&Delete Watches" msgstr "&Elimina espressioni di controllo" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Modifica codice..." @@ -455,23 +466,23 @@ msgstr "&Modifica codice..." msgid "&Edit..." msgstr "&Modifica..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Espelli disco" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulazione" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Esporta" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Esporta salvataggio di gioco..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Esporta stato..." @@ -479,55 +490,53 @@ msgstr "&Esporta stato..." msgid "&Export as .gci..." msgstr "&Esporta come .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&File" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Avanza per fotogramma" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&Impostazioni camera libera" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Genera simboli da" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Repository &GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Vai all'inizio della funzione" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Impostazioni video" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Aiuto" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Impostazioni tasti di scelta rapida" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importa" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Importa salvataggio di gioco..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importa stato..." @@ -535,19 +544,19 @@ msgstr "&Importa stato..." msgid "&Import..." msgstr "&Importa..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Base Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Inserisci blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Blending Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -555,15 +564,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Lingua:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Carica stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Carica mappa dei simboli" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Carica file all'indirizzo corrente" @@ -573,23 +586,23 @@ msgstr "&Carica file all'indirizzo corrente" msgid "&Lock Watches" msgstr "&Blocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Blocca widget" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Filmato" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Muto" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Network" @@ -598,23 +611,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Apri..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opzioni" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Patch funzioni HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Gioca" @@ -622,15 +635,15 @@ msgstr "&Gioca" msgid "&Properties" msgstr "&Proprietà" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Modalità sola-lettura" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Aggiorna elenco" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registri" @@ -638,41 +651,45 @@ msgstr "&Registri" msgid "&Remove" msgstr "&Rimuovi" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Rimuovi codice" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Rinomina simbolo" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Resetta" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Gestione Resource Pack" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Salva mappa dei simboli" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "&Scansiona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Limite velocità" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Arresta" @@ -680,15 +697,19 @@ msgstr "&Arresta" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Thread" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Strumenti" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&Rimuovi ROM" @@ -698,17 +719,17 @@ msgstr "&Rimuovi ROM" msgid "&Unlock Watches" msgstr "&Sblocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Espressione di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Sito Web" @@ -720,11 +741,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sì" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' non trovato, non sono stati generati nomi dei simboli" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' non trovato, ora cercherò nomi di funzioni comuni" @@ -740,7 +761,7 @@ msgstr "(Luce)" msgid "(System)" msgstr "(Sistema)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(host)" @@ -748,7 +769,7 @@ msgstr "(host)" msgid "(off)" msgstr "(nessuno)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -768,15 +789,15 @@ msgstr ", Virgola" msgid "- Subtract" msgstr "- Sottrai" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Sconosciuto--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -787,12 +808,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Dividi" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -804,7 +825,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blocchi)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -812,11 +833,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -828,17 +849,17 @@ msgstr "16 Mbit (251 blocchi)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "Signed Integer 16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "Unsigned Integer 16-bit" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -850,11 +871,11 @@ msgstr "Anisotropico 16x" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -866,7 +887,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "Anisotropico 2x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -878,25 +899,25 @@ msgstr "32 Mbit (507 blocchi)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "Float 32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "Signed Integer 32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -910,11 +931,11 @@ msgstr "Profondità 3D" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -922,7 +943,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocchi)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -938,7 +959,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "Anisotropico 4x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -950,22 +971,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blocchi)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "Float 64-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "Signed Integer 64-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "Unsigned Integer 64-bit" @@ -973,11 +994,11 @@ msgstr "Unsigned Integer 64-bit" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -989,13 +1010,13 @@ msgstr "8 Mbit (123 blocchi)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "Signed Integer 8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "Unsigned Integer 8-bit" @@ -1011,7 +1032,7 @@ msgstr "Anisotropico 8x" msgid "< Less-than" msgstr "< Minore-di" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1024,11 +1045,11 @@ msgid "Disabled in Hardcore Mode." msgstr "" "Disabilitato in Modalità Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1067,12 +1088,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Maggiore-di" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Una sessione NetPlay è già in corso!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1089,7 +1110,7 @@ msgstr "" "Non sarà possibile ripristinare la versione precedente dopo l'installazione " "del WAD. Continuare?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Un disco è già in inserimento." @@ -1101,12 +1122,12 @@ msgstr "" "Una serie di funzionalità per rendere i colori più accurati e abbinati allo " "spazio di colori per cui i giochi Wii e GC sono stati pensati." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1128,6 +1149,10 @@ msgstr "" "La sincronizzazione è possibile soltanto durante l'esecuzione di un gioco " "Wii." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1163,7 +1188,7 @@ msgstr "" "non funzionare correttamente.\n" "Usalo a tuo rischio e pericolo.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Codice AR" @@ -1172,8 +1197,8 @@ msgstr "Codice AR" msgid "AR Codes" msgstr "Codici AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1187,7 +1212,7 @@ msgid "About Dolphin" msgstr "A proposito di Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Accelerometro" @@ -1206,7 +1231,7 @@ msgid "Achievement Settings" msgstr "Impostazioni achievement" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Achievement" @@ -1312,19 +1337,19 @@ msgstr "Attiva chat NetPlay" msgid "Active" msgstr "Attivo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Statuine Infinity attive:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Coda thread attivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Thread attivi" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adattatore" @@ -1332,7 +1357,7 @@ msgstr "Adattatore" msgid "Adapter Detected" msgstr "Rilevato adattatore" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adattatore:" @@ -1342,7 +1367,7 @@ msgstr "Adattatore:" msgid "Add" msgstr "Aggiungi" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Aggiungi &punto di interruzione" @@ -1371,51 +1396,48 @@ msgstr "Aggiungi un punto di interruzione dei dati" msgid "Add memory &breakpoint" msgstr "Aggiungi punto di interruzione dei &dati" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Aggiungi &espressione di controllo" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Aggiungi..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Indirizzo" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Spazio degli indirizzi" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Spazio di indirizzo per stato CPU" @@ -1505,12 +1527,12 @@ msgid "Advance Game Port" msgstr "Porta gioco Advance" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avanzate" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Impostazioni avanzate" @@ -1525,38 +1547,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"Influenza come l'output del gioco viene scalato alla risoluzione della " -"finestra.
Le prestazioni dipendono soprattutto dal numero di " -"campionamento usati da ogni metodo.
Paragonato a SSAA, il ricampionamento " -"è utile se la risoluzione della
finestra di output non è un multiplo " -"della risoluzione d'emulazione nativa.

Predefinito - [il più " -"rapido]
Campionatore bilineare interno alla GPU senza correzione gamma." -"
Questa opzione potrebbe venire ignorata se la correzione gamma è forzata." -"

Bilineare - [4 campionamenti]
Interpolazione lineare con " -"correzione gamma tra pixel.

Bicubica - [16 " -"campionamenti]
Interpolazione cubica con correzione gamma tra pixel." -"
Buona quando si scala tra risoluzioni vicine, come 1080p e 1440p.
Ci " -"sono diverse varianti:
B-Spline: Sfocata, ma evita gli artefatti " -"di lobing
Mitchell-Netravali: Buona via di mezzo tra la sfocatura " -"e il lobing
Catmull-Rom: Nitido, ma può causare artefatti di " -"lobing

Bilineare Netto - [1-4 campionature]
Similmente a " -"\"Più Vicino\", mantiene un'aspetto nitido,
ma evita lo shimmering grazie " -"al blending.
Migliore con giochi 2D a basse risoluzioni." -"

Campionamento ad Area - [fino a 324 campionamenti]
Soppesa " -"i pixel in base alla percentuale d'area che occupano. Con correzione gamma." -"
Migliore per downscalare a più del 2x.

Nel " -"dubbio, seleziona 'Predefinito'." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1564,16 +1565,16 @@ msgstr "Africa" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Aria" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Allineato alla dimensione del tipo di dato" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Tutti" @@ -1587,11 +1588,11 @@ msgid "All Double" msgstr "Tutto Double" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: 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 "Tutti i file" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Tutti i file (*)" @@ -1608,7 +1609,7 @@ msgstr "Tutti i file (*)" msgid "All Float" msgstr "Tutto Float" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tutti i file GC/Wii" @@ -1617,8 +1618,8 @@ msgstr "Tutti i file GC/Wii" msgid "All Hexadecimal" msgstr "Tutto Esadecimale" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tutti i salvataggi di stati di gioco (*.sav *.s##);; Tutti i file (*)" @@ -1630,7 +1631,7 @@ msgstr "Tutto Signed Integer" msgid "All Unsigned Integer" msgstr "Tutto Unsigned Integer" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Tutti i file (*)" @@ -1642,15 +1643,15 @@ 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:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Permetti diverse impostazioni regione" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Permetti report statistiche d'uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Permetti scrittura su scheda SD" @@ -1680,7 +1681,7 @@ msgstr "Sempre" msgid "Always Connected" msgstr "Sempre connesso" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "Sempre in &cima" @@ -1718,15 +1719,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualunque regione" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Accoda signature a" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Accoda ad un fil&e di signature preesistente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "A&pplica file signature..." @@ -1746,7 +1747,7 @@ msgstr "Data Apploader" msgid "Apply" msgstr "Applica" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Applica file di signature" @@ -1778,12 +1779,16 @@ msgstr "Sei sicuro?" msgid "Area Sampling" msgstr "Campionamento ad Area" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Rapporto d'aspetto" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Rapporto d'aspetto:" @@ -1791,7 +1796,7 @@ msgstr "Rapporto d'aspetto:" msgid "Assemble" msgstr "Converti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "Converti istruzione" @@ -1799,7 +1804,7 @@ msgstr "Converti istruzione" msgid "Assembler" msgstr "Assembler" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "File assembly" @@ -1817,7 +1822,7 @@ msgid "" msgstr "" "Almeno due dei file di salvataggio selezionati hanno lo stesso nome interno." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Collega MotionPlus" @@ -1825,11 +1830,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" @@ -1841,12 +1846,12 @@ msgstr "Australia" msgid "Author" msgstr "Autore" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autori" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1854,11 +1859,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplo di 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "Salvataggio automatico" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Impostazioni aggiornamento automatico" @@ -1874,7 +1875,7 @@ msgstr "" "\n" "Seleziona una specifica risoluzione interna." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Ridimensiona automaticamente la finestra" @@ -1882,15 +1883,15 @@ msgstr "Ridimensiona automaticamente la finestra" msgid "Auto-Hide" msgstr "Nascondi automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Individua automaticamente i moduli RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: 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:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1899,18 +1900,18 @@ msgstr "" "interna.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Aggiorna automaticamente i valori correnti" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Ausiliario" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1918,7 +1919,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT errato. Dolphin verrà chiuso." -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1928,31 +1929,35 @@ msgstr "" "un indirizzo MAC Nintendo GameCube valido. Genera un nuovo indirizzo MAC che " "cominci con 00:09:bf oppure 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Registro BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Motore" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motore:" @@ -1968,13 +1973,13 @@ msgstr "Input in background" msgid "Backward" msgstr "All'indietro" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Inserito valore non valido" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Indirizzo non valido." @@ -1982,20 +1987,20 @@ msgstr "Indirizzo non valido." msgid "Bad dump" msgstr "Dump invalido" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Offset non valido." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Valore non valido." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -2015,15 +2020,15 @@ msgstr "Leva" msgid "Base Address" msgstr "Indirizzo base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Priorità base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Impostazioni di base" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Impostazioni di base" @@ -2031,16 +2036,16 @@ msgstr "Impostazioni di base" msgid "Bass" msgstr "Basso" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" "La modalità batch non può essere usata senza indicare che gioco avviare." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batteria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (una volta al mese)" @@ -2064,33 +2069,33 @@ msgstr "Bicubico: Mitchell-Netravali" msgid "Bilinear" msgstr "Bilineare" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Binary SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Binary SSL (lettura)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Binary SSL (scrittura)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"Creazione della statuina vuota fallita su:\n" -"%1, riprova con un personaggio diverso" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Dimensione blocco" @@ -2099,7 +2104,7 @@ msgstr "Dimensione blocco" msgid "Block Size:" msgstr "Dimensione blocco:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blocking" @@ -2128,32 +2133,143 @@ msgstr "" "La modalità ponte Bluetooth è abilitata, ma Dolphin è stato compilato senza " "libusb. La modalità ponte non può essere utilizzata." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Avvia in pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "File di backup NAND BootMII (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "File chiavi BootMii (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Schermo intero senza bordi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Sotto" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Branch" @@ -2192,11 +2308,11 @@ msgstr "Adattatore Broadband (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Adattatore Broadband (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "Impostazioni DNS adattatore Broadband" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Errore adattatore Broadband" @@ -2206,11 +2322,11 @@ msgstr "Errore adattatore Broadband" msgid "Broadband Adapter MAC Address" msgstr "Indirizzo MAC adattatore Broadband" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2245,7 +2361,7 @@ msgstr "Pulsante" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2261,7 +2377,7 @@ msgstr "Pulsante" msgid "Buttons" msgstr "Pulsanti" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "Da: %1" @@ -2271,11 +2387,11 @@ msgstr "Da: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "C&rea file di signature..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Registro CP" @@ -2287,7 +2403,7 @@ msgstr "CPU Emulation Engine:" msgid "CPU Options" msgstr "Opzioni CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2295,7 +2411,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2306,7 +2422,7 @@ msgstr "" "lo stuttering.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Calcola" @@ -2323,11 +2439,11 @@ msgstr "" "grafici.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Calibra" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Calibrazione" @@ -2335,19 +2451,19 @@ msgstr "Calibrazione" msgid "Calibration Period" msgstr "Tempo di calibrazione" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Chiamata display list a %1 con dimensione %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Chiamanti" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Chiamate" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Stack di chiamate" @@ -2356,69 +2472,81 @@ msgid "Camera 1" msgstr "Camera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" "Campo di visione della telecamera (influisce sulla sensibilità del " "puntamento)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "È possibile generare codici AR solo per valori nella memoria virtuale" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "Non può essere ancora modificato!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "Impossibile modificare i cattivi per questo trofeo!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Annulla calibrazione" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Impossibile avanzare nella coda FIFO. Utilizzare l'avanzamento per frame." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Impossibile avviare questo WAD, non è stato possibile installarlo nella NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Impossibile trovare l'IPL GC" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Non è possibile generare un codice AR per questo indirizzo." @@ -2426,19 +2554,21 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 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:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Impossibile avviare il gioco, l'IPL GC non è stato trovato" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Catturato cattivo %1:" @@ -2456,7 +2586,7 @@ msgstr "Centro" msgid "Center Mouse" msgstr "Centra mouse" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Centra e calibra" @@ -2464,7 +2594,7 @@ msgstr "Centra e calibra" msgid "Change &Disc" msgstr "Cambia &disco" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Cambia &disco..." @@ -2472,7 +2602,7 @@ msgstr "Cambia &disco..." msgid "Change Disc" msgstr "Cambia disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Cambia automaticamente disco" @@ -2480,7 +2610,7 @@ msgstr "Cambia automaticamente disco" msgid "Change the disc to {0}" msgstr "Inserire il disco {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2517,7 +2647,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:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "Il personaggio inserito non è valido!" @@ -2529,15 +2659,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editor di codici" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cerca codice" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Gestione codici" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Controlla NAND..." @@ -2545,7 +2675,7 @@ msgstr "Controlla NAND..." msgid "Check for Game List Changes in the Background" msgstr "Controlla cambiamenti nella lista dei giochi in background" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Controlla la presenza di aggiornamenti" @@ -2565,27 +2695,27 @@ msgstr "Checksum" msgid "China" msgstr "Cina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Scegli" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Scegli un file da aprire" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "Scegli un file da aprire o creare" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Scegli file di input prioritario" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Scegli file di input secondario" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Scegli la cartella base GCI" @@ -2612,15 +2742,19 @@ msgstr "Controller tradizionale" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Pulisci" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Pulisci cache" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Pulisci slot" @@ -2628,7 +2762,7 @@ msgstr "Pulisci slot" msgid "Clock Override" msgstr "Override della frequenza" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "&Clona e modifica codice" @@ -2637,37 +2771,21 @@ msgstr "&Clona e modifica codice" msgid "Close" msgstr "Chiudi" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Co&nfigurazione" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Codice" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Tool per diff codice" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Aiuto tool per diff codice" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "Il codice non è stato eseguito" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "Il codice è stato eseguito" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2693,7 +2811,11 @@ msgstr "Correzione colore:" msgid "Color Space" msgstr "Spazio dei colori" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Combina &due file signature..." @@ -2727,7 +2849,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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compila gli shader prima dell'avvio" @@ -2735,9 +2857,9 @@ msgstr "Compila gli shader prima dell'avvio" msgid "Compiling Shaders" msgstr "Compilazione degli shader" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Compressione" @@ -2750,10 +2872,16 @@ msgstr "Livello di compressione:" msgid "Compression:" msgstr "Compressione:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2874,7 +3002,7 @@ msgstr "" "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:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Configurazione" @@ -2907,13 +3035,13 @@ msgstr "Configura output" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Conferma" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Conferma cambio backend" @@ -2921,7 +3049,7 @@ msgstr "Conferma cambio backend" msgid "Confirm on Stop" msgstr "Arresto su conferma" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2932,15 +3060,15 @@ msgstr "Conferma" msgid "Connect" msgstr "Collega" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Collega Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Collega tastiera USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Collega Wii Remote %1" @@ -2960,7 +3088,7 @@ msgstr "Collega Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Collega Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Connetti Wii Remote" @@ -3001,7 +3129,7 @@ msgstr "Controlla modalità golf NetPlay" msgid "Control Stick" msgstr "Control Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Profilo controller" @@ -3025,7 +3153,7 @@ msgstr "Profilo controller 4" msgid "Controller Settings" msgstr "Impostazioni controller" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Controller" @@ -3110,8 +3238,8 @@ msgstr "Convergenza" msgid "Convergence:" msgstr "Convergenza:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Conversione fallita." @@ -3119,9 +3247,9 @@ msgstr "Conversione fallita." msgid "Convert" msgstr "Converti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3129,9 +3257,9 @@ msgstr "Converti ora file in cartella" msgid "Convert File..." msgstr "Converti file..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3154,8 +3282,8 @@ msgstr "" "Vuoi continuare lo stesso?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Conversione in corso..." @@ -3206,15 +3334,15 @@ msgstr "" msgid "Copy" msgstr "Copia" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Copia &funzione" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Copia &esadecimale" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Copia indirizzo" @@ -3222,19 +3350,19 @@ msgstr "Copia indirizzo" msgid "Copy Failed" msgstr "Copia non riuscita" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Copia esadecimale" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Copia valore" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "(&l) Copia riga di codice" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Copia indirizzo tar&get" @@ -3252,6 +3380,11 @@ msgstr "Copia su B" msgid "Core" msgstr "Core" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Correzione spazio colore" @@ -3261,7 +3394,7 @@ msgid "Correct SDR Gamma" msgstr "Correzione gamma SDR" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Costo" @@ -3356,7 +3489,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Impossibile riconoscere il file {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Impossibile salvare i cambiamenti!" @@ -3401,13 +3534,13 @@ msgstr "Impossibile leggere il file." msgid "Country:" msgstr "Paese:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Crea" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Crea file Infinity" @@ -3416,15 +3549,11 @@ msgstr "Crea file Infinity" msgid "Create New Memory Card" msgstr "Crea una nuova Memory Card" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Crea file Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Crea cartella Skylander" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Crea configurazioni per altri dispositivi" @@ -3433,22 +3562,8 @@ msgstr "Crea configurazioni per altri dispositivi" msgid "Create..." msgstr "Crea..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Crea frame dump e screenshot alla risoluzione interna del renderer, invece " -"di utilizzare la dimensione della finestra.

Se il rapporto d'aspetto " -"è widescreen, l'immagine risultante verrà scalata orizzontalmente per " -"mantenerne la risoluzione verticale.

Nel dubbio, " -"lascia deselezionato." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Autore: " @@ -3456,11 +3571,11 @@ msgstr "Autore: " msgid "Critical" msgstr "Critico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Taglia immagine lungo i bordi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3476,11 +3591,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: 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:380 +#: 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, " @@ -3491,15 +3606,15 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Regione corrente" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Valore attuale" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Contesto corrente" @@ -3507,27 +3622,31 @@ msgstr "Contesto corrente" msgid "Current game" msgstr "Gioco corrente" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Thread corrente" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personalizzato" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Spazio degli indirizzi personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: 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:307 +#: 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:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Rapporto d'aspetto personalizzato:" @@ -3539,13 +3658,13 @@ msgstr "Opzioni RTC personalizzato" msgid "Custom:" msgstr "Personalizzato:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Personalizza" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3573,7 +3692,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" @@ -3581,15 +3700,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)" @@ -3615,7 +3734,7 @@ msgstr "Dance Mat" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Buio" @@ -3631,7 +3750,7 @@ msgstr "Partizione dati (%1)" msgid "Data Transfer" msgstr "Trasferimento dati" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Tipo dati" @@ -3664,8 +3783,8 @@ msgstr "Zona morta" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Debugging" @@ -3674,7 +3793,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:" @@ -3721,7 +3840,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" @@ -3733,11 +3852,11 @@ msgstr "Font predefinito" msgid "Default ISO:" msgstr "ISO predefinita:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Thread predefinito" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Posponi invalidazione cache EFB" @@ -3745,7 +3864,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:384 +#: 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 " @@ -3791,26 +3910,53 @@ msgstr "Percentuale profondità:" msgid "Depth:" msgstr "Profondità:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrizione" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Descrizione:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "Descrizione: %1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Scollegato" @@ -3818,7 +3964,7 @@ msgstr "Scollegato" msgid "Detect" msgstr "Rileva" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Individuazione moduli RSO" @@ -3826,7 +3972,7 @@ msgstr "Individuazione moduli RSO" msgid "Deterministic dual core:" msgstr "Dual core deterministico:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (più volte al giorno)" @@ -3835,7 +3981,7 @@ msgid "Device" msgstr "Periferica" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Device PID (es. 0305)" @@ -3844,11 +3990,11 @@ msgid "Device Settings" msgstr "Impostazioni periferica" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3857,11 +4003,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Diff" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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à." @@ -3873,12 +4015,12 @@ msgstr "Connessione diretta" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "Dis&connesso" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Disabilita" @@ -3890,7 +4032,7 @@ msgstr "Disabilita Bounding Box" msgid "Disable Copy Filter" msgstr "Disabilita copia filtro" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Disattiva copie EFB VRAM" @@ -3898,11 +4040,11 @@ msgstr "Disattiva copie EFB VRAM" msgid "Disable Emulation Speed Limit" msgstr "Disabilita limite velocità di emulazione" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Disabilita Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "Disabilita Fastmem Arena" @@ -3910,11 +4052,11 @@ msgstr "Disabilita Fastmem Arena" msgid "Disable Fog" msgstr "Disabilita nebbia" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Disabilita cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "Disabilita grandi mappe degli entry point" @@ -3933,7 +4075,7 @@ msgstr "" "alcuni giochi.

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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.
Nel dubbio, " "lascia deselezionato.
" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4296,7 +4434,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4315,15 +4453,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Olandese" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Esci" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "Copia EFB %1" @@ -4357,7 +4495,7 @@ msgstr "Aggiornamenti anticipati della memoria" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Terra" @@ -4370,7 +4508,7 @@ msgstr "Est Asia" msgid "Edit Breakpoint" msgstr "Modifica punto di interruzione" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Modifica..." @@ -4386,15 +4524,15 @@ msgstr "Effetto" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effettivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Priorità effettiva" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4404,7 +4542,7 @@ msgstr "Espelli disco" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Elemento" @@ -4412,11 +4550,11 @@ msgstr "Elemento" msgid "Embedded Frame Buffer (EFB)" msgstr "Embedded Frame Buffer (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Vuoto" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread dell'emulatore già in esecuzione" @@ -4424,11 +4562,11 @@ msgstr "Thread dell'emulatore già in esecuzione" msgid "Emulate Disc Speed" msgstr "Emula velocità disco" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Emula Base Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Emula Skylander Portal" @@ -4444,7 +4582,7 @@ msgstr "" "Emula la velocità disco dell'hardware reale. Disabilitarlo potrebbe causare " "instabilità. L'impostazione predefinita è Abilitato" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Dispositivi USB emulati" @@ -4467,28 +4605,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Velocità di emulazione" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "L'emulazione deve essere iniziata prima di caricare un file." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "L'emulazione deve essere iniziata prima di salvare un file." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "L'emulazione deve essere iniziata per poter registrare" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Abilita layer di validazione API" @@ -4500,11 +4626,11 @@ msgstr "Abilita medaglie achievement" msgid "Enable Achievements" msgstr "Abilita achievement" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Abilita audio stretching" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Abilita trucchi" @@ -4524,7 +4650,7 @@ msgstr "Abilita UI debugging" msgid "Enable Dual Core" msgstr "Abilita Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Abilita Dual Core (aumenta la velocità)" @@ -4544,7 +4670,7 @@ msgstr "Abilita Achievement Encore" msgid "Enable FPRF" msgstr "Abilita FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Abilita mod grafiche" @@ -4586,6 +4712,10 @@ msgstr "" "disattivazione della Modalità Hardcore durante il gioco ne richiede la " "chiusura prima che possa essere riabilitata nuovamente." +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Abilita classifica" @@ -4599,7 +4729,7 @@ msgstr "Abilita MMU" msgid "Enable Progress Notifications" msgstr "Abilita Notifica Avanzamento" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Abilita scansione progressiva" @@ -4612,11 +4742,11 @@ msgid "Enable Rich Presence" msgstr "Abilita Rich Presence" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Abilita vibrazione" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Abilita screen saver" @@ -4628,15 +4758,15 @@ msgstr "Abilita dati altoparlante" msgid "Enable Unofficial Achievements" msgstr "Abilita achievement non ufficiali" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Abilita report statistiche d'uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Abilita WiiConnect24 tramite WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Abilita wireframe" @@ -4734,7 +4864,7 @@ msgstr "" "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:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4781,7 +4911,7 @@ msgstr "" "meno che non sia assolutamente necessaria.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4793,7 +4923,7 @@ msgstr "" "solo il backend Vulkan ne trarrebbe beneficio.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4820,7 +4950,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à " @@ -4858,7 +4988,7 @@ msgstr "" "Compatibile, OFF = Veloce)

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4870,7 +5000,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:302 +#: 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 " @@ -4882,7 +5012,7 @@ msgstr "" "simboli di debug per gli shader compilati.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4914,7 +5044,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglese" @@ -4923,7 +5053,7 @@ msgstr "Inglese" msgid "Enhancements" msgstr "Miglioramenti" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" "Inserisci l'indirizzo IP del dispositivo con il Client XLink Kai in " @@ -4947,11 +5077,17 @@ msgstr "Inserisci il nuovo indirizzo MAC dell'Adattatore Broadband:" msgid "Enter password" msgstr "Inserisci la password" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Inserisci il server DNS da utilizzare:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Inserisci l'indirizzo del modulo RSO:" @@ -4960,8 +5096,8 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4972,45 +5108,51 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -5020,16 +5162,16 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Errore" @@ -5046,9 +5188,9 @@ msgstr "Errore apertura adattatore: %1" msgid "Error collecting save data!" msgstr "Errore recuperando i salvataggi!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Errore nella conversione del valore" @@ -5062,7 +5204,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Errore durante l'ottenimento della lista delle sessioni: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "Si è verificato un errore durante il caricamento dei texture pack" @@ -5130,7 +5272,7 @@ msgstr "Errore: GBA{0} non è riuscito ad aprire il salvataggio in {1}" msgid "Error: This build does not support emulated GBA controllers" msgstr "Errore: Questa build non supporta i controller GBA emulati" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5138,7 +5280,7 @@ msgstr "" "Errore: Tentativo di accesso ai font Shift JIS, ma non risultano caricati. I " "giochi potrebbero non mostrare correttamente i caratteri, o crashare." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5161,56 +5303,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Esempio:\n" -"Vuoi trovare la funzione eseguita al cambio dei PV.\n" -"1. Avvia la registrazione e gioca evitando la modifica dei PB, quindi premi " -"'Il codice non è stato eseguito'.\n" -"2. Perdi o acquisisci PV, quindi premi 'Il codice è stato eseguito'.\n" -"3. Ripeti i passi 1 o 2 per filtrare ulteriormente i risultati.\n" -"La lista di inclusioni (Il codice è stato eseguito) dovrebbe avere " -"registrazioni brevi basate su quello che vuoi.\n" -"\n" -"Premere 'Il codice è stato eseguito' due volte manterrà le funzioni che sono " -"state eseguite in entrambe le registrazioni. Il numero di esecuzioni verrà " -"aggiornato includendo le esecuzioni accadute nell'ultima registrazione. Le " -"esecuzioni totali riporteranno il numero totale di esecuzioni finché le " -"liste non verranno ripulite con Reset.\n" -"\n" -"Tasto destro -> 'Imposta blr' porrà un blr in cima al simbolo.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Escluso: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Escluso: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershader esclusivi" @@ -5218,7 +5316,7 @@ msgstr "Ubershader esclusivi" msgid "Exit" msgstr "Esci" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Previsto + o chiusa paren." @@ -5226,7 +5324,7 @@ msgstr "Previsto + o chiusa paren." msgid "Expected arguments: " msgstr "Argomenti previsti:" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Prevista chiusa paren." @@ -5238,15 +5336,15 @@ msgstr "Virgola prevista." msgid "Expected end of expression." msgstr "Termine di espressione prevista." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Previsto nome dell'input." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Prevista apri paren." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Inizio di espressione prevista." @@ -5254,11 +5352,11 @@ msgstr "Inizio di espressione prevista." msgid "Expected variable name." msgstr "Prevista nome variabile." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Sperimentale" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Esporta tutti i salvataggi Wii" @@ -5273,7 +5371,7 @@ msgstr "Esportazione non riuscita" msgid "Export Recording" msgstr "Esporta registrazione" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Esporta registrazione..." @@ -5301,14 +5399,14 @@ msgstr "Esporta come .&gcs..." msgid "Export as .&sav..." msgstr "Esporta come .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Esportato/i %n salvataggio/i" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Estensione" @@ -5329,7 +5427,7 @@ msgstr "Esterno" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Estrai certificati da NAND" @@ -5362,12 +5460,12 @@ msgid "Extracting Directory..." msgstr "Estrazione cartella..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Lettore FIFO" @@ -5387,7 +5485,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Impossibile aggiungere il file di signature '%1'" @@ -5395,13 +5493,13 @@ msgstr "Impossibile aggiungere il file di signature '%1'" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "Impossibile richiedere l'interfaccia per il ponte BT: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Fallita rimozione dello Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "Fallita rimozione dello Skylander dallo slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5428,23 +5526,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Fallita creazione del file Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Fallita creazione del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Fallita creazione del file Skylander:\n" -"%1\n" -"(Lo Skylander potrebbe già essere nel portale)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5467,15 +5563,15 @@ msgstr "Fallita la rimozione del file selezionato." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Impossibile disconnettere il driver kernel per il ponte BT: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Download dei codici non riuscito." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Fallito il dump %1: Impossibile aprire il file" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Fallito il dump %1: Impossibile scrivere il file" @@ -5488,7 +5584,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Fallita estrazione dei certificati dalla NAND" @@ -5514,22 +5610,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Impossibile trovare uno o più simboli D3D" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "Impossibile trovare o aprire il file: %1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Importazione di \"%1\" non riuscita." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5537,7 +5629,7 @@ msgstr "" "Fallita l'importazione del salvataggio. Il file sembra corrotto o non è un " "file di salvataggio Wii valido." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5548,7 +5640,7 @@ msgstr "" "ripararla (Strumenti -> Gestisci NAND -> Controlla NAND...), quindi importa " "di nuovo il salvataggio." -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Inizializzazione fallita" @@ -5562,7 +5654,7 @@ msgstr "" "Accertati che la tua scheda video supporti almeno D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Impossibile inizializzare le classi del renderer" @@ -5571,11 +5663,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Fallita installazione del titolo nella NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5583,8 +5675,8 @@ msgstr "" "Fallito l'ascolto sulla porta %1. C'è già un'altra istanza di un server " "NetPlay in esecuzione?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Fallito caricamento del modulo RSO a %1" @@ -5596,19 +5688,21 @@ msgstr "Caricamento d3d11.dll non riuscito" msgid "Failed to load dxgi.dll" msgstr "Caricamento dxgi.dll non riuscito" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Fallita l'apertura del file mappa '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Fallito caricamento del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Fallito caricamento del file Skylander(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Impossibile caricare l'eseguibile in memoria." @@ -5620,13 +5714,21 @@ msgstr "" "Impossibile caricare {0}. Se stai utilizzando Windows 7, prova a installare " "l'aggiornamento KB4019990." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Impossibile modificare lo Skylander!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Fallita l'apertura di '%1'" @@ -5634,6 +5736,10 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Apertura del file di configurazione non riuscita" @@ -5664,33 +5770,33 @@ msgstr "" msgid "Failed to open file." msgstr "Impossibile aprire il file." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Impossibile avviare il server" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Fallita apertura del file Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Fallita apertura del file Infinity(%1)!\n" -"Il file potrebbe già essere in uso sulla base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Fallita apertura del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Fallita apertura del file Skylander(%1)!\n" -"Il file potrebbe già essere in uso sul portale." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5712,7 +5818,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Fallito parsing dei dati di Redump.org" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "Non è stato possibile convertire il valore in input nel tipo indicato." @@ -5735,39 +5841,35 @@ 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Fallita lettura del file Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Fallita lettura del file Infinity(%1)!\n" -"Il file è troppo piccolo." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Fallita lettura del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Fallita lettura del file Skylander(%1)!\n" -"Il file è troppo piccolo." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"Impossibile leggere il contenuto del file\n" -"\n" -"\"%1\"" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5809,31 +5911,31 @@ msgstr "" "Impossibile resettare la cartella di reindirizzamento NetPlay. Controlla di " "avere i corretti permessi di scrittura." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Fallito il salvataggio del log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Impossibile salvare la mappa del codice nel percorso '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "Fallito il salvataggio del file su: %1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Impossibile salvare il file di signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Impossibile salvare la mappa dei simboli nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5890,7 +5992,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Errore" @@ -5898,11 +6000,11 @@ msgstr "Errore" msgid "Fair Input Delay" msgstr "Ritardo input imparziale" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Regione alternativa" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Regione alternativa:" @@ -5915,7 +6017,7 @@ msgstr "Rapida" msgid "Fast Depth Calculation" msgstr "Calcolo rapido della profondità" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5928,11 +6030,11 @@ msgstr "" msgid "Field of View" msgstr "Campo visivo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "Statuina numero:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "Tipo di figura" @@ -5940,9 +6042,9 @@ msgstr "Tipo di figura" msgid "File Details" msgstr "Dettagli del file" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Formato del file" @@ -5954,20 +6056,20 @@ msgstr "Formato del file:" msgid "File Info" msgstr "Info file" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nome file" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Percorso:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Dimensioni del file" @@ -5975,7 +6077,7 @@ msgstr "Dimensioni del file" msgid "File Size:" msgstr "Dimensione del file:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Il file non contiene codici." @@ -6014,15 +6116,15 @@ msgstr "Filesystem" msgid "Filters" msgstr "Filtri" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Trova &successivo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Trova &precedente" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Termina calibrazione" @@ -6036,7 +6138,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Fuoco" @@ -6052,31 +6154,32 @@ msgstr "Ripara checksum" msgid "Fix Checksums Failed" msgstr "Ripara checksum falliti" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flag" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "(b) Segui flusso" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Per ottenere un risultato migliore, muovi lentamente l'input in ogni " @@ -6090,7 +6193,7 @@ msgstr "" "Per istruzioni sull'installazione, consulta questa pagina." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -6098,7 +6201,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" @@ -6106,7 +6209,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" @@ -6138,11 +6241,11 @@ msgstr "Forza ascolto su porta:" msgid "Force Nearest" msgstr "Forza adiacente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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." @@ -6189,17 +6292,17 @@ msgstr "In avanti" msgid "Forward port (UPnP)" msgstr "Inoltra porta (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Trovati %1 risultati per \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "Indirizzi trovatI: %n" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Frame %1" @@ -6220,7 +6323,7 @@ msgstr "Aumenta velocità avanzamento frame" msgid "Frame Advance Reset Speed" msgstr "Reimposta velocità avanzamento frame" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Dumping dei frame" @@ -6228,7 +6331,7 @@ msgstr "Dumping dei frame" msgid "Frame Range" msgstr "Intervallo fotogramma" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "L'immagine/i del fotogramma '{0}' esiste già. Vuoi sovrascrivere?" @@ -6252,7 +6355,7 @@ msgstr "Blocchi liberi: %1" msgid "Free Look Control Type" msgstr "Tipo controlli camera libera" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Controller camera libera %1" @@ -6287,7 +6390,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:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francese" @@ -6311,7 +6414,7 @@ msgstr "Da" msgid "From:" msgstr "Da:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Schermo intero" @@ -6343,7 +6446,7 @@ msgstr "Core GBA" msgid "GBA Port %1" msgstr "Porta GBA %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "Impostazioni GBA" @@ -6482,20 +6585,20 @@ msgstr "" "GPU: La tua scheda video supporta OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Gioco" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Schede di gioco Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6503,7 +6606,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:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance sulla porta %1" @@ -6531,8 +6634,8 @@ msgstr "Gamma di gioco" msgid "Game Gamma:" msgstr "Gamma di gioco:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID gioco" @@ -6597,11 +6700,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Controller GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Controller GameCube su porta %1" @@ -6609,11 +6712,11 @@ msgstr "Controller GameCube su porta %1" msgid "GameCube Controllers" msgstr "Controller GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Tastiera GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Tastiera GameCube su porta %1" @@ -6626,11 +6729,11 @@ msgid "GameCube Memory Cards" msgstr "Memory Card GameCube" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Memory Card GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "Microfono GameCube slot %1" @@ -6658,7 +6761,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codici Gecko" @@ -6668,35 +6771,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Generale" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Generale e opzioni" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Genera codice Action Replay" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Genera una nuova identità statistiche" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Codice AR generato." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tedesco" @@ -6708,18 +6811,18 @@ msgstr "Germania" msgid "GetDeviceList failed: {0}" msgstr "Fallita GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "Gigante" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Giganti" @@ -6732,8 +6835,8 @@ msgid "Good dump" msgstr "Buon dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Video" @@ -6777,7 +6880,7 @@ msgstr "Verde sinistro" msgid "Green Right" msgstr "Verde destro" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Vista a griglia" @@ -6786,7 +6889,7 @@ msgstr "Vista a griglia" msgid "Guitar" msgstr "Chitarra" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Giroscopio" @@ -6814,36 +6917,35 @@ msgstr "HDR Post-Processing" msgid "Hacks" msgstr "Hack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Testa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Aiuto" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Livello eroe:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Hex Byte String" @@ -6856,7 +6958,11 @@ msgstr "Esadecimale" msgid "Hide" msgstr "Nascondi" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Nascondi tutto" @@ -6872,12 +6978,12 @@ msgstr "Nascondi sessioni incompatibili" msgid "Hide Remote GBAs" msgstr "Nascondi GBA remoti" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6886,14 +6992,8 @@ msgstr "Più alta" msgid "Hit Strength" msgstr "Forza" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Passaggi" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "FOV orizzontale" @@ -6910,7 +7010,7 @@ msgstr "Codice host:" msgid "Host Input Authority" msgstr "Autorità input host" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Dimensione host" @@ -6938,16 +7038,16 @@ msgstr "Autorità input host attivata" msgid "Host with NetPlay" msgstr "Host con NetPlay" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Hostname" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Impostazioni Tasti di Scelta Rapida" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Tasti di scelta rapida" @@ -6956,7 +7056,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:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershader ibridi" @@ -6970,16 +7070,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Sono cosciente del rischio e voglio continuare" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "L'ID inserito non è valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -7020,7 +7120,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilità IR:" @@ -7072,11 +7172,11 @@ msgstr "" "Adatto a giochi a turni dipendenti dalle tempistiche dei controlli, come il " "golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Generazione identità" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -7146,11 +7246,15 @@ msgstr "" msgid "Ignore" msgstr "Ignora" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignora cambiamenti di formato" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Ignora per questa sessione" @@ -7183,7 +7287,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB immediatamente presente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7198,7 +7302,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Importa backup NAND BootMII..." @@ -7213,15 +7317,15 @@ msgstr "Importazione non riuscita" msgid "Import Save File(s)" msgstr "Importa file di salvataggio" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importa salvataggio Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importazione di backup NAND in corso" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7234,15 +7338,6 @@ msgstr "" msgid "In-Game?" msgstr "In gioco?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Incluso: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Incluso: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7256,27 +7351,27 @@ msgstr "" "maggior tempo di salvataggio/caricamento.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "Valore livello eroe non valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "Valore ultimo posizionamento non valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "Valore ultimo reset non valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "Valore soldi non valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "Soprannome non valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "Valore tempo di gioco non valido!" @@ -7321,15 +7416,16 @@ msgstr "Rotazione incrementale" msgid "Incremental Rotation (rad/sec)" msgstr "Rotazione incrementale (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Creatore statuina Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Gestione Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Oggetto Infinity (*.bin);;" @@ -7352,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informazioni" @@ -7367,10 +7463,10 @@ msgstr "Inject" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Input" @@ -7384,20 +7480,26 @@ msgstr "Forza richiesta per l'attivazione" msgid "Input strength to ignore and remap." msgstr "Forza da ignorare e rimappare." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Inserisci &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserisci scheda SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Ispezionato" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7411,7 +7513,7 @@ msgstr "Partizione di installazione (%1)" msgid "Install Update" msgstr "Installa aggiornamento" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Installa WAD..." @@ -7419,11 +7521,13 @@ msgstr "Installa WAD..." msgid "Install to the NAND" msgstr "Installa su NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Istruzione" @@ -7432,7 +7536,7 @@ msgstr "Istruzione" msgid "Instruction Breakpoint" msgstr "Punto di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Istruzione:" @@ -7441,7 +7545,7 @@ msgstr "Istruzione:" msgid "Instruction: %1" msgstr "Istruzione: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7462,19 +7566,19 @@ msgstr "Intensità" msgid "Interface" msgstr "Interfaccia" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Errore Interno LZ4 - Tentata decompressione di {0} byte" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Errore Interno LZ4 - compressione non riuscita" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Errore Interno LZ4 - decompressione non riuscita ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Errore Interno LZ4 - dimensione del payload differente ({0} / {1}))" @@ -7487,7 +7591,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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7495,7 +7599,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:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7503,7 +7607,7 @@ msgstr "" "Errore Interno LZO - impossibile analizzare il cookie di versione e la " "lunghezza della stringa di versione ({0})" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7520,7 +7624,7 @@ msgstr "Risoluzione interna" msgid "Internal Resolution:" msgstr "Risoluzione interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Errore interno durante la generazione del codice AR." @@ -7528,11 +7632,11 @@ msgstr "Errore interno durante la generazione del codice AR." msgid "Interpreter (slowest)" msgstr "Interpreter (il più lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreter Core" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Espressione non valida" @@ -7544,7 +7648,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:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Pack non valido %1 fornito: %2" @@ -7553,11 +7657,11 @@ msgstr "Pack non valido %1 fornito: %2" msgid "Invalid Player ID" msgstr "ID giocatore non valido" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Indirizzo del modulo RSO non valido: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Stack di chiamate non valido" @@ -7586,7 +7690,7 @@ msgstr "Input non valido" msgid "Invalid literal." msgstr "Letterale non valido." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Non sono stati forniti parametri validi alla ricerca." @@ -7598,21 +7702,21 @@ msgstr "Inserita password non valida." msgid "Invalid recording file" msgstr "File di registrazione non valido" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Parametri di ricerca non validi (nessun oggetto selezionato)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Stringa di ricerca non valida (solo stringhe di lunghezza pari sono " "supportate)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Title ID non valido." @@ -7622,7 +7726,7 @@ 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:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7631,63 +7735,63 @@ msgid "Italy" msgstr "Italia" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "Oggetto" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "Disattiva linking dei blocchi JIT" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "Blocchi JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7699,16 +7803,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:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "Registro cache JIT Off" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7717,12 +7821,16 @@ msgstr "" "cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo " "problema nel bug tracker. Dolphin ora terminerà." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Giappone" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Giapponese" @@ -7733,7 +7841,7 @@ msgstr "Giapponese" msgid "Japanese (Shift-JIS)" msgstr "Giapponese (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7741,7 +7849,7 @@ msgstr "" "Kaos è l'unico cattivo per questo trofeo ed è sempre sbloccato. Non serve " "modificare nulla!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Rimani in esecuzione" @@ -7755,7 +7863,7 @@ msgstr "Finestra sempre in cima" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Mantieni gli indirizzi il cui valore in memoria" @@ -7776,7 +7884,7 @@ msgstr "Controller tastiera" msgid "Keys" msgstr "Tasti" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7784,12 +7892,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Kicka giocatore" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -7800,7 +7908,7 @@ msgstr "Coreano" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "C&arica ROM..." @@ -7810,7 +7918,7 @@ msgstr "C&arica ROM..." msgid "L-Analog" msgstr "L-Analogico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "Salva LR" @@ -7818,35 +7926,37 @@ msgstr "Salva LR" msgid "Label" msgstr "Etichetta" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Ultimo valore" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "Ultimo posizionamento:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7922,13 +8032,13 @@ msgstr "" msgid "Levers" msgstr "Leve" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licenza" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Vita" @@ -7942,7 +8052,7 @@ msgstr "Solleva" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Luce" @@ -7950,11 +8060,11 @@ msgstr "Luce" msgid "Limit Chunked Upload Speed:" msgstr "Limite velocità upload a blocchi:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Lista colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Vista a lista" @@ -7965,29 +8075,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Carica" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Carica file mappa &invalida..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Carica &altro file mappa..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carica texture personalizzate" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Carica file" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Carica menu principale GameCube" @@ -8008,7 +8125,7 @@ msgstr "Carica percorso:" msgid "Load ROM" msgstr "Carica ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Carica slot" @@ -8097,19 +8214,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:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Carica stato da file" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Carica stato dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Carica stato da slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Carica menu di sistema Wii %1" @@ -8121,16 +8238,16 @@ msgstr "Carica e scrivi salvataggio dell'host" msgid "Load from Selected Slot" msgstr "Carica dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Carica da slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Carica mappa" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Carica menu di sistema vWii %1" @@ -8138,11 +8255,11 @@ msgstr "Carica menu di sistema vWii %1" msgid "Load..." msgstr "Carica..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Caricati simboli da '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8152,7 +8269,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8174,7 +8291,7 @@ msgid "Locked" msgstr "Bloccato" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8186,7 +8303,7 @@ msgstr "Configurazione log" msgid "Log In" msgstr "Login" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Log della copertura delle istruzioni JIT" @@ -8194,7 +8311,7 @@ msgstr "Log della copertura delle istruzioni JIT" msgid "Log Out" msgstr "Logut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Scrivi log del tempo di rendering su file" @@ -8210,7 +8327,7 @@ msgstr "Destinazione logger" msgid "Login Failed" msgstr "Login non riuscita" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8229,16 +8346,16 @@ msgstr "Loop" msgid "Lost connection to NetPlay server..." msgstr "Persa la connessione al server NetPlay..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8246,7 +8363,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -8256,7 +8373,7 @@ msgstr "File Gameshark MadCatz" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Magia" @@ -8264,37 +8381,37 @@ msgstr "Magia" msgid "Main Stick" msgstr "Levetta principale" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "Assicurati che il valore del livello eroe sia tra 0 e 100!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "Assicurati che il valore dell'ultimo posizionamento sia valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "Assicurati che la data e l'ora dell'ultimo reset siano validi!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "Assicurati che il valore dei soldi sia tra 0 e 65000!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "Assicurati che il soprannome sia lungo tra 0 e 15 caratteri!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "Assicurati che il valore del tempo di gioco sia valido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 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:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Produttore" @@ -8316,12 +8433,12 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Gestisci NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Texture sampling manuale" @@ -8333,7 +8450,7 @@ msgstr "Mappatura" msgid "Mask ROM" msgstr "Maschera ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Trovata corrispondenza" @@ -8350,17 +8467,17 @@ msgstr "Dimensione massima del buffer cambiata a %1" msgid "Maximum tilt angle." msgstr "Massimo angolo di inclinazione" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Medio" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Memoria" @@ -8372,7 +8489,7 @@ msgstr "Punto di interruzione dei dati" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Gestione Memory Card" @@ -8384,7 +8501,7 @@ msgstr "Percorso Memory Card:" msgid "Memory Override" msgstr "Override memoria" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Opzioni punti di interruzione" @@ -8401,7 +8518,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8413,29 +8530,33 @@ msgstr "" "consiglia di mantenere un backup di entrambe le NAND. Sei sicuro di voler " "continuare?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Microfono" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Varie" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Impostazioni varie" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8464,12 +8585,16 @@ msgstr "" "- Titolo: {3}\n" "- Hash: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Mezza incl." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " @@ -8480,24 +8605,25 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "Modifica slot" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "Modifica Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Moduli trovati: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Soldi:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8509,16 +8635,16 @@ msgstr "Ombre monoscopiche" msgid "Monospaced Font" msgstr "Carattere a spaziatura fissa" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Input di movimento" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Simulazione di movimento" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motore" @@ -8561,6 +8687,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8570,10 +8700,10 @@ msgstr "Moltiplicatore" msgid "N&o to All" msgstr "N&o a tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Controllo NAND" @@ -8582,8 +8712,8 @@ msgstr "Controllo NAND" msgid "NKit Warning" msgstr "Attenzione NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8592,7 +8722,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8614,25 +8744,25 @@ 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:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Nome" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Nome del nuovo tag:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Nome del tag da rimuovere:" @@ -8641,7 +8771,7 @@ msgid "Name of your session shown in the server browser" msgstr "Nome della sessione da visualizzare nel server browser" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8706,7 +8836,7 @@ msgstr "" msgid "Network" msgstr "Network" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Formato dump network:" @@ -8736,7 +8866,7 @@ msgstr "Nuovo file" msgid "New File (%1)" msgstr "Nuovo file (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Nuova ricerca" @@ -8744,7 +8874,7 @@ msgstr "Nuova ricerca" msgid "New Tag..." msgstr "Nuovo tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Generata nuova identità" @@ -8752,7 +8882,7 @@ msgstr "Generata nuova identità" msgid "New instruction:" msgstr "Nuova istruzione:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Nuovo tag" @@ -8761,7 +8891,7 @@ msgstr "Nuovo tag" msgid "Next Game Profile" msgstr "Profilo di gioco successivo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Corrispondenza successiva" @@ -8775,7 +8905,7 @@ msgid "Nickname is too long." msgstr "Il nickname è troppo lungo." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Nickname:" @@ -8789,7 +8919,7 @@ msgstr "No" msgid "No Adapter Detected" msgstr "Nessun adattatore rilevato" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "Nessun allineamento" @@ -8803,7 +8933,7 @@ msgstr "Nessun output audio" msgid "No Compression" msgstr "Nessuna compressione" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Nessuna corrispondenza" @@ -8811,16 +8941,16 @@ msgstr "Nessuna corrispondenza" msgid "No Save Data" msgstr "Nessun salvataggio" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "Non sono presenti dati da modificare!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Non è disponibile una descrizione" @@ -8836,15 +8966,15 @@ msgstr "Nessuna estensione selezionata." msgid "No file loaded / recorded." msgstr "Nessun file caricato / registrato." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Nessun gioco è in esecuzione." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Nessun gioco in esecuzione." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "Non sono state selezionate mod grafiche" @@ -8853,7 +8983,7 @@ msgstr "Non sono state selezionate mod grafiche" msgid "No input" msgstr "Nessun input" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Non sono stati rilevati problemi." @@ -8865,10 +8995,6 @@ msgstr "Non sono stati trovati giochi compatibili" msgid "No paths found in the M3U file \"{0}\"" msgstr "Non sono stati trovati percorsi nel file M3U \"{0}\"" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "Non sono rimaste funzioni valide. Reset." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Non sono stati rilevati problemi." @@ -8884,11 +9010,11 @@ msgstr "" "che molto probabilmente non ci sono problemi che possano influenzare " "l'emulazione." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Nessun profilo trovato per l'impostazione di gioco '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Nessuna registrazione caricata." @@ -8897,7 +9023,7 @@ msgstr "Nessuna registrazione caricata." msgid "No save data found." msgstr "Non sono stati trovati dati di salvataggio." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Non è stato possibile trovare il file undo.dtm, l'annullamento del " @@ -8907,11 +9033,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Nessuno" @@ -8977,7 +9103,7 @@ msgid "Null" msgstr "Nessuno" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumeroEsecuzioni" @@ -9012,10 +9138,58 @@ msgstr "Levetta Nunchuk" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Oggetto %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Intervallo oggetto" @@ -9029,7 +9203,7 @@ msgstr "Oceania" msgid "Off" msgstr "Off" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Offset" @@ -9041,7 +9215,7 @@ msgstr "On" msgid "On Movement" msgstr "Al movimento" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -9051,7 +9225,22 @@ msgstr "" "espandere vertici e linee, utilizza sempre il vertex shader. Potrebbe " "influire sulle performance.

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Documentazione online" @@ -9059,7 +9248,7 @@ msgstr "&Documentazione online" msgid "Only Show Collection" msgstr "Mostra solo collezione" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9067,7 +9256,7 @@ msgstr "" "Inserisci solo simboli con prefisso:\n" "(Vuoto per tutti i simboli)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9077,7 +9266,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Apri" @@ -9086,11 +9275,11 @@ msgstr "Apri" msgid "Open &Containing Folder" msgstr "Apri &percorso file" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Apri cartella &utente" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Apri cartella..." @@ -9111,7 +9300,7 @@ msgstr "Apri Riivolution XML..." msgid "Open Wii &Save Folder" msgstr "Apri cartella dei &salvataggi Wii" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Apri cartella dump" @@ -9144,11 +9333,11 @@ msgid "Operators" msgstr "Operatori" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opzioni" @@ -9161,13 +9350,36 @@ msgstr "Arancione" msgid "Orbital" msgstr "Orbita" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Altro" @@ -9180,7 +9392,7 @@ msgstr "Altra partizione (%1)" msgid "Other State Hotkeys" msgstr "Altri tasti rapidi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Gestione altri stati di gioco" @@ -9200,16 +9412,16 @@ msgstr "Ricampionamento Output" msgid "Output Resampling:" msgstr "Ricampionamento Output:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Sovrascritto" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Riproduci registrazione input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9218,15 +9430,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Livello compressione PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Livello compressione PNG:" @@ -9234,11 +9446,11 @@ msgstr "Livello compressione PNG:" msgid "PNG image file (*.png);; All Files (*)" msgstr "File immagine PNG (*.png);; Tutti i File (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Dimensione PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9251,11 +9463,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pad" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parametri" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Leggi come esadecimale" @@ -9306,11 +9518,15 @@ msgstr "Percorso:" msgid "Paths" msgstr "Percorsi" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pausa al termine del filmato" @@ -9353,7 +9569,7 @@ msgstr "Velocità massima per oscillare verso l'esterno" msgid "Per-Pixel Lighting" msgstr "Illuminazione per-pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Avviare aggiornamento di sistema online" @@ -9361,33 +9577,33 @@ msgstr "Avviare aggiornamento di sistema online" msgid "Perform System Update" msgstr "Avvia l'aggiornamento di sistema" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: 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:75 +#: 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:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Statistiche di prestazioni" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Fisico" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Spazio dell'indirizzo fisico" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Scegli un font di debug" @@ -9403,12 +9619,12 @@ msgstr "Inclinazione in basso" msgid "Pitch Up" msgstr "Inclinazione in alto" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Piattaforma" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Gioca" @@ -9420,7 +9636,7 @@ msgstr "Avvia / Registra" msgid "Play Recording" msgstr "Riproduci registrazione" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Avvia Set/Power Disc" @@ -9432,27 +9648,27 @@ msgstr "Opzioni di riproduzione" msgid "Player" msgstr "Giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Primo giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Primo giocatore prima abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Primo giocatore seconda abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Secondo giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Secondo giocatore prima abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Secondo giocatore seconda abilità" @@ -9461,7 +9677,8 @@ msgstr "Secondo giocatore seconda abilità" msgid "Players" msgstr "Giocatori" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Tempo di gioco:" @@ -9476,24 +9693,28 @@ msgstr "" "disabilitata, per cui molto probabilmente il problema si verificherà di " "nuovo." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" "Avvia un gioco prima di lanciare una ricerca su regioni di memoria standard." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Puntamento" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Porta %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "ROM porta %1:" @@ -9502,7 +9723,7 @@ msgstr "ROM porta %1:" msgid "Port:" msgstr "Porta:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Slot portale" @@ -9523,11 +9744,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Configura shader di post-processing" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Precarica texture personalizzate" @@ -9535,11 +9756,11 @@ msgstr "Precarica texture personalizzate" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Termine prematuro del filmato in PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Termine prematuro del filmato in PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Termine prematuro del filmato in PlayWiimote. {0} > {1}" @@ -9564,7 +9785,7 @@ msgstr "Premi il pulsante Sync" msgid "Pressure" msgstr "Pressione" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9584,7 +9805,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Profilo di gioco precedente" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Corrispondenza precedente" @@ -9595,7 +9816,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitiva %1" @@ -9607,7 +9828,7 @@ msgstr "Privato" msgid "Private and Public" msgstr "Privato e pubblico" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problema" @@ -9647,8 +9868,8 @@ msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Avanzamento" @@ -9656,11 +9877,11 @@ msgstr "Avanzamento" msgid "Public" msgstr "Pubblica" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Pulisci cache lista giochi" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Posiziona le ROM IPL in User/GC/." @@ -9680,14 +9901,14 @@ 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à." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Conferma" @@ -9708,19 +9929,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analogico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "Moduli RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "Auto-rilevamento RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "IN ESECUZIONE" @@ -9733,11 +9954,11 @@ msgstr "Immagini RVZ GC/Wii (*.rvz)" msgid "Range" msgstr "Intensità" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Fine intervallo:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Inizio intervallo:" @@ -9749,7 +9970,11 @@ msgstr "%1 Posizione" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "&Sostituisci istruzione" @@ -9761,14 +9986,14 @@ msgstr "Lettura" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Lettura e scrittura" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Sola lettura" @@ -9789,10 +10014,15 @@ msgstr "Balance Board reale" msgid "Real Wii Remote" msgstr "Wii Remote reale" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9806,7 +10036,7 @@ msgstr "Registra" msgid "Record Inputs" msgstr "Registra input" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Registrazione" @@ -9847,7 +10077,7 @@ msgstr "" "applicato anche alle luci, agli effetti di shader e alle texture." "

Nel dubbio, seleziona Nessuno." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Stato di Redump.org:" @@ -9855,14 +10085,14 @@ msgstr "Stato di Redump.org:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Aggiorna" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Aggiorna valori attuali" @@ -9870,11 +10100,11 @@ msgstr "Aggiorna valori attuali" msgid "Refresh Game List" msgstr "Aggiorna l'elenco dei giochi" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "Aggiornamento fallito. Esegui il gioco per un po', quindi riprova." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Valori attuali aggiornati." @@ -9883,8 +10113,8 @@ msgstr "Valori attuali aggiornati." msgid "Refreshing..." msgstr "Aggiornamento..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regione" @@ -9913,7 +10143,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Rimuovi" @@ -9930,7 +10160,7 @@ msgstr "Rimuovi dati inutilizzati (irreversibile)" msgid "Remove Tag..." msgstr "Rimuovi tag..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Rimuovi tag" @@ -9944,8 +10174,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Rinomina simbolo" @@ -9953,11 +10183,11 @@ msgstr "Rinomina simbolo" msgid "Render Window" msgstr "Finestra di render" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9975,23 +10205,22 @@ msgstr "Invita al tuo party" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reimposta" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Reimposta tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Reimposta ignora avvisi di errore" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Azzera risultati" @@ -10019,6 +10248,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Gestione Resource Pack" @@ -10035,7 +10268,7 @@ msgstr "Riavvio necessario" msgid "Restore Defaults" msgstr "Ripristina predefiniti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Ripristina istruzione" @@ -10052,7 +10285,7 @@ msgstr "Velocità di ritorno" msgid "Revision" msgstr "Revisione" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revisione: %1" @@ -10111,7 +10344,7 @@ msgstr "Rotazione a destra" msgid "Room ID" msgstr "ID stanza" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Rotazione" @@ -10134,26 +10367,52 @@ msgstr "" "viene usata la risoluzione interna nativa.

Nel " "dubbio, lascia deselezionato." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibrazione" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "&Esegui fino al cursore" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Esegui fino a" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Esegui fino a (ignorando i punti di interruzione)" @@ -10169,19 +10428,19 @@ msgstr "Russia" msgid "SD Card" msgstr "Scheda SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Dimensione file scheda SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Percorso scheda SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Impostazioni scheda SD" @@ -10189,7 +10448,7 @@ msgstr "Impostazioni scheda SD" msgid "SD Root:" msgstr "Root SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Cartella sincronizzazione SD:" @@ -10202,7 +10461,7 @@ msgstr "SDR Display Gamma Target" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10210,11 +10469,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "Digest SHA1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "Contesto SSL" @@ -10224,11 +10483,11 @@ msgstr "Contesto SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Sal&va codice" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Sal&va stato di gioco" @@ -10241,7 +10500,6 @@ msgstr "Sicura" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10251,9 +10509,17 @@ msgstr "Salva" msgid "Save All" msgstr "Salva tutto" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Esporta salvataggio" @@ -10262,24 +10528,24 @@ msgid "Save FIFO log" msgstr "Salva log FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Salva con nome" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Salvataggio di gioco" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "File di salvataggio di gioco (*.sav);;Tutti i file (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Importa salvataggio" @@ -10291,13 +10557,13 @@ msgstr "Salva sul più vecchio stato di gioco" msgid "Save Preset" msgstr "Salva preset" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 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/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Salva stato di gioco" @@ -10341,23 +10607,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:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Salva stato su file" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Salva stato su slot più vecchio" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Salva stato nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Salva stato su slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Salva mappa dei simboli &come..." @@ -10365,7 +10631,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Salva e carica stato di gioco" @@ -10377,11 +10643,11 @@ msgstr "Salva come preset..." msgid "Save as..." msgstr "Salva come..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Salva file combinato in output come" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10391,15 +10657,15 @@ msgstr "" "conviene fare un backup dei dati attuali prima di sovrascriverli.\n" "Vuoi proseguire?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Salva nella stessa cartella della ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Salva file mappa" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Salva file di signature" @@ -10407,7 +10673,7 @@ msgstr "Salva file di signature" msgid "Save to Selected Slot" msgstr "Salva nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Salva su slot %1 - %2" @@ -10421,7 +10687,7 @@ msgstr "" "Gli abbinamenti salvati con i Wii Remote possono essere resettati soltanto " "durante l'esecuzione di un gioco Wii." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Salvataggi:" @@ -10433,26 +10699,26 @@ msgstr "Il salvataggio del filmato {0} è corrotto, arresto registrazione..." msgid "Scaled EFB Copy" msgstr "Copia EFB in scala" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Ricerca completata." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Screenshot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Cerca" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Cerca indirizzo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Cerca oggetto corrente" @@ -10460,11 +10726,11 @@ msgstr "Cerca oggetto corrente" msgid "Search Subfolders" msgstr "Cerca nelle sottocartelle" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Cerca e filtra" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10472,7 +10738,7 @@ msgstr "" "La ricerca non è attualmente possibile nello spazio di indirizzo virtuale. " "Esegui il gioco per un po', quindi riprova." -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Cerca un'istruzione" @@ -10480,11 +10746,11 @@ msgstr "Cerca un'istruzione" msgid "Search games..." msgstr "Cerca giochi..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Ricerca istruzione" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Cerca:" @@ -10505,7 +10771,7 @@ msgid "Section that contains most CPU and Hardware related settings." msgstr "" "Sezione che contiene la maggior parte delle impostazioni di CPU e Hardware." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Opzioni di sicurezza" @@ -10513,28 +10779,36 @@ msgstr "Opzioni di sicurezza" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Seleziona percorso dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Seleziona cartella di estrazione" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Seleziona file statuina" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Seleziona BIOS GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Seleziona ROM GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Seleziona percorso dei salvataggi GBA" @@ -10554,15 +10828,15 @@ msgstr "Seleziona percorso Resource Pack" msgid "Select Riivolution XML file" msgstr "Seleziona file Riivolution XML" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Seleziona collezione Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Seleziona file Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Seleziona slot %1 - %2" @@ -10570,7 +10844,7 @@ msgstr "Seleziona slot %1 - %2" msgid "Select State" msgstr "Seleziona stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Seleziona slot di stato" @@ -10629,15 +10903,15 @@ msgstr "Seleziona una cartella" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Seleziona un file" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10645,11 +10919,11 @@ 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:504 +#: 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:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Seleziona un file" @@ -10657,19 +10931,19 @@ msgstr "Seleziona un file" msgid "Select a game" msgstr "Seleziona un gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Seleziona un titolo da installare su NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Seleziona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Scegli l'indirizzo del modulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Seleziona la registrazione da eseguire" @@ -10677,12 +10951,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:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Seleziona il file di salvataggio" @@ -10698,7 +10972,7 @@ msgstr "Seleziona dove vuoi salvare le immagini convertite" msgid "Selected Font" msgstr "Font selezionato" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Il profilo controller selezionato non esiste" @@ -10710,15 +10984,15 @@ msgstr "Il profilo controller selezionato non esiste" 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:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Callstack thread selezionato" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Contesto thread selezionato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10726,7 +11000,7 @@ msgstr "" "Seleziona un adattatore hardware da utilizzare.

%1 " "Non supporta questa feature." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10734,6 +11008,25 @@ msgstr "" "Seleziona l'adattatore hardware da utilizzare.

Nel " "dubbio, seleziona il primo." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10753,26 +11046,29 @@ msgstr "" "una tipologia di 3D usata da alcune TV.

Nel dubbio, " "seleziona Off." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -"Seleziona il rapporto d'aspetto da utilizzare in fase di rendering:
Ogni " -"gioco può avere un diverso rapporto d'aspetto nativo.

Auto: utilizza " -"il rapporto d'aspetto nativo
Forza 16:9: Simula una TV analogica con un " -"rapporto d'aspetto widescreen.
Forza 4:3: Simula una TV analogica con un " -"normale rapporto d'aspetto di 4:3.
Adatta a finestra: Allarga l'immagine " -"perché si adatti alle dimensioni della finestra.
Personalizzato: Per " -"giochi che utilizzano cheat per specifici rapporti d'aspetto." -"

Nel dubbio, seleziona Auto." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10793,7 +11089,7 @@ msgstr "" msgid "Send" msgstr "Invia" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posizione della Sensor Bar: " @@ -10822,16 +11118,12 @@ msgid "Server rejected traversal attempt" msgstr "" "Il server ha rifiutato il tentativo di connessione in modalità traversal" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Imposta &valore" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Imposta &blr" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Imposta PC" @@ -10847,23 +11139,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Imposta indirizzo di t&ermine del simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Imposta dimensione del &simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Imposta indirizzo di termine del simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Imposta dimensione del simbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10873,11 +11165,11 @@ msgstr "" "(576i) per i giochi PAL.\n" "Potrebbe non funzionare su tutti i giochi." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Imposta la lingua di sistema del Wii" -#: 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." @@ -10885,7 +11177,7 @@ msgstr "" "Imposta la latenza in millisecondi. Valori maggiori possono correggere un " "audio gracchiante. Solo per alcuni backend." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10899,20 +11191,20 @@ msgstr "" msgid "Settings" msgstr "Impostazioni" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Impossibile creare il file setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Severità" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilazione shader" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Scuoti" @@ -10929,16 +11221,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Controller Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Mostra velocità %" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Mostra finestra di &log" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Mostra barra degli s&trumenti" @@ -10946,53 +11238,53 @@ 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:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Mostra tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Mostra Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Mostra gioco corrente su Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Mostra prima codici inattivi" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Mostra ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "Mostra prima codici attivi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Mostra contatore frame" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Mostra tempi frame" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Mostra Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Mostra GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Mostra Germania" @@ -11004,23 +11296,23 @@ msgstr "Mostra overlay modalità golf" msgid "Show Infinity Base" msgstr "Mostra base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Mostra tasti di input" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Mostra Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "Mostra JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Mostra Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Mostra contatore lag" @@ -11028,19 +11320,19 @@ msgstr "Mostra contatore lag" msgid "Show Language:" msgstr "Mostra lingua:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Mostra &configurazione log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Mostra messaggi NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Mostra ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Mostra Olanda" @@ -11048,32 +11340,36 @@ msgstr "Mostra Olanda" msgid "Show On-Screen Display Messages" msgstr "Mostra messaggi su schermo" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Mostra PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Mostra grafico di performance" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Mostra piattaforme" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Mostra regioni" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Mostra contatore re-registrazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Mostra Russia" @@ -11081,72 +11377,72 @@ msgstr "Mostra Russia" msgid "Show Skylanders Portal" msgstr "Mostra portale Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Mostra Spagna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Mostra colori velocità" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostra informazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Mostra orologio di sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Mostra Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Mostra USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Mostra sconosciuto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Mostra tempi VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Mostra VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Mostra WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Mostra Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Mostra mondo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Mostra in &memoria" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Mostra nel codice" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Mostra in memoria" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Mostra nel codice" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Mostra in memoria" @@ -11154,11 +11450,11 @@ msgstr "Mostra in memoria" msgid "Show in server browser" msgstr "Mostra nel server browser" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "&Mostra target in memoria" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -11167,7 +11463,7 @@ msgstr "" "una partita NetPlay.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11187,7 +11483,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11197,7 +11493,7 @@ msgstr "" "deviazione standard.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11207,7 +11503,7 @@ msgstr "" "standard.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11217,7 +11513,7 @@ msgstr "" "misura dell'uniformità di visualizzazione.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11236,7 +11532,13 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11248,34 +11550,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Fianco-a-fianco" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Mantieni posizione di traverso" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Attiva/disattiva posizione di traverso" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wii Remote in posizione di traverso" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Database signature" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Signed 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Signed 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Signed 8" @@ -11284,7 +11586,7 @@ msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Cinese Semplificato" @@ -11301,7 +11603,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." @@ -11309,11 +11611,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Salta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Salta drawing" @@ -11359,24 +11661,24 @@ msgstr "" "dubbio, lascia selezionato.
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Tutti i file (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Percorso collezione Skylander:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" "Non sono stati trovati Skylander in questa collezione. Creare un nuovo file?" @@ -11385,12 +11687,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "Gestione Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" -"Non è stata trovata una cartella Skylander per questo utente. Creare una " -"nuova cartella?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11400,7 +11696,7 @@ msgstr "Slider Bar" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Slot A:" @@ -11408,7 +11704,7 @@ msgstr "Slot A:" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Slot B:" @@ -11416,7 +11712,7 @@ msgstr "Slot B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Cattura la posizione dell'analogico al più vicino asse ottagonale." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Tabella socket" @@ -11444,12 +11740,12 @@ msgstr "" "Alcuni dei valori forniti non sono validi.\n" "Controlla i valori evidenziati." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Ordine alfabetico" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Suono:" @@ -11463,27 +11759,27 @@ msgstr "Spagna" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spagnolo" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Panning altoparlante" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume altoparlante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specializzato (default)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Specifico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11513,15 +11809,15 @@ msgstr "Velocità" #. i18n: Figures for the game Skylanders: Spyro's Adventure. The game has the same title in all #. countries it was released in, except Japan, where it's named スカイランダーズ スパイロの大冒険. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Fine stack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Inizio stack" @@ -11534,25 +11830,28 @@ msgstr "Controller standard" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Avvia &NetPlay" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Inizia nuova ricerca cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Avvia re&gistrazione input" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Avvia registrazione" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Avvia a schermo intero." @@ -11568,10 +11867,10 @@ msgstr "Avvia con le patch Riivolution..." msgid "Started game" msgstr "Gioco avviato" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Stato" @@ -11581,7 +11880,7 @@ msgstr "Volante" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Entra nell'istruzione" @@ -11593,13 +11892,13 @@ msgstr "Entra nell'istruzione" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Esegui istruzione" @@ -11615,7 +11914,7 @@ msgstr "Scaduto tempo di uscita dall'istruzione!" msgid "Step over in progress..." msgstr "Esecuzione dell'istruzione in corso..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Istruzione eseguita con successo!" @@ -11624,7 +11923,7 @@ msgstr "Istruzione eseguita con successo!" msgid "Stepping" msgstr "Entrando" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11654,18 +11953,14 @@ msgstr "Levetta" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Arresta" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Interrompi riproduzione/registrazione input" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Ferma registrazione" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Gioco fermato" @@ -11708,7 +12003,7 @@ msgstr "" "RAM (e su texture)

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Adatta a finestra" @@ -11743,8 +12038,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Completato" @@ -11771,7 +12066,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:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "I certificati sono stati estratti con successo dalla NAND" @@ -11783,12 +12078,12 @@ msgstr "File estratto con successo." msgid "Successfully extracted system data." msgstr "Dati di sistema estratti con successo." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Salvataggio importato con successo." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Il titolo è stato installato con successo su NAND." @@ -11799,11 +12094,11 @@ msgstr "Il titolo è stato rimosso con successo dalla NAND." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Supporto" @@ -11811,16 +12106,16 @@ msgstr "Supporto" msgid "Supported file formats" msgstr "Formato file supportati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Sospeso" @@ -11830,12 +12125,12 @@ msgstr "Inverti occhi" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Swap Force" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "Swapper" @@ -11849,7 +12144,7 @@ msgstr "" "deselezionato." #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Ruota/oscilla" @@ -11863,39 +12158,21 @@ msgid "Switch to B" msgstr "Scambia con B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Indirizzo di termine del simbolo (%1):" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"Mappa dei simboli non trovata.\n" -"\n" -"Se non esiste, puoi generarla dal menu:\n" -"Simboli -> Genera simboli da ->\n" -"\tIndirizzo | Database signature | Moduli RSO" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Nome del simbolo:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Simboli" @@ -11923,7 +12200,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11944,24 +12221,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:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Lingua di sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Strumenti TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Tag" @@ -11971,7 +12248,7 @@ msgstr "Tag" msgid "Taiko Drum" msgstr "Taiko Drum" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Coda" @@ -11979,15 +12256,15 @@ msgstr "Coda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Cattura uno screenshot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "Il range di indirizzi non è valido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11997,7 +12274,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Tecnica" @@ -12005,6 +12282,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -12014,7 +12297,7 @@ msgstr "Cache texture" msgid "Texture Cache Accuracy" msgstr "Accuratezza cache texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Dump delle texture" @@ -12026,7 +12309,7 @@ msgstr "Filtraggio texture" msgid "Texture Filtering:" msgstr "Filtraggio texture:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Overlay formato texture" @@ -12056,7 +12339,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "L'hash table H3 della partizione {0} non è corretta." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "Il file IPL non è un dump conosciuto ben formato. (CRC32: {0:x})" @@ -12070,7 +12353,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12078,7 +12361,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "La NAND è stata riparata." @@ -12092,11 +12375,11 @@ msgstr "" "scheda SD, il menu di sistema Wii non si avvierà più, e non sarà più " "possibile copiarlo o rispostarlo sulla NAND." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "Quanti soldi dovrà avere questo Skylander. Tra 0 e 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -12140,6 +12423,13 @@ msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" "Le chiavi di decrittazione devono essere inserite nel file di backup NAND." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12162,7 +12452,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Impossibile trovare il disco che stava per essere inserito." @@ -12184,17 +12474,17 @@ msgstr "La console Wii emulata è già aggiornata." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "L'indirizzo MAC inserito non è valido." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Il PID inserito non è valido." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Il VID inserito non è valido." @@ -12202,7 +12492,7 @@ msgstr "Il VID inserito non è valido." msgid "The expression contains a syntax error." msgstr "L'espressione contiene un errore di sintassi." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12222,7 +12512,7 @@ msgstr "" "Il file %1 esiste già.\n" "Vuoi sostituirlo?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12241,7 +12531,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "Il file {0} è già stato aperto, l'intestazione non verrà scritta." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12255,7 +12545,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:573 +#: 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 " @@ -12325,13 +12615,11 @@ msgstr "Gli hash non coincidono!" msgid "The hashes match!" msgstr "Gli hash coincidono!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"Il livello eroe di questo Skylander. Presente solo su Skylanders: Spyro's " -"Adventures. Tra 0 e 100." #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12345,11 +12633,11 @@ msgstr "" msgid "The install partition is missing." msgstr "La partizione di installazione è assente" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "L'ultima volta che questa figura è stata posizionata su un portale" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12369,9 +12657,9 @@ msgstr "" "selezionato su Memory Card o Cartella GCI per sincronizzare correttamente la " "registrazione." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "Il soprannome di questo Skylander. Massimo 15 caratteri" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12402,12 +12690,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Il codice AR decriptato risultante non contiene alcuna riga." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 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:596 +#: 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 "" @@ -12447,7 +12735,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "il file specificato \"{0}\" non esiste" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12464,12 +12752,12 @@ msgstr "La memory card di destinazione contiene già un file \"%1\"." msgid "The ticket is not correctly signed." msgstr "Il ticket non è correttamente firmato." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" "Il tempo totale in secondi per cui questa figura è stata usata in un gioco" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" "Il codice univoco per questa figura. Disponibile solo per figure reali." @@ -12478,15 +12766,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "Impossibile leggere il tipo di una partizione." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "Questo tipo di Skylander non ha alcun dato modificabile!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "Questo tipo di Skylander è sconosciuto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12515,7 +12803,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12543,7 +12831,7 @@ msgstr "La partizione {0} non è correttamente allineata." msgid "There are too many partitions in the first partition table." msgstr "Ci sono troppe partizioni nella prima tabella delle partizioni." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12553,7 +12841,12 @@ msgstr "" "\n" "Vuoi salvarli prima di chiudere?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Non c'è nulla da annullare!" @@ -12596,19 +12889,19 @@ msgstr "" "tipicamente in uso sulle console coreane. Probabilmente verrà visualizzato " "un ERROR #002" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "Il tipo di questo Skylander non può ancora essere modificato!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Questo dispositivo USB è già stato accettato." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Questo WAD non è avviabile." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Questo WAD non è valido." @@ -12757,6 +13050,10 @@ msgstr "" msgid "This is a good dump." msgstr "Questo è un buon dump." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Questa sessione richiede una password:" @@ -12773,13 +13070,13 @@ msgstr "" "\n" "Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Questo software non dovrebbe essere utilizzato per la riproduzione di giochi " "di cui non sei legalmente in possesso." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Impossibile avviare questo titolo." @@ -12792,7 +13089,7 @@ msgstr "Questo titolo è impostato per utilizzare un IOS non valido." msgid "This title is set to use an invalid common key." msgstr "Questo titolo è impostato per utilizzare una common key non valida." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12804,7 +13101,7 @@ msgstr "" "\n" "DSPHLE: Ucode sconosciuto (CRC = {0:08x}) - AX forzato" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12831,6 +13128,13 @@ msgstr "" "Questo valore viene moltiplicato per la profondità impostata nelle " "configurazioni grafiche." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12851,11 +13155,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Contesto thread" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Thread" @@ -12863,12 +13167,12 @@ msgstr "Thread" msgid "Threshold" msgstr "Sensibilità" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Inclina" @@ -12884,10 +13188,10 @@ msgstr "" msgid "Timed Out" msgstr "Tempo scaduto" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titolo" @@ -12901,7 +13205,7 @@ msgstr "A" msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Attiva/disattiva &schermo intero" @@ -12926,7 +13230,7 @@ msgid "Toggle Aspect Ratio" msgstr "Attiva/disattiva rapporto di aspetto" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Attiva/disattiva punto di interruzione" @@ -12978,15 +13282,19 @@ msgstr "Attiva/disattiva copie XFB" msgid "Toggle XFB Immediate Mode" msgstr "Attiva/disattiva modalità XFB immediata" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Tokenizzazione fallita." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Barra degli strumenti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Sopra" @@ -12994,9 +13302,8 @@ msgstr "Sopra" msgid "Top-and-Bottom" msgstr "Sopra-e-sotto" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Numero di passaggi" @@ -13033,28 +13340,28 @@ msgstr "Massima distanza di movimento." msgid "Touch" msgstr "Tocco" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "Codice figura:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Cinese Tradizionale" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "Trappola" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "Trap Master" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -13094,26 +13401,26 @@ msgid "Triggers" msgstr "Grilletti" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "Trofeo" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tipo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Allineamento per tipo" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Spazio di indirizzi standard GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "SCONOSCIUTO" @@ -13125,7 +13432,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "Dispositivo di emulazione USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "Emulazione USB" @@ -13137,13 +13444,13 @@ msgstr "Dispositivi di emulazione USB" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "Errore USB Whitelist" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -13155,7 +13462,7 @@ msgstr "" "

Nel dubbio, seleziona questa modalità." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13167,7 +13474,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:282 +#: 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." @@ -13181,7 +13488,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:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Impossibile individuare automaticamente il modulo RSO" @@ -13193,11 +13500,11 @@ msgstr "Impossibile contattare server di aggiornamento." msgid "Unable to create updater copy." msgstr "Impossibile creare copia dell'programma di aggiornamento" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "Impossibile modificare lo Skylander!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Impossibile aprire il file." @@ -13225,7 +13532,7 @@ msgstr "" "\n" "Vuoi ignorare questa riga e continuare l'analisi?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Impossibile leggere il file." @@ -13248,15 +13555,15 @@ msgstr "Immagini GC/Wii non compresse (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Non-morti" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Annulla caricamento stato di gioco" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Annulla salvataggio dello stato di gioco" @@ -13277,11 +13584,11 @@ msgstr "" "attualmente installata su NAND senza cancellarne i file di salvataggio. " "Continuare?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Stati Uniti" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13292,12 +13599,13 @@ msgstr "Stati Uniti" msgid "Unknown" msgstr "Sconosciuto" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Sconosciuto (id:%1 var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando DVD {0:08x} sconosciuto - errore fatale" @@ -13325,11 +13633,11 @@ msgstr "" "Ricevuto messaggio SYNC_SAVE_DATA sconosciuto con id:{0} dal giocatore:{1} " "Giocatore espulso!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "Tipo Skylander sconosciuto!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Spazio dell'indirizzo sconosciuto" @@ -13337,7 +13645,7 @@ msgstr "Spazio dell'indirizzo sconosciuto" msgid "Unknown author" msgstr "Autore sconosciuto" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Tipo di dato sconosciuto" @@ -13345,7 +13653,7 @@ msgstr "Tipo di dato sconosciuto" msgid "Unknown disc" msgstr "Disco sconosciuto" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Si è verificato un errore sconosciuto." @@ -13367,16 +13675,18 @@ msgstr "" "Ricevuto messaggio sconosciuto con id:{0} ricevuto dal giocatore:{1} " "Giocatore espulso!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Sconosciuto(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Sconosciuto(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Illimitato" @@ -13409,22 +13719,22 @@ msgid "Unpacking" msgstr "Apertura" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "Cambiamenti non salvati" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Unsigned 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Unsigned 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Unsigned 8" @@ -13488,23 +13798,23 @@ msgstr "" "Aggiornamento del titolo %1...\n" "Potrebbe volerci un po'." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Mantieni posizione verticale" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Attiva/disattiva posizione verticale" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wii Remote in posizione verticale" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Impostazioni Report Statistiche d'Uso" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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" @@ -13517,15 +13827,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Usa codec lossless (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "Usa puntamento con il mouse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usa modalità PAL60 (EuRGB60)" @@ -13533,7 +13843,7 @@ msgstr "Usa modalità PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Usa avvisi di errore" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13564,68 +13874,18 @@ msgstr "" "Utilizza un singolo buffer di profondità per entrambi gli occhi. Necessario " "per alcuni giochi." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "Usa la configurazione della mappatura di memoria durante la scansione" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Usa indirizzi fisici" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Usa gli indirizzi virtuali quando possibile" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" -"Usato per trovare funzioni in base a quando dovrebbero venire eseguite.\n" -"Simile a Cheat Engine Ultimap.\n" -"Una mappa dei simboli deve essere caricata prima dell'utilizzo.\n" -"Le liste di inclusione/esclusione persistono al termine/riavvio " -"dell'emulazione.\n" -"Queste liste non persisteranno alla chiusura di Dolphin.\n" -"\n" -"'Avvia Registrazione': tiene traccia di quali funzioni vengono eseguite.\n" -"'Termina Registrazione': elimina la registrazione corrente senza cambiare le " -"liste.\n" -"'Il codice non è stato eseguito': clicca durante una registrazione per " -"aggiungere le funzioni registrate in una lista di esclusione, per poi " -"resettare la lista in registrazione.\n" -"'Il codice è stato eseguito': clicca durante una registrazione per " -"aggiungere le funzioni registrate in una lista di inclusione, per poi " -"resettare la lista in registrazione.\n" -"\n" -"Dopo aver usato sia l'inclusione sia l'esclusione, la lista di esclusione " -"verrà sottratta dalla lista di inclusione, e verranno mostrate tutte le " -"inclusioni rimaste.\n" -"Puoi continuare ad usare 'Il codice è stato eseguito'/'Il codice non è stato " -"eseguito' per filtrare ulteriormente i risultati.\n" -"\n" -"Il salvataggio salverà la lista corrente nella cartella di log di Dolphin " -"(File -> Apri cartella utente)" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Configurazione utente" @@ -13664,7 +13924,7 @@ msgstr "" "di velocità a seconda del gioco e/o della tua GPU." "

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13675,7 +13935,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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.
Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Qt %1 in uso" @@ -13693,31 +13953,31 @@ msgstr "Qt %1 in uso" msgid "Using TTL %1 for probe packet" msgstr "Usa TTL %1 per esaminare i pacchetti" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Solitamente usato per oggetti luminosi" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Solitamente usato per matrici di normali" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Solitamente usato per matrici di posizione" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Solitamente usato per matrici di coordinate di texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utilità" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync" @@ -13725,11 +13985,11 @@ msgstr "V-Sync" msgid "VBI Skip" msgstr "Ignora VBI" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valore" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Valore tracciato all'istruzione corrente." @@ -13737,17 +13997,17 @@ msgstr "Valore tracciato all'istruzione corrente." msgid "Value:" msgstr "Valore:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "La variante inserita non è valida!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Variante:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Veicolo" @@ -13763,16 +14023,16 @@ msgstr "Verbosità" msgid "Verify" msgstr "Verifica" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verifica integrità" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Verifica certificati" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verifica in corso" @@ -13786,7 +14046,7 @@ msgid "Vertex Rounding" msgstr "Vertex Rounding" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "FOV verticale" @@ -13800,12 +14060,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Visualizza &codice" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Visualizza &memoria" @@ -13813,14 +14073,14 @@ msgstr "Visualizza &memoria" msgid "Virtual Notches" msgstr "Tacche virtuali" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Spazio dell'indirizzo virtuale" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" @@ -13840,38 +14100,38 @@ msgstr "Alza il volume" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "File WAD (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "Installazione WAD non riuscita: Impossibile creare i file di log Wii Shop" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "Installazione WAD non riuscita: Impossibile completare l'importazione del " "titolo" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" "Installazione WAD non riuscita: Impossibile importare il contenuto {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "Installazione WAD non riuscita: Impossibile inizializzare l'importazione del " "titolo (errore {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "Installazione WAD non riuscita: Il file selezionato non è un WAD valido" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "ATTESA" @@ -13921,12 +14181,12 @@ msgstr "Percorso WFS:" msgid "WIA GC/Wii images (*.wia)" msgstr "Immagini WIA GC/Wii (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "In attesa della prima scansione..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13944,7 +14204,7 @@ msgstr "" "

Altrimenti, nel dubbio, lascia disattivato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13975,7 +14235,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Attenzione" @@ -14081,7 +14341,7 @@ msgstr "Espressione di controllo" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Acqua" @@ -14098,7 +14358,7 @@ msgstr "Occidentale (Windows-1252)" msgid "Whammy" msgstr "Tremolo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -14110,7 +14370,7 @@ msgstr "" "Arbitraria' è abilitato in Miglioramenti.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -14122,7 +14382,7 @@ msgstr "" "Detection Arbitraria' è abilitato in Miglioramenti." "

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivi USB ponte accettati" @@ -14146,7 +14406,7 @@ msgstr "Menu Wii" msgid "Wii NAND Root:" msgstr "Root NAND Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -14154,7 +14414,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -14172,7 +14432,7 @@ msgstr "Pulsanti Wii Remote" msgid "Wii Remote Gyroscope" msgstr "Giroscopio Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Impostazioni Wii Remote" @@ -14192,7 +14452,7 @@ msgstr "Wii TAS Input %1 - Wii Remote" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS Input %1 - Wii Remote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii e Wii Remote" @@ -14200,11 +14460,11 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dati Wii non ancora pubblici" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "File WIITools Signature MEGA" @@ -14216,11 +14476,23 @@ 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 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Dimensioni finestra" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Adatta testo" @@ -14234,10 +14506,14 @@ msgstr "Mondo" msgid "Write" msgstr "Scrittura" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Sola scrittura" @@ -14279,6 +14555,14 @@ msgstr "Regione errata" msgid "Wrong revision" msgstr "Revisione errata" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14287,11 +14571,11 @@ msgstr "Revisione errata" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Registro XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "Indirizzo destinazione XLink Kai BBA" @@ -14326,7 +14610,7 @@ msgstr "Sì" msgid "Yes to &All" msgstr "Sì a &tutto" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14335,7 +14619,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:272 +#: 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 " @@ -14479,7 +14763,7 @@ msgstr "" "Vuoi terminare l'emulazione per correggere il problema?\n" "Se selezioni \"No\", l'audio potrebbe risultare ingarbugliato." -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14499,15 +14783,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Codice Zero 3 non supportato" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Codice Zero sconosciuto a Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] e [%3, %4]" @@ -14515,11 +14803,11 @@ msgstr "[%1, %2] e [%3, %4]" msgid "^ Xor" msgstr "^ Xor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "allineato" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "qualunque valore" @@ -14538,21 +14826,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "Impossibile caricare d3d12.dll." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "default" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "disconnesso" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Carte e-Reader (*.raw);;Tutti i file (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14560,31 +14848,35 @@ msgstr "errno" msgid "fake-completion" msgstr "completamento-finto" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "uguale a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "maggiore di" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "maggiore o uguale a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "minore di" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "minore o uguale a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "diverso da" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "ultimo valore" @@ -14594,7 +14886,7 @@ msgstr "ultimo valore" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14606,13 +14898,13 @@ msgstr "" msgid "none" msgstr "inattivo" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "off" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "su" @@ -14629,16 +14921,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "questo valore:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "disallineato" @@ -14653,11 +14949,11 @@ msgstr "disallineato" msgid "{0} (Masterpiece)" msgstr "{0} (Capolavori)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{0} IPL trovato nella cartella {1}. Il disco potrebbe non venire riconosciuto" @@ -14696,7 +14992,7 @@ msgstr "| Or" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14707,8 +15003,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/ja.po b/Languages/po/ja.po index 0c70397e5e49..ca9f8da73322 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -79,8 +79,8 @@ msgstr "$ ユーザー変数" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -101,19 +101,20 @@ msgstr "" "%1 さんが\n" "あなたのパーティに参加したいようです" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -134,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Stock)" @@ -176,6 +177,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 はあなたのシステム上でこの機能をサポートしていません" @@ -202,7 +208,7 @@ msgstr "%1 が入室しました" msgid "%1 has left" msgstr "%1 が退室しました" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -210,7 +216,7 @@ msgstr "" "%1 は %2%3 の実績 (%4 ハードコア)をロック解除しました。これは %5%6 ポイント" "(%7 ハードコア)に相当します。" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" "%1 は %2%3 の実績をロック解除しました。これは %4%5 ポイントに相当します。" @@ -227,12 +233,12 @@ msgstr "%1 がゴルフ中" msgid "%1 is playing %2" msgstr "%1 は %2 をプレイしています。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -249,7 +255,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%" @@ -257,26 +263,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "%1's value is used" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -314,20 +320,20 @@ msgstr "%1x Native (%2x%3) for %4" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n address(es) could not be accessed in emulated memory." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n address(es) remain." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -337,23 +343,23 @@ msgstr "%n address(es) were removed." msgid "& And" msgstr "& And(論理積)" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "Dolphinについて(&A)" @@ -361,12 +367,12 @@ msgstr "Dolphinについて(&A)" msgid "&Add Memory Breakpoint" msgstr "メモリ ブレークポイントの追加(&A)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "コードを追加...(&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "ファンクションを追加(&A)" @@ -374,27 +380,27 @@ msgstr "ファンクションを追加(&A)" msgid "&Add..." msgstr "追加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "アセンブラ(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "サウンド設定(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "自動更新(&A):" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "ボーダーレス ウィンドウ(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "ブレークポイント(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "バグトラッカー(&B)" @@ -402,15 +408,15 @@ msgstr "バグトラッカー(&B)" msgid "&Cancel" msgstr "キャンセル(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "チートマネージャ(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "更新を確認...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "クリアシンボル(&C)" @@ -418,19 +424,24 @@ msgstr "クリアシンボル(&C)" msgid "&Clone..." msgstr "クローン...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "コード(&C)" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "接続(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "コントローラー設定(&C)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "アドレスをコピー(&C)" @@ -438,7 +449,7 @@ msgstr "アドレスをコピー(&C)" msgid "&Create..." msgstr "作成...(&C)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "削除(&D)" @@ -455,9 +466,9 @@ msgstr "ウォッチの削除(&D)" msgid "&Delete Watches" msgstr "ウォッチの削除(&D)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "コードを編集...(&E)" @@ -465,23 +476,23 @@ msgstr "コードを編集...(&E)" msgid "&Edit..." msgstr "編集...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "ディスクの取り出し(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "エミュレーション(&E)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "エクスポート(&E)" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "セーブファイルのエクスポート...(&E)" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "ステートのエクスポート...(&E)" @@ -489,55 +500,53 @@ msgstr "ステートのエクスポート...(&E)" msgid "&Export as .gci..." msgstr "GCI形式でエクスポート...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "ファイル(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "フォント...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "フレームアドバンス(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "フリールックの設定(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Generate Symbols From" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "GitHub リポジトリ(&G)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Go to start of function" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "グラフィック設定(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "ヘルプ(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "ホットキーのカスタマイズ(&H)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Import" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "セーブファイルのインポート...(&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Import State..." @@ -545,19 +554,19 @@ msgstr "&Import State..." msgid "&Import..." msgstr "インポート...(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Insert blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Interframe Blending" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -565,15 +574,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "UIの言語(&L):" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "ステートロード(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "ロードシンボルマップ(&L)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Load file to current address" @@ -583,23 +596,23 @@ msgstr "&Load file to current address" msgid "&Lock Watches" msgstr "ウォッチのロック(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "ツールバーの位置を固定(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memory" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "記録(&M)" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "ミュート(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Network" @@ -608,23 +621,23 @@ msgid "&No" msgstr "いいえ(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "開く...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "設定(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functions" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "一時停止(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "開始(&P)" @@ -632,15 +645,15 @@ msgstr "開始(&P)" msgid "&Properties" msgstr "プロパティ(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "読み込み専用(&R)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "ゲームリストを再更新(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registers" @@ -648,41 +661,45 @@ msgstr "&Registers" msgid "&Remove" msgstr "削除(&R)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "コードを削除(&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Rename symbol" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "リセット(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "リソースパックマネージャー(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "カードeのスキャン...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "スカイランダーズポータル(&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "速度制限(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "停止(&S)" @@ -690,15 +707,19 @@ msgstr "停止(&S)" msgid "&Theme:" msgstr "テーマ(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "ツール(&T)" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "ROMを取り外してリセット(&U)" @@ -708,17 +729,17 @@ msgstr "ROMを取り外してリセット(&U)" msgid "&Unlock Watches" msgstr "ウォッチのロックを解除(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "公式Webサイト(&W)" @@ -730,11 +751,11 @@ msgstr "公式Wiki(英語)で動作状況を確認(&W)" msgid "&Yes" msgstr "はい(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' not found, no symbol names generated" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' not found, scanning for common functions instead" @@ -750,7 +771,7 @@ msgstr "(ライト)" msgid "(System)" msgstr "(システム)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(host)" @@ -758,7 +779,7 @@ msgstr "(host)" msgid "(off)" msgstr "オフ" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -778,15 +799,15 @@ msgstr ", コンマ" msgid "- Subtract" msgstr "- Subtract(減算)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "-未確認-" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -797,12 +818,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Divide(除算)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -814,7 +835,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 ブロック)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -822,11 +843,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -838,17 +859,17 @@ msgstr "16 Mbit (251 ブロック)" msgid "16-bit" msgstr "16 ビット" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16-bit Unsigned Integer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -860,11 +881,11 @@ msgstr "16x 異方性フィルタリング" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -876,7 +897,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x 異方性フィルタリング" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -888,25 +909,25 @@ msgstr "32 Mbit (507 ブロック)" msgid "32-bit" msgstr "32 ビット" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32-bit Float" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -920,11 +941,11 @@ msgstr "3D深度" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -932,7 +953,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 ブロック)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -948,7 +969,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x 異方性フィルタリング" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -960,22 +981,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 ブロック)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64-bit Float" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64-bit Unsigned Integer" @@ -983,11 +1004,11 @@ msgstr "64-bit Unsigned Integer" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -999,13 +1020,13 @@ msgstr "8 Mbit (123 ブロック)" msgid "8-bit" msgstr "8 ビット" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8-bit Unsigned Integer" @@ -1021,7 +1042,7 @@ msgstr "8x 異方性フィルタリング" msgid "< Less-than" msgstr "< Less-than(より小さい)" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "なし" @@ -1034,13 +1055,13 @@ msgid "Disabled in Hardcore Mode." msgstr "" "ハードコアモードでは無効になります。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "よく分からなければ、チェックを入れないでください" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1078,12 +1099,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Greater-than(より大きい)" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "ネットプレイのセッションは既に進行中です!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1099,7 +1120,7 @@ msgstr "" "\n" "このWADのバージョンで上書きしますか?元に戻すことはできません!" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "ディスクは既に挿入されています。" @@ -1110,11 +1131,11 @@ msgid "" msgstr "" "Wii および GC 実機本来の色空間に合わせ、色をより正確にするための一連の機能。" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "起動するタイトルを指定せずにステートセーブをロードすることはできません" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1134,6 +1155,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "WiiリモコンとのシンクロはWiiのゲームを実行中にのみ行えます" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1165,7 +1190,7 @@ msgstr "" "\n" "現在のところ、ネットプレイ上でのWiiリモコンの入力サポートは実験段階です。\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "アクションリプレイコード" @@ -1174,8 +1199,8 @@ msgstr "アクションリプレイコード" msgid "AR Codes" msgstr "アクションリプレイコード" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1189,7 +1214,7 @@ msgid "About Dolphin" msgstr "Dolphinについて" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "加速度" @@ -1208,7 +1233,7 @@ msgid "Achievement Settings" msgstr "実績の設定" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "実績" @@ -1312,19 +1337,19 @@ msgstr "ネットプレイ:チャットをアクティブ" msgid "Active" msgstr "Active" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "活発な無限大係数:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Active thread queue" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Active threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "ビデオカード" @@ -1332,7 +1357,7 @@ msgstr "ビデオカード" msgid "Adapter Detected" msgstr "タップが接続されています" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "アダプター:" @@ -1342,7 +1367,7 @@ msgstr "アダプター:" msgid "Add" msgstr "追加" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Add &breakpoint" @@ -1371,51 +1396,48 @@ msgstr "Add a Memory Breakpoint" msgid "Add memory &breakpoint" msgstr "Add memory &breakpoint" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Add to &watch" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "追加..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Address" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Address Space" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Address space by CPU state" @@ -1503,12 +1525,12 @@ msgid "Advance Game Port" msgstr "アドバンスコネクタ" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "高度な設定" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "高度な設定" @@ -1523,36 +1545,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"ゲーム出力がウィンドウ解像度にどのようにスケーリングされるかに影響します。" -"
性能の大部分は、各手法が使用するサンプル数に依存します。
SSAAと比較す" -"ると、リサンプリングは出力ウィンドウが以下のような場合に有効です。
解像度" -"はエミュレーションのネイティブ解像度の倍数ではありません。

デフォル" -"ト - [最速]
内部GPUバイリニアサンプラーはガンマ補正されていません。" -"
ガンマ補正が強制的にオンになっている場合、この設定は無視されることがあり" -"ます。

バイリニア - [4 サンプル]
ピクセル間のガンマ補正線形" -"補間。

バイキューブリック - [16 サンプル]
ピクセル間のガンマ" -"補正3次補間です。
1080pと1440pなど、近い解像度の間でリスケーリングするのに" -"適しています。
さまざまなフレーバーがあります:
B-Spline:ぼやけて" -"いますが、ロービングアーチファクトはすべて回避しています
ミッシェル-ネ" -"トラバリ:ぼやけ具合とロービングの最適な中間点です
キャットムル-ロム" -":よりシャープですが、ロービングアーチファクトが発生する恐れががあります。" -"

シャープ・バイリニア - [1-4 サンプル]
Nearest Neighbor』同" -"様、シャープなルックスを維持します、
ただし、ちらつきを避けるためにブレン" -"ドも行います。
低解像度の2Dゲームに最適です。

エリアサンプリング" -" - [324サンプルまで]
ピクセルが占める面積の割合で重みをつけます。ガン" -"マ補正済みです。
2倍以上のスケールダウンに最適です。" -"

分からない場合は「デフォルト」を選択してください。" #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1560,16 +1563,16 @@ msgstr "アフリカ" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "風" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Aligned to data type length" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "すべて" @@ -1583,11 +1586,11 @@ msgid "All Double" msgstr "All Double" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1595,7 +1598,7 @@ msgid "All Files" msgstr "すべてのファイル" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "すべてのファイル (*)" @@ -1604,7 +1607,7 @@ msgstr "すべてのファイル (*)" msgid "All Float" msgstr "All Float" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "すべての GC/Wii ファイル" @@ -1613,8 +1616,8 @@ msgstr "すべての GC/Wii ファイル" msgid "All Hexadecimal" msgstr "All Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "全てのステートセーブファイル (*.sav *.s##);; 全てのファイル (*)" @@ -1626,7 +1629,7 @@ msgstr "すべての符号付き整数" msgid "All Unsigned Integer" msgstr "すべての符号なし整数" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "すべてのファイル (*)" @@ -1638,15 +1641,15 @@ msgstr "すべてのプレイヤーのチートコードは同期されました msgid "All players' saves synchronized." msgstr "すべてのプレイヤーのセーブデータは同期されました" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "コンソール上の言語設定の不一致を許可する" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "利用統計レポートを許可" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SDカードへの書き込みを許可する" @@ -1676,7 +1679,7 @@ msgstr "常に表示" msgid "Always Connected" msgstr "常時接続状態として扱う" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "常に最前面に表示(&T)" @@ -1714,15 +1717,15 @@ msgstr "アンチエイリアス:" msgid "Any Region" msgstr "すべて" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "に署名を追加する" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "既存の署名ファイルに追加...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Appl&y Signature File..." @@ -1743,7 +1746,7 @@ msgstr "Apploaderの日付" msgid "Apply" msgstr "適用" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "署名ファイルを適用する" @@ -1775,12 +1778,16 @@ msgstr "本当によろしいですか?" msgid "Area Sampling" msgstr "エリアサンプリング" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "アスペクト比" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "アスペクト比:" @@ -1788,7 +1795,7 @@ msgstr "アスペクト比:" msgid "Assemble" msgstr "アセンブル" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "アセンブル説明書" @@ -1796,7 +1803,7 @@ msgstr "アセンブル説明書" msgid "Assembler" msgstr "アセンブラ" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "アセンブリファイル" @@ -1815,7 +1822,7 @@ msgstr "" "インポートしようとしたセーブファイルの中に同一タイトルのものが複数含まれてい" "ます" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Wiiモーションプラスを取り付ける" @@ -1823,11 +1830,11 @@ msgstr "Wiiモーションプラスを取り付ける" 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 "タイムストレッチの設定" @@ -1839,12 +1846,12 @@ msgstr "オーストラリア" msgid "Author" msgstr "作者" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "開発チーム" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自動" @@ -1852,11 +1859,7 @@ msgstr "自動" msgid "Auto (Multiple of 640x528)" msgstr "自動 (640x528のn倍)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "自動保存" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "自動更新設定" @@ -1872,7 +1875,7 @@ msgstr "" "\n" "自動以外のレンダリング解像度に設定しなおしてください" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "ウィンドウサイズを自動調整する" @@ -1880,15 +1883,15 @@ msgstr "ウィンドウサイズを自動調整する" msgid "Auto-Hide" msgstr "未操作時に隠す" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO modules?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "次のフォルダと自動同期" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1897,18 +1900,18 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "現在の値を自動更新します" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "補助" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1916,7 +1919,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT が正しくありません。Dolphinを終了します。" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1926,31 +1929,35 @@ msgstr "" "ブのMACアドレスを使用する必要があります。00:09:bfまたは00:17:abで始まる新しい" "MACアドレスを生成してください。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP register " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "出力バックエンド" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "出力バックエンド:" @@ -1966,13 +1973,13 @@ msgstr "バックグラウンド操作を許可する" msgid "Backward" msgstr "後方" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "不正な値が指定されました" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "不正なアドレスが指定されました。" @@ -1980,20 +1987,20 @@ msgstr "不正なアドレスが指定されました。" msgid "Bad dump" msgstr "ダンプ不良" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "不正なオフセットが示されました。" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "不正な値が示されました。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "バナー" @@ -2013,15 +2020,15 @@ msgstr "バー" msgid "Base Address" msgstr "ベースアドレス" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "ベースの優先度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "基本設定" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "基本設定" @@ -2029,15 +2036,15 @@ msgstr "基本設定" msgid "Bass" msgstr "バスドラム" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "バッチモードの使用にはタイトルの指定が必須です" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "バッテリー残量" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "ベータ版 (ひと月に一度)" @@ -2061,33 +2068,33 @@ msgstr "Bicubic: Mitchell-Netravali" msgid "Bilinear" msgstr "バイリニア" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "バイナリー SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "バイナリー SSL (読み込み)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "バイナリー SSL (書き込み)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "ビットレート (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"次の場所でブランク図形の作成に失敗しました:\n" -"%1, 別の文字で再試行してください。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "ブロックサイズ" @@ -2096,7 +2103,7 @@ msgstr "ブロックサイズ" msgid "Block Size:" msgstr "ブロックサイズ:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "ブロッキング" @@ -2126,32 +2133,143 @@ msgstr "" "ドされました。\n" "パススルーの機能は使えません。" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "ブートから一時停止" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND バックアップファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii キー ファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "ボーダーレス フルスクリーン" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "下" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Branches" @@ -2189,11 +2307,11 @@ msgstr "ブロードバンドアダプタ (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "ブロードバンドアダプタ (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "ブロードバンドアダプタ DNS 設定" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "ブロードバンドアダプタのエラー" @@ -2203,11 +2321,11 @@ msgstr "ブロードバンドアダプタのエラー" msgid "Broadband Adapter MAC Address" msgstr "ブロードバンドアダプタ MACアドレス設定" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "ネットプレイセッションブラウザ...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "バッファサイズ" @@ -2242,7 +2360,7 @@ msgstr "ボタン" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2258,7 +2376,7 @@ msgstr "ボタン" msgid "Buttons" msgstr "ボタン" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "By: %1" @@ -2268,11 +2386,11 @@ msgstr "By: %1" msgid "C Stick" msgstr "Cスティック" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "署名ファイルの作成(&R)..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP register " @@ -2284,7 +2402,7 @@ msgstr "CPUのエミュレーション方式:" msgid "CPU Options" msgstr "CPU設定" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2292,7 +2410,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (低速)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2303,7 +2421,7 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "計算する" @@ -2319,11 +2437,11 @@ msgstr "" "速度低下を引き起こします。

よく分からなければ、" "チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "キャリブレーション開始" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "キャリブレーション" @@ -2331,19 +2449,19 @@ msgstr "キャリブレーション" msgid "Calibration Period" msgstr "キャリブレーション周期" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "ディスプレイリスト %1 を、サイズ %2 で呼び出します。" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Callers" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Calls" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Callstack" @@ -2352,65 +2470,77 @@ msgid "Camera 1" msgstr "カメラ 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "カメラの視野(ポインティングの感度に影響する)。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "仮想メモリ上の値に対してのみARコードを生成できます。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "まだ変更できません!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "このトロフィーの悪役は編集できません!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "接続ハンドル {0:02x} でWiiリモコンが見つかりません。" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "キャンセル" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "キャリブレーション中止" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "Cannot SingleStep the FIFO. Use Frame Advance instead." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "NANDへのインストールができなかったため、このWADファイルを起動できません" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "Cannot compare against last value on first search." -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "GC IPLが見つかりません" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Cannot generate AR code for this address." @@ -2418,19 +2548,21 @@ msgstr "Cannot generate AR code for this address." msgid "Cannot refresh without results." msgstr "Cannot refresh without results." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI フォルダを空のパスに設定できません。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "メモリーカードを空のパスに設定できません。" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "GC IPLが見つからないため、ゲームを開始できませんでした。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "悪役 %1 を捕獲しました。" @@ -2448,7 +2580,7 @@ msgstr "面" msgid "Center Mouse" msgstr "センターマウス" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "センタリングとキャリブレーション" @@ -2456,7 +2588,7 @@ msgstr "センタリングとキャリブレーション" msgid "Change &Disc" msgstr "ディスクの入れ替え(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "ディスクの入れ替え...(&D)" @@ -2464,7 +2596,7 @@ msgstr "ディスクの入れ替え...(&D)" msgid "Change Disc" msgstr "ディスクの入れ替え" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "ディスクの入れ替えを自動で行う" @@ -2472,7 +2604,7 @@ msgstr "ディスクの入れ替えを自動で行う" msgid "Change the disc to {0}" msgstr "次のディスクに変更:{0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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 +2638,7 @@ msgstr "変更されたチート内容は次回のゲーム開始時に反映さ msgid "Channel Partition (%1)" msgstr "チャンネルパーティション (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "入力された文字は無効です!" @@ -2518,15 +2650,15 @@ msgstr "チャット欄" msgid "Cheat Code Editor" msgstr "チートコードエディタ" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "コードサーチ" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "チートマネージャ" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "NANDの整合性チェックを実行..." @@ -2534,7 +2666,7 @@ msgstr "NANDの整合性チェックを実行..." msgid "Check for Game List Changes in the Background" msgstr "ゲームリストを常に更新する" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "最新版の入手先:" @@ -2553,27 +2685,27 @@ msgstr "チェックサム" msgid "China" msgstr "中国" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "メモリーカードを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "ファイルを開くか作成してください" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "プロパティ入力ファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "セカンダリー入力ファイルの選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "GCI ベース フォルダーを選択します" @@ -2600,15 +2732,19 @@ msgstr "クラシックコントローラ" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "全消去" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "キャッシュの消去" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "スロットの消去" @@ -2616,7 +2752,7 @@ msgstr "スロットの消去" msgid "Clock Override" msgstr "クロック周波数の変更" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "コードをコピーして編集..." @@ -2625,37 +2761,21 @@ msgstr "コードをコピーして編集..." msgid "Close" msgstr "閉じる" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Dolphinの設定(&N)" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Code Diff Tool" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Code Diff Tool Help" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "Code did not get executed" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2681,7 +2801,11 @@ msgstr "カラーコレクション:" msgid "Color Space" msgstr "色空間" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Combine &Two Signature Files..." @@ -2714,7 +2838,7 @@ msgstr "" "eShopでリリースされたゲームと比較すると、かなり良いダンプである可能性がありま" "す。Dolphinではこれを確認できません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "ゲーム開始前にシェーダをコンパイルする" @@ -2722,9 +2846,9 @@ msgstr "ゲーム開始前にシェーダをコンパイルする" msgid "Compiling Shaders" msgstr "シェーダをコンパイル中..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "圧縮形式" @@ -2737,10 +2861,16 @@ msgstr "圧縮レベル:" msgid "Compression:" msgstr "圧縮形式:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2860,7 +2990,7 @@ msgstr "" "なる可能性があります。NaNが返された場合は警告が出され、NaNになったvarが記録さ" "れます。" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "設定" @@ -2893,13 +3023,13 @@ msgstr "出力設定" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "出力バックエンド変更の確認" @@ -2907,7 +3037,7 @@ msgstr "出力バックエンド変更の確認" msgid "Confirm on Stop" msgstr "動作停止時に確認" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2918,15 +3048,15 @@ msgstr "確認" msgid "Connect" msgstr "ホストに接続" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "バランスWiiボードを接続する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USBキーボードを接続する" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "%1PのWiiリモコンを接続" @@ -2946,7 +3076,7 @@ msgstr "3PのWiiリモコンを接続" msgid "Connect Wii Remote 4" msgstr "4PのWiiリモコンを接続" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Wiiリモコンの接続" @@ -2987,7 +3117,7 @@ msgstr "ネットプレイゴルフモードのコントロール" msgid "Control Stick" msgstr "コントロールスティック" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "入力設定" @@ -3011,7 +3141,7 @@ msgstr "コントローラープロファイル 4" msgid "Controller Settings" msgstr "Dolphin コントローラ設定" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "コントローラー" @@ -3094,8 +3224,8 @@ msgstr "収束点" msgid "Convergence:" msgstr "収束点 (Convergence):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "変換に失敗しました。" @@ -3103,9 +3233,9 @@ msgstr "変換に失敗しました。" msgid "Convert" msgstr "ファイル形式の変換" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "ファイルをフォルダーに変換する" @@ -3113,9 +3243,9 @@ msgstr "ファイルをフォルダーに変換する" msgid "Convert File..." msgstr "このタイトルを変換..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "フォルダーをファイルに変換する" @@ -3139,8 +3269,8 @@ msgstr "" "このまま変換を行いますか?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "変換中..." @@ -3189,15 +3319,15 @@ msgstr "" msgid "Copy" msgstr "コピー" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Copy &function" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Copy &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Copy Address" @@ -3205,19 +3335,19 @@ msgstr "Copy Address" msgid "Copy Failed" msgstr "コピーに失敗しました。" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Copy Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Copy Value" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Copy code &line" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Copy tar&get address" @@ -3235,6 +3365,11 @@ msgstr "Bへコピー" msgid "Core" msgstr "コア" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "適切な色空間" @@ -3244,7 +3379,7 @@ msgid "Correct SDR Gamma" msgstr "適切なSDRガンマ" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Cost" @@ -3337,7 +3472,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "ファイル {0} を認識できませんでした" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "変更内容を保存できませんでした!" @@ -3383,13 +3518,13 @@ msgstr "ファイルを読み込めませんでした。" msgid "Country:" msgstr "発売国" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "作成" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "インフィニティファイルの作成" @@ -3398,15 +3533,11 @@ msgstr "インフィニティファイルの作成" msgid "Create New Memory Card" msgstr "新しくメモリーカードを作成" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "スカイランダーファイルの作成" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "スカイランダーフォルダの作成" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "他のデバイスのマッピングの作成" @@ -3415,22 +3546,8 @@ msgstr "他のデバイスのマッピングの作成" msgid "Create..." msgstr "作成..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"フレームダンプとスクリーンショットを、表示されるウィンドウのサイズではなく、" -"レンダラーの内部解像度で作成します。

アスペクト比がワイドスクリーンの" -"場合、出力画像は垂直解像度を保つために水平方向に拡大縮小されます。" -"

分からない場合はチェックを外してください。" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "制作者:" @@ -3438,11 +3555,11 @@ msgstr "制作者:" msgid "Critical" msgstr "致命的なエラー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "クロッピングを有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3458,11 +3575,11 @@ msgstr "" msgid "Crossfade" msgstr "クロスフェーダー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "CPUで頂点をカリングする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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, " @@ -3472,15 +3589,15 @@ msgstr "" "マンスと描画統計に影響するおそれがあります。

分から" "ない場合はチェックを外してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "現在の地域" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Current Value" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Current context" @@ -3488,27 +3605,31 @@ msgstr "Current context" msgid "Current game" msgstr "選択中のタイトル" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Current thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "カスタム" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "カスタムアドレス空間" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "カスタム アスペクト比の高さ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "カスタム アスペクト比の幅" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "カスタム アスペクト比:" @@ -3520,13 +3641,13 @@ msgstr "リアルタイムクロック設定" msgid "Custom:" msgstr "カスタム:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "カスタマイズ:" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3554,7 +3675,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のエミュレーション方式:" @@ -3562,15 +3683,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 (低速)" @@ -3596,7 +3717,7 @@ msgstr "マットコントローラ" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "ダーク" @@ -3612,7 +3733,7 @@ msgstr "データパーティション (%1)" msgid "Data Transfer" msgstr "データ転送" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Data Type" @@ -3645,8 +3766,8 @@ msgstr "遊びの調整" msgid "Debug" msgstr "デバッグ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "デバッグ用" @@ -3655,7 +3776,7 @@ msgstr "デバッグ用" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "デコード精度" @@ -3702,7 +3823,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 "既定のデバイス" @@ -3714,11 +3835,11 @@ msgstr "既定のフォント" msgid "Default ISO:" msgstr "デフォルトISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Default thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Defer EFB Cache Invalidation" @@ -3726,7 +3847,7 @@ msgstr "Defer EFB Cache Invalidation" msgid "Defer EFB Copies to RAM" msgstr "メモリへのコピーを遅延させる" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3771,26 +3892,53 @@ msgstr "深度 比率変更:" msgid "Depth:" msgstr "深度 (Depth):" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "説明" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "説明" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "説明: %1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Detached" @@ -3798,7 +3946,7 @@ msgstr "Detached" msgid "Detect" msgstr "検出" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Detecting RSO Modules" @@ -3806,7 +3954,7 @@ msgstr "Detecting RSO Modules" msgid "Deterministic dual core:" msgstr "Deterministic dual core: " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "開発者向け (起動する度に確認)" @@ -3815,7 +3963,7 @@ msgid "Device" msgstr "デバイス" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "デバイス PID (例: 0305)" @@ -3824,11 +3972,11 @@ msgid "Device Settings" msgstr "デバイス設定" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "デバイス:" @@ -3836,11 +3984,7 @@ msgstr "デバイス:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 を有効な Riivolution XML ファイルとして認識されませんでした。" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Diff" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "5分間操作がない状態が続くと、画面を暗くするようにします" @@ -3852,12 +3996,12 @@ msgstr "直接接続 (Direct)" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "未接続(&c)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Disable" @@ -3869,7 +4013,7 @@ msgstr "Bounding Box を無効にする" msgid "Disable Copy Filter" msgstr "Disable Copy Filter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" @@ -3877,11 +4021,11 @@ msgstr "Disable EFB VRAM Copies" msgid "Disable Emulation Speed Limit" msgstr "エミュレーション速度 無効化" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Disable Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "ファストメム・アリーナを無効にします" @@ -3889,11 +4033,11 @@ msgstr "ファストメム・アリーナを無効にします" msgid "Disable Fog" msgstr "フォグを無効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "大規模なエントリ ポイント マップを無効にします" @@ -3911,7 +4055,7 @@ msgstr "" "ますが、タイトルによっては不具合が発生します。

よく" "分からなければ、チェックを外さないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4272,7 +4412,7 @@ msgstr "" "

よく分からない場合は、このチェックを外したままにし" "てください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4291,15 +4431,15 @@ msgstr "ターボボタンを離す時間(フレーム):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "オランダ語" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "終了" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "EFB copy %1" @@ -4330,7 +4470,7 @@ msgstr "Early Memory Updates" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "土" @@ -4343,7 +4483,7 @@ msgstr "東アジア" msgid "Edit Breakpoint" msgstr "Edit Breakpoint" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Edit..." @@ -4359,15 +4499,15 @@ msgstr "エフェクト" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effective" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Effective priority" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4377,7 +4517,7 @@ msgstr "ディスクの取り出し" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "要素" @@ -4385,11 +4525,11 @@ msgstr "要素" msgid "Embedded Frame Buffer (EFB)" msgstr "Embedded Frame Buffer (内蔵フレームバッファ)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "空き" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "エミュレーションスレッドはすでに稼働中です" @@ -4397,11 +4537,11 @@ msgstr "エミュレーションスレッドはすでに稼働中です" msgid "Emulate Disc Speed" msgstr "ディスク速度をエミュレートする" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "インフィニティベースをエミュレートする" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Skylander ポータルをエミュレートする" @@ -4417,7 +4557,7 @@ msgstr "" "実際のハードウェアのディスク速度をエミュレートします。無効にすると不安定にな" "ることがあります。デフォルトはTrueです" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "USBデバイスをエミュレート" @@ -4440,28 +4580,16 @@ msgstr "" msgid "Emulation Speed" msgstr "エミュレーション速度" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "ファイルを読み込む前にエミュレーションを開始する必要があります。" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "ファイルを保存する前にエミュレーションを開始する必要があります。" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "Emulation must be started to record." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Enable API Validation Layers" @@ -4473,11 +4601,11 @@ msgstr "実績バッジを有効にする" msgid "Enable Achievements" msgstr "実績を有効にする" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "タイムストレッチを有効にする (Audio Stretching)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "チートコードを有効にする" @@ -4497,7 +4625,7 @@ msgstr "デバッグUIを有効にする" msgid "Enable Dual Core" msgstr "デュアルコア動作を行う" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "デュアルコア動作を行う (速度向上)" @@ -4517,7 +4645,7 @@ msgstr "アンコール実績を有効にする" msgid "Enable FPRF" msgstr "Enable FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "グラフィック MOD を有効にする" @@ -4557,6 +4685,10 @@ msgstr "" "ム実行中にハードコアモードをオフにするには、再度有効にする前にゲームを終了す" "る必要があることに注意してください。" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "リーダーボードを有効にする" @@ -4570,7 +4702,7 @@ msgstr "MMU (メモリ管理ユニット) を有効にする" msgid "Enable Progress Notifications" msgstr "進捗状況の通知を有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "プログレッシブ表示を有効にする" @@ -4583,11 +4715,11 @@ msgid "Enable Rich Presence" msgstr "リッチプレゼンスを有効にする" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "振動を有効にする" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "スクリーンセーバーを有効にする" @@ -4599,15 +4731,15 @@ msgstr "Wiiリモコンのスピーカーを有効にする" msgid "Enable Unofficial Achievements" msgstr "非公式アチーブメントを有効にする" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "統計レポートの収集に協力する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink経由でWiiConnect24を有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "ワイヤーフレーム表示を有効にする" @@ -4703,7 +4835,7 @@ msgstr "" "実績とは、RetroAchievementsによって公式とみなされていないオプションの実績や未" "完成の実績のことで、テスト用や単に楽しむために役立ちます。" -#: 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." @@ -4749,7 +4881,7 @@ msgstr "" "まにしておくこと。

よく分からない場合は、チェックを" "外したままにしておいてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4762,7 +4894,7 @@ msgstr "" "ます。

よく分からない場合は、チェックを外したままに" "してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4789,7 +4921,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 "有効にすると音声をエミュレーション速度に合わせて伸長させます" @@ -4825,7 +4957,7 @@ msgstr "" "速)

よく分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4838,7 +4970,7 @@ msgstr "" "利用規約を読む場合は次のURLを参照してください。: https://www.wiilink24.com/" "tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4850,7 +4982,7 @@ msgstr "" "バッグシンボルも有効にします。

よく分からない場合" "は、このチェックを外したままにしてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4881,7 +5013,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "英語" @@ -4890,7 +5022,7 @@ msgstr "英語" msgid "Enhancements" msgstr "画質向上の設定" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" "XLink Kai クライアントを実行しているデバイスの IP アドレスを入力してくださ" @@ -4914,11 +5046,17 @@ msgstr "ブロードバンドアダプタのMACアドレスを入力してくだ msgid "Enter password" msgstr "ここにパスワードを入力" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "使用するDNSサーバーを入力してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Enter the RSO module address:" @@ -4927,8 +5065,8 @@ msgstr "Enter the RSO module address:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4939,45 +5077,51 @@ msgstr "Enter the RSO module address:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4987,16 +5131,16 @@ msgstr "Enter the RSO module address:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "エラー" @@ -5013,9 +5157,9 @@ msgstr "アダプタのオープン時にエラーが発生しました: %1" msgid "Error collecting save data!" msgstr "セーブデータ収集時にエラーが発生しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "値の変換中にエラーが発生しました" @@ -5028,7 +5172,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "セッションリストの取得エラー: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "テクスチャパックの読み込み中にエラーが発生しました" @@ -5097,7 +5241,7 @@ msgid "Error: This build does not support emulated GBA controllers" msgstr "" "エラー: このビルドはエミュレートされたGBAコントローラをサポートしていません。" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5105,7 +5249,7 @@ msgstr "" "エラー: Shift-JISフォントにアクセスを試みましたが読み込めませんでした。ゲー" "ムはフォントを正しく表示できないか、クラッシュするでしょう" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5126,55 +5270,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "ヨーロッパ" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Excluded: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Excluded: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Uber (統合) シェーダーだけを使用する" @@ -5182,7 +5283,7 @@ msgstr "Uber (統合) シェーダーだけを使用する" msgid "Exit" msgstr "Dolphinを終了" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "必要 + または閉じカッコ。" @@ -5190,7 +5291,7 @@ msgstr "必要 + または閉じカッコ。" msgid "Expected arguments: " msgstr "入力値の検証:変数の入力待ち" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "閉じカッコが必要です。" @@ -5202,15 +5303,15 @@ msgstr "コンマが必要です。" msgid "Expected end of expression." msgstr "入力値の検証:演算子に続く入力待ち" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "名前入力が必要です。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "開きカッコが必要です。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "入力値の検証:入力待ち" @@ -5218,11 +5319,11 @@ msgstr "入力値の検証:入力待ち" msgid "Expected variable name." msgstr "変数名が必要です。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "実験的" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "全てのWiiセーブデータをエクスポート" @@ -5237,7 +5338,7 @@ msgstr "エクスポート失敗" msgid "Export Recording" msgstr "録画ファイルのエクスポート" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "録画ファイルのエクスポート..." @@ -5265,14 +5366,14 @@ msgstr "GCS形式でエクスポート..." msgid "Export as .&sav..." msgstr "SAV形式でエクスポート..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n個のファイルをエクスポートしました" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "拡張コントローラ" @@ -5293,7 +5394,7 @@ msgstr "External" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (外部フレームバッファ)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "証明書ファイルをNANDから取り出す" @@ -5326,12 +5427,12 @@ msgid "Extracting Directory..." msgstr "このディレクトリを抽出..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO プレーヤー" @@ -5351,7 +5452,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "このセッションを NetPlay インデックスに追加できませんでした: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5359,13 +5460,13 @@ msgstr "Failed to append to signature file '%1'" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "BT パススルーのインターフェースを要求できませんでした: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Skylanderをクリアできませんでした!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "スロット (%1) からSkylanderをクリアできませんでした!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5392,23 +5493,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Infinityファイルの作成に失敗しました" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Skylanderファイルの作成に失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Skylanderファイルの作成に失敗しました:\n" -"%1\n" -"(Skylanderはすでにポータルにある可能性があります)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5430,15 +5529,15 @@ msgstr "選択したファイルの削除に失敗しました" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "BTパススルー用カーネルドライバーの切り離しに失敗しました: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "コードの取得に失敗しました" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Failed to dump %1: Can't open file" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Failed to dump %1: Failed to write to file" @@ -5451,7 +5550,7 @@ msgstr "%nから%1 セーブファイルのエクスポートに失敗しまし msgid "Failed to export the following save files:" msgstr "次のセーブファイルをエクスポートできませんでした:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "証明書ファイルの取り出しに失敗" @@ -5477,22 +5576,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Failed to find one or more D3D symbols" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "ファイルの検索または開くことができませんでした: %1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "\"%1\" をインポートできませんでした" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "セーブファイルのインポートに失敗しました。一度ゲームを起動してから、再度お試" "しください。" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5500,7 +5595,7 @@ msgstr "" "セーブファイルのインポートに失敗しました。指定されたファイルは破損している" "か、有効な Wiiセーブファイルではありません。" -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5510,7 +5605,7 @@ msgstr "" "ルへのアクセスを妨げている可能性があります。NANDを修復し(ツール -> NANDの管" "理 -> NANDのチェック...)、セーブファイルを再度インポートしてみてください。" -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "コアの初期化に失敗しました" @@ -5524,7 +5619,7 @@ msgstr "" "ビデオカードが少なくともD3D 10.0をサポートしていることを確認してください。\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "レンダラー・クラスの初期化に失敗しました。" @@ -5533,11 +5628,11 @@ msgid "Failed to install pack: %1" msgstr "リソースパック %1 をインストールできませんでした" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "タイトルのインストールに失敗" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5545,8 +5640,8 @@ msgstr "" "ポート番号 %1 で待ち受けできませんでした。別のネットプレイサーバーが実行中に" "なっていませんか?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "%1 にて RSO モジュールをロードできませんでした" @@ -5558,19 +5653,21 @@ msgstr "d3d11.dllのロードに失敗しました" msgid "Failed to load dxgi.dll" msgstr "dxgi.dllのロードに失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "マップ ファイル '%1' のロードに失敗しました" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Skylanderファイルのロードに失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Skylanderファイル (%1) のロードに失敗しました!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "実行ファイルをメモリに読み込めませんでした。" @@ -5582,13 +5679,21 @@ msgstr "" "{0}のロードに失敗しました。Windows 7を使用している場合は、KB4019990更新パッ" "ケージをインストールしてみてください。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Skylanderの修正に失敗しました!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "'%1' のオープンに失敗しました" @@ -5596,6 +5701,10 @@ msgstr "'%1' のオープンに失敗しました" msgid "Failed to open Bluetooth device: {0}" msgstr "Bluetooth デバイスのオープンに失敗しました: {0}" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "設定ファイルのオープンに失敗しました!" @@ -5625,33 +5734,33 @@ msgstr "" msgid "Failed to open file." msgstr "ファイルのオープンに失敗しました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "サーバーを開けませんでした" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Infinity ファイルのオープンに失敗しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Infinity ファイル (%1) のオープンに失敗しました。\n" -"ファイルはすでにベースで使用されている可能性があります。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Skylanderファイルのオープンに失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Skylanderファイル(%1)のオープンに失敗しました!\n" -"ファイルはすでにポータル上で使用されている可能性があります。" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5673,7 +5782,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Redump.orgデータの解析に失敗しました。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "指定された値を目的のデータ型に解析変換できませんでした。" @@ -5695,39 +5804,35 @@ msgstr "入力ファイル \"{0}\" からの読み込みに失敗しました。 msgid "Failed to read selected savefile(s) from memory card." msgstr "メモリーカードから選択したセーブファイルの読み込みに失敗しました。" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Infinityファイルの読み込みに失敗しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Infinity ファイル (%1) の読み込みに失敗しました!\n" -"ファイルが小さすぎます。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Skylanderファイルの読み込みに失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Skylander ファイル (%1) の読み込みに失敗しました!\n" -"ファイルが小さすぎます。" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"ファイルの内容の読み取りに失敗しました\n" -"\n" -"\"%1\"" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5769,31 +5874,31 @@ msgstr "" "NetPlayリダイレクトフォルダのリセットに失敗しました。書き込み権限を確認してく" "ださい。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "FIFOログの保存に失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "ファイルを次の場所に保存できませんでした: %1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5849,7 +5954,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "失敗" @@ -5857,11 +5962,11 @@ msgstr "失敗" msgid "Fair Input Delay" msgstr "Fair Input Delay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "既定の地域" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "既定の地域:" @@ -5874,7 +5979,7 @@ msgstr "Fast" msgid "Fast Depth Calculation" msgstr "深度の計算を高速に行う" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5887,11 +5992,11 @@ msgstr "" msgid "Field of View" msgstr "視野角(Field of View)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "図番号:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "図の種類" @@ -5899,9 +6004,9 @@ msgstr "図の種類" msgid "File Details" msgstr "ファイル情報" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "ファイル形式" @@ -5913,20 +6018,20 @@ msgstr "ファイル形式:" msgid "File Info" msgstr "ファイル情報" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "ファイル名" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "ファイルパス" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "ファイルサイズ" @@ -5934,7 +6039,7 @@ msgstr "ファイルサイズ" msgid "File Size:" msgstr "ファイルサイズ:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "コードを含まないファイルです" @@ -5971,15 +6076,15 @@ msgstr "構造" msgid "Filters" msgstr "フィルタ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Find &Next" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Find &Previous" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "キャリブレーション終了" @@ -5993,7 +6098,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "火" @@ -6009,31 +6114,32 @@ msgstr "チェックサムを修正" msgid "Fix Checksums Failed" msgstr "チェックサムの修正に失敗" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flags" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Follow &branch" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "最良の結果を得るには、全ての方向に対しゆっくりと入力を行ってください" @@ -6045,7 +6151,7 @@ msgstr "" "セットアップ方法については、このページを参照してください。" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -6053,7 +6159,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 にする" @@ -6061,7 +6167,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 にする" @@ -6093,12 +6199,12 @@ msgstr "接続待ちポートを次の番号で固定:" msgid "Force Nearest" msgstr "ニアレストを強制" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "%1 はジオメトリシェーダーをサポートしていないため、強制的にオンになりました。" @@ -6146,17 +6252,17 @@ msgstr "前方" msgid "Forward port (UPnP)" msgstr "ポート開放を自動で設定 (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Found %1 results for \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "Found %n address(es)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Frame %1" @@ -6177,7 +6283,7 @@ msgstr "Frame Advance速度 増加" msgid "Frame Advance Reset Speed" msgstr "Frame Advance速度 リセット" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Frame Dumping" @@ -6185,7 +6291,7 @@ msgstr "Frame Dumping" msgid "Frame Range" msgstr "フレームの範囲" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "フレームダンプイメージ '{0}' はすでに存在します。上書きしますか?" @@ -6209,7 +6315,7 @@ msgstr "追加可能なファイル数:%1" msgid "Free Look Control Type" msgstr "フリールックカメラの操作タイプ" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "フリールック コントローラ設定 %1" @@ -6244,7 +6350,7 @@ msgstr "フリールック 切替" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "フランス語" @@ -6268,7 +6374,7 @@ msgstr "開始" msgid "From:" msgstr "開始" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "全画面" @@ -6300,7 +6406,7 @@ msgstr "GBA コア" msgid "GBA Port %1" msgstr "GBAポート %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA設定" @@ -6439,20 +6545,20 @@ msgstr "" "OpenGL 2.xに対応したビデオカードを使っていますか?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "タイトル" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "ゲームボーイアドバンス" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "ゲームボーイアドバンスROMファイル (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6460,7 +6566,7 @@ msgstr "" "ゲームボーイアドバンス ROMファイル (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *." "rom *.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "ポート %1 のゲームボーイアドバンス" @@ -6488,8 +6594,8 @@ msgstr "ゲームガンマ" msgid "Game Gamma:" msgstr "ゲームガンマ:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ゲームID" @@ -6554,11 +6660,11 @@ msgstr "Wii U用ゲームキューブコントローラ接続タップ" msgid "GameCube Adapter for Wii U at Port %1" msgstr "ポート %1のWii U用ゲームキューブコントローラ接続タップ" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "ゲームキューブ コントローラー" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "ポート %1のゲームキューブ コントローラ" @@ -6566,11 +6672,11 @@ msgstr "ポート %1のゲームキューブ コントローラ" msgid "GameCube Controllers" msgstr "ゲームキューブ デバイス設定" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "ゲームキューブ キーボード" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "ポート %1のゲームキューブ キーボード" @@ -6583,11 +6689,11 @@ msgid "GameCube Memory Cards" msgstr "ゲームキューブ メモリーカードファイル" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "ゲームキューブ メモリーカードファイル (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "スロット %1のゲームキューブ マイク" @@ -6615,7 +6721,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Geckoコード" @@ -6625,35 +6731,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "一般" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "全般" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "新しい統計IDを作成する" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "ドイツ語" @@ -6665,18 +6771,18 @@ msgstr "ドイツ" msgid "GetDeviceList failed: {0}" msgstr "デバイスリストの取得に失敗しました: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "ジャイアント" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "ジャイアンツ" @@ -6689,8 +6795,8 @@ msgid "Good dump" msgstr "Good dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "グラフィック" @@ -6733,7 +6839,7 @@ msgstr "緑 - 左" msgid "Green Right" msgstr "緑 - 右" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "グリッド表示" @@ -6742,7 +6848,7 @@ msgstr "グリッド表示" msgid "Guitar" msgstr "ギターコントローラ" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "ジャイロスコープ" @@ -6770,36 +6876,35 @@ msgstr "HDRポストプロセスを有効にする" msgid "Hacks" msgstr "高速化(Hacks)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Head" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "ヘルプ" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "ヒーローレベル:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Hex Byte String" @@ -6812,7 +6917,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "隠す" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "すべて非表示" @@ -6828,12 +6937,12 @@ msgstr "互換性のないセッションを隠す" msgid "Hide Remote GBAs" msgstr "リモート先のGBAを隠す" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "高" @@ -6842,14 +6951,8 @@ msgstr "高" msgid "Hit Strength" msgstr "叩く強さ" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Hits" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "水平視野" @@ -6866,7 +6969,7 @@ msgstr "ホストコード:" msgid "Host Input Authority" msgstr "Host Input Authority" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Host Size" @@ -6894,16 +6997,16 @@ msgstr "Host Input Authority が有効になりました" msgid "Host with NetPlay" msgstr "ネットプレイを開始(ホスト)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Hostname" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "ホットキーのカスタマイズ" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "ホットキー" @@ -6912,7 +7015,7 @@ msgstr "ホットキー" msgid "Hotkeys Require Window Focus" msgstr "フォーカスがあるときのみホットキーを動作させる" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Uber (統合) シェーダーを一部使用する" @@ -6926,16 +7029,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "リスクは分かっていますし、これからも続けていきたいです" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "入力されたIDは無効です!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -6976,7 +7079,7 @@ msgid "IR" msgstr "ポインタ" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Wiiリモコンの感度" @@ -7026,11 +7129,11 @@ msgstr "" "いつでもホスト(レイテンシが0になる人)を切り替えられるのが特徴です\n" "ゴルフのような、タイミングにシビアなターン制ゲームに最適です" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "IDの作成" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -7100,11 +7203,15 @@ msgstr "" msgid "Ignore" msgstr "無視" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "フォーマットの変更を無視する" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "このセッションでは無視" @@ -7136,7 +7243,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFBを即時表示する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7150,7 +7257,7 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND バックアップをインポート..." @@ -7165,15 +7272,15 @@ msgstr "インポートに失敗" msgid "Import Save File(s)" msgstr "セーブファイルのインポート" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Wii セーブデータのインポート..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "NAND バックアップをインポート" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7186,15 +7293,6 @@ msgstr "" msgid "In-Game?" msgstr "プレイ中?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Included: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Included: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7207,27 +7305,27 @@ msgstr "" "ロード時の処理時間は増加します

よく分からなければ、" "チェックを外さないでください。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "ヒーローレベルの値が間違っています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "最終順位のタイムが間違っています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "最終リセットタイムが間違っています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "貨幣の値が間違っています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "ニックネームが間違っています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "再生時間の値が間違っています!" @@ -7272,15 +7370,16 @@ msgstr "インクリメンタルローテション" msgid "Incremental Rotation (rad/sec)" msgstr "インクリメンタルローテーション(rad/秒)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "インフィニティ・フィギュア・クリエイター" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "インフィニティマネージャー" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "インフィニティオブジェクト (*.bin);;" @@ -7302,8 +7401,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "情報" @@ -7317,10 +7416,10 @@ msgstr "インジェクト" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "入力" @@ -7334,20 +7433,26 @@ msgstr "起動に必要な入力値。" msgid "Input strength to ignore and remap." msgstr "無視してリマップする入力値。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Insert &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SDカードの挿入をエミュレートする" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Inspected" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7361,7 +7466,7 @@ msgstr "インストールパーティション (%1)" msgid "Install Update" msgstr "自動更新" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WiiメニューにWADファイルを追加..." @@ -7369,11 +7474,13 @@ msgstr "WiiメニューにWADファイルを追加..." msgid "Install to the NAND" msgstr "NANDへインストール" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruction" @@ -7382,7 +7489,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Instruction Breakpoint" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instruction:" @@ -7391,7 +7498,7 @@ msgstr "Instruction:" msgid "Instruction: %1" msgstr "Instruction: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7412,19 +7519,19 @@ msgstr "強さ" msgid "Interface" msgstr "表示" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "内部 LZ4 エラー - {0} bytesの展開を試行しました" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "内部 LZ4 エラー - 圧縮に失敗しました" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "内部 LZ4 エラー - 展開に失敗しました ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "内部 LZ4 エラー - ペイロードサイズの不一致 ({0} / {1}))" @@ -7437,7 +7544,7 @@ msgstr "Internal LZO Error - compression failed" msgid "Internal LZO Error - decompression failed" msgstr "Internal LZO Error - compression failed" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7445,7 +7552,7 @@ msgstr "" "内部 LZO エラー - 展開に失敗しました ({0}) ({1})\n" "古いセーブステートのバージョン情報を取得できません。" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7453,7 +7560,7 @@ msgstr "" "内部 LZO エラー - 解凍されたバージョンのクッキーとバージョン文字列長 ({0}) の" "解析に失敗しました。" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7470,7 +7577,7 @@ msgstr "レンダリング解像度" msgid "Internal Resolution:" msgstr "内部解像度:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Internal error while generating AR code." @@ -7478,11 +7585,11 @@ msgstr "Internal error while generating AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (非常に低速)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreter Core" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "無効な表現です。" @@ -7494,7 +7601,7 @@ msgstr "自動更新サービスから無効な JSON を受信しました: {0}" msgid "Invalid Mixed Code" msgstr "Invalid Mixed Code" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "無効なリソースパック %1 が与えられました:%2" @@ -7503,11 +7610,11 @@ msgstr "無効なリソースパック %1 が与えられました:%2" msgid "Invalid Player ID" msgstr "無効なプレイヤーID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Invalid callstack" @@ -7536,7 +7643,7 @@ msgstr "Invalid input provided" msgid "Invalid literal." msgstr "無効な即値です。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Invalid parameters given to search." @@ -7548,19 +7655,19 @@ msgstr "入力されたパスワードが無効です。" msgid "Invalid recording file" msgstr "不正な録画ファイル" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Invalid search parameters (no object selected)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Invalid search string (couldn't convert to number)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Invalid search string (only even string lengths supported)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "無効なタイトルID" @@ -7570,7 +7677,7 @@ msgstr "Invalid watch address: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "イタリア語" @@ -7579,63 +7686,63 @@ msgid "Italy" msgstr "イタリア" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "アイテム" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7647,16 +7754,16 @@ msgstr "JIT Recompiler for ARM64 (推奨)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (推奨)" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7665,12 +7772,16 @@ msgstr "" "このエラーは起こらないはずです。この状況をバグトラッカーへ報告してください。" "Dolphinを終了します。" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "日本" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "日本語" @@ -7681,7 +7792,7 @@ msgstr "日本語" msgid "Japanese (Shift-JIS)" msgstr "日本用 (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7689,7 +7800,7 @@ msgstr "" "カオスはこのトロフィーの唯一の悪役であり、常にロック解除されています。何も編" "集する必要はありません!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Keep Running" @@ -7703,7 +7814,7 @@ msgstr "最前面に表示する" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Keep addresses where value in memory" @@ -7724,7 +7835,7 @@ msgstr "キーボードコントローラ" msgid "Keys" msgstr "キー" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7732,12 +7843,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "選択したプレイヤーをキック" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "韓国" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "韓国語" @@ -7748,7 +7859,7 @@ msgstr "韓国語" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "ROMをロード...(&o)" @@ -7758,7 +7869,7 @@ msgstr "ROMをロード...(&o)" msgid "L-Analog" msgstr "L (アナログ)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR Save" @@ -7766,35 +7877,37 @@ msgstr "LR Save" msgid "Label" msgstr "Label" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Last Value" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "最終順位:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7870,13 +7983,13 @@ msgstr "" msgid "Levers" msgstr "レバー" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "ライセンス" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "ライフ" @@ -7890,7 +8003,7 @@ msgstr "リフト" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "ライト" @@ -7898,11 +8011,11 @@ msgstr "ライト" msgid "Limit Chunked Upload Speed:" msgstr "Limit Chunked Upload Speed:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "ゲームリストカラムの表示" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "リスト表示" @@ -7913,29 +8026,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "読込" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "カスタムテクスチャを読み込む" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "ファイルの読み込み" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "ゲームキューブ メインメニューを起動" @@ -7956,7 +8076,7 @@ msgstr "ロードパス:" msgid "Load ROM" msgstr "ROMの読込" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "ロードスロット" @@ -8045,19 +8165,19 @@ msgstr "ステートロード - スロット 8" msgid "Load State Slot 9" msgstr "ステートロード - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "ファイルからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "次のスロットからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Wiiメニュー %1 を起動" @@ -8069,16 +8189,16 @@ msgstr "ホストのセーブデータの読み込みと書き込み" msgid "Load from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Load map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "vWii システム・メニュー %1 を読み込みます。" @@ -8086,11 +8206,11 @@ msgstr "vWii システム・メニュー %1 を読み込みます。" msgid "Load..." msgstr "読込..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Loaded symbols from '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8101,7 +8221,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/

よく" "分からなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8124,7 +8244,7 @@ msgid "Locked" msgstr "ロックされています" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "ログ" @@ -8136,7 +8256,7 @@ msgstr "ログの設定" msgid "Log In" msgstr "ログイン" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -8144,7 +8264,7 @@ msgstr "Log JIT Instruction Coverage" msgid "Log Out" msgstr "ログアウト" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "レンダリング時間を記録" @@ -8160,7 +8280,7 @@ msgstr "ログ出力先" msgid "Login Failed" msgstr "ログインに失敗しました" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8179,16 +8299,16 @@ msgstr "ループ" msgid "Lost connection to NetPlay server..." msgstr "ネットプレイサーバーへの接続が失われました..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "低" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8196,7 +8316,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -8206,7 +8326,7 @@ msgstr "MadCatz Gameshark 形式" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "まほう" @@ -8214,37 +8334,37 @@ msgstr "まほう" msgid "Main Stick" msgstr "コントロールスティック" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "ヒーロー レベルの値が 0 ~ 100 であることを確認してください!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "最後にセットされたdatetime値が有効であることを確認してください!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "最終リセット日時の値が有効であることを確認してください!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "金額が 0 ~ 65000 の範囲であることを確認してください。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "ニックネームは0文字以上15文字以下で入力してください!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "プレイタイムの値が有効であることを確認してください!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "スロット %1 に Skylander があることを確認してください!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "メーカー" @@ -8265,12 +8385,12 @@ msgstr "" "ません。

よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Wii NANDの管理" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "手動テクスチャサンプリングを有効にする" @@ -8282,7 +8402,7 @@ msgstr "コントローラ割当位置" msgid "Mask ROM" msgstr "マスクロム" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Match Found" @@ -8299,18 +8419,18 @@ msgstr "最大バッファサイズが変更されました: %1" msgid "Maximum tilt angle." msgstr "最大傾斜角度。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "中" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Memory" @@ -8322,7 +8442,7 @@ msgstr "Memory Breakpoint" msgid "Memory Card" msgstr "メモリーカード" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "GCメモリーカードマネージャ" @@ -8334,7 +8454,7 @@ msgstr "メモリーカードパス:" msgid "Memory Override" msgstr "メモリ容量の変更" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Memory breakpoint options" @@ -8353,7 +8473,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "メモリーカード: 無効な宛先アドレス ({0:#x}) で Write が呼び出されました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8367,29 +8487,33 @@ msgstr "" "\n" "続行しますか?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "マイク" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "ミニ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "その他" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "その他の設定" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8417,12 +8541,16 @@ msgstr "" "- タイトル:{3}\n" "- ハッシュ: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8432,24 +8560,25 @@ msgstr "" "機能を使用するにはゲームの再起動が必要です。

よく分" "からなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "スロットの変更" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "スカイランダーを修正中: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Modules found: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "貨幣:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "モノラル" @@ -8461,16 +8590,16 @@ msgstr "Monoscopic Shadows" msgid "Monospaced Font" msgstr "等幅フォント" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "モーション(外部入力)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "モーション" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "モーター" @@ -8509,6 +8638,10 @@ msgstr "" "ムービー {0} はセーブステートから開始することを示していますが、{1} は存在しま" "せん。ムービーは同期しない可能性があります!" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8518,10 +8651,10 @@ msgstr "乗数" msgid "N&o to All" msgstr "すべていいえ(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 整合性チェック" @@ -8530,8 +8663,8 @@ msgstr "NAND 整合性チェック" msgid "NKit Warning" msgstr "NKit Warning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8540,7 +8673,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8562,25 +8695,25 @@ msgstr "" "に合わせてください。

分からない場合は2.35のままにし" "ておいてください。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "名前" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "新しいタグに名前を付ける:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "削除するタグ名を入力" @@ -8589,7 +8722,7 @@ msgid "Name of your session shown in the server browser" msgstr "セッションブラウザに表示するルーム名を入力" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8653,7 +8786,7 @@ msgstr "" msgid "Network" msgstr "ネットワーク関係" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Network dump format:" @@ -8683,7 +8816,7 @@ msgstr "新規ファイル" msgid "New File (%1)" msgstr "新規ファイル (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "新しい検索" @@ -8691,7 +8824,7 @@ msgstr "新しい検索" msgid "New Tag..." msgstr "新しいタグ..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "新しいIDが作成されました。" @@ -8699,7 +8832,7 @@ msgstr "新しいIDが作成されました。" msgid "New instruction:" msgstr "New instruction:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "新しいタグ" @@ -8708,7 +8841,7 @@ msgstr "新しいタグ" msgid "Next Game Profile" msgstr "次のゲームプロファイル" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Next Match" @@ -8722,7 +8855,7 @@ msgid "Nickname is too long." msgstr "ニックネームが長すぎます" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "ニックネーム:" @@ -8736,7 +8869,7 @@ msgstr "いいえ" msgid "No Adapter Detected" msgstr "タップは未接続です" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "No Alignment" @@ -8750,7 +8883,7 @@ msgstr "出力しない" msgid "No Compression" msgstr "無圧縮" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "No Match" @@ -8758,16 +8891,16 @@ msgstr "No Match" msgid "No Save Data" msgstr "セーブデータがありません" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "変更するデータはありません!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "No description available" @@ -8783,15 +8916,15 @@ msgstr "拡張コントローラが選択されていません" msgid "No file loaded / recorded." msgstr "読み込み/記録ファイルなし" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "No game is running." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "No game running." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "グラフィック MOD が選択されていません" @@ -8800,7 +8933,7 @@ msgstr "グラフィック MOD が選択されていません" msgid "No input" msgstr "入力なし" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "問題は見つかりませんでした" @@ -8812,10 +8945,6 @@ msgstr "一致するゲームは見つかりませんでした" msgid "No paths found in the M3U file \"{0}\"" msgstr "M3Uファイル \"{0}\" にパスが見つかりません" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "No possible functions left. Reset." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "問題は見つかりませんでした" @@ -8830,11 +8959,11 @@ msgstr "" "ムデータには整合性を示すデータが多く含まれているので、エミュレーションに大き" "な支障は出ないと思われます。" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "ゲーム設定 '{0}' のプロファイルが見つかりません" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "No recording loaded." @@ -8843,7 +8972,7 @@ msgstr "No recording loaded." msgid "No save data found." msgstr "セーブデータが見つかりませんでした" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "undo.dtm ファイルが見つかりません。desync を防止するためステートロードの取消" @@ -8852,11 +8981,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "なし" @@ -8922,7 +9051,7 @@ msgid "Null" msgstr "ビデオ出力なし (Null)" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -8957,10 +9086,58 @@ msgstr "ヌンチャクスティック" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Object %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "オブジェクトの範囲" @@ -8974,7 +9151,7 @@ msgstr "オセアニア" msgid "Off" msgstr "オフ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Offset" @@ -8986,7 +9163,7 @@ msgstr "有効" msgid "On Movement" msgstr "操作時のみ表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -8996,7 +9173,22 @@ msgstr "" "使用をサポートするバックエンドでは、ジョブの頂点シェーダーを選択します。パ" "フォーマンスに影響を与える可能性があります。

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "オンラインガイドを表示(&D)" @@ -9004,7 +9196,7 @@ msgstr "オンラインガイドを表示(&D)" msgid "Only Show Collection" msgstr "コレクションのみを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9012,7 +9204,7 @@ msgstr "" "Only append symbols with prefix:\n" "(Blank for all symbols)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9022,7 +9214,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "開く" @@ -9031,11 +9223,11 @@ msgstr "開く" msgid "Open &Containing Folder" msgstr "実体ファイルのあるフォルダを開く(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "ユーザーフォルダーを開く(&U)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr " フォルダーを開く..." @@ -9056,7 +9248,7 @@ msgstr "Riivolution XMLを開く..." msgid "Open Wii &Save Folder" msgstr "セーブデータのあるフォルダを開く(&S)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Open dump folder" @@ -9089,11 +9281,11 @@ msgid "Operators" msgstr "演算子" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "設定" @@ -9106,13 +9298,36 @@ msgstr "オレンジ" msgid "Orbital" msgstr "Orbital" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "その他" @@ -9125,7 +9340,7 @@ msgstr "その他のパーティション (%1)" msgid "Other State Hotkeys" msgstr "その他" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "その他ステート関係" @@ -9145,16 +9360,16 @@ msgstr "出力 リサンプリング" msgid "Output Resampling:" msgstr "出力 リサンプリング:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Overwritten" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "録画ファイルを再生...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9163,15 +9378,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG圧縮レベル" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG圧縮レベル:" @@ -9179,11 +9394,11 @@ msgstr "PNG圧縮レベル:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG画像ファイル (*.png);; すべてのファイル (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC Size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9196,11 +9411,11 @@ msgstr "パッド" msgid "Pads" msgstr "パッド" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parameters" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Parse as Hex" @@ -9251,11 +9466,15 @@ msgstr "ファイルの場所:" msgid "Paths" msgstr "フォルダ" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "一時停止" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "再生終了時に一時停止" @@ -9298,7 +9517,7 @@ msgstr "外向きのスイング動作のピーク速度。" msgid "Per-Pixel Lighting" msgstr "ピクセル単位のライティングを有効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Wii システムアップデート" @@ -9306,33 +9525,33 @@ msgstr "Wii システムアップデート" msgid "Perform System Update" msgstr "Wii システムアップデート" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "パフォーマンス サンプル ウィンドウ (ミリ秒)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "パフォーマンス サンプル ウィンドウ (ミリ秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "パフォーマンスステータス" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Physical" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Physical address space" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Pick a debug font" @@ -9348,12 +9567,12 @@ msgstr "ピッチダウン" msgid "Pitch Up" msgstr "ピッチアップ" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "機種" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "開始" @@ -9365,7 +9584,7 @@ msgstr "再生/記録" msgid "Play Recording" msgstr "録画ファイルを再生" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "プレイセット/パワーディスク" @@ -9377,27 +9596,27 @@ msgstr "再生に関する設定" msgid "Player" msgstr "プレイヤー名" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "プレイヤー 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "プレイヤー 1 アビリティ 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "プレイヤー 1 アビリティ 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "プレイヤー 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "プレイヤー 2 アビリティ 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "プレイヤー 2 アビリティ 2" @@ -9406,7 +9625,8 @@ msgstr "プレイヤー 2 アビリティ 2" msgid "Players" msgstr "プレイヤー数" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "プレイ時間:" @@ -9420,24 +9640,28 @@ msgstr "" "「SyncOnSkipIdle」設定を「True」に変更してください。現在無効になっているた" "め、この問題が発生する確率が非常に高くなります。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" "Please start a game before starting a search with standard memory regions." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "ポインタ" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "ポート %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "コントローラーポート %1 のROM:" @@ -9446,7 +9670,7 @@ msgstr "コントローラーポート %1 のROM:" msgid "Port:" msgstr "ポート:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "ポータルスロット" @@ -9469,11 +9693,11 @@ msgid "Post-Processing Shader Configuration" msgstr "ポストプロセスシェーダーの設定" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "点/線の展開時に頂点シェーダーを優先する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "カスタムテクスチャの事前読込" @@ -9481,11 +9705,11 @@ msgstr "カスタムテクスチャの事前読込" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "PlayController でムービーが途中で終了しました。 {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "PlayWiimoteでムービーが早く終わりました。{0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "PlayWiimoteでムービーが早く終わりました。{0} > {1}" @@ -9510,7 +9734,7 @@ msgstr "シンクロボタン 押下" msgid "Pressure" msgstr "筆圧" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9529,7 +9753,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "前のゲームプロファイル" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Previous Match" @@ -9540,7 +9764,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitive %1" @@ -9552,7 +9776,7 @@ msgstr "パスワードあり" msgid "Private and Public" msgstr "すべて" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "問題点" @@ -9590,8 +9814,8 @@ msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "進行状況" @@ -9599,11 +9823,11 @@ msgstr "進行状況" msgid "Public" msgstr "誰でも" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "ゲームリストのキャッシュを消去" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "IPL ROMを User/GC/ に置く。" @@ -9623,7 +9847,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 デコーダの精度を調整します。精度を高めると遅延も大きくなり" @@ -9632,7 +9856,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "確認" @@ -9653,19 +9877,19 @@ msgstr "R" msgid "R-Analog" msgstr "R (アナログ)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "READY" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO auto-detection" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "RUNNING" @@ -9678,11 +9902,11 @@ msgstr "RVZ GC/Wii ISOファイル (*.rvz)" msgid "Range" msgstr "範囲/強さ" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Range End: " -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Range Start: " @@ -9694,7 +9918,11 @@ msgstr "順位 %1" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Re&place instruction" @@ -9706,14 +9934,14 @@ msgstr "Read" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Read and write" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Read only" @@ -9734,10 +9962,15 @@ msgstr "実機のバランスWiiボードを接続する" msgid "Real Wii Remote" msgstr "実機Wiiリモコンを接続" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "ネットプレイから無効なWiiリモコンデータを受信しました。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9751,7 +9984,7 @@ msgstr "録画" msgid "Record Inputs" msgstr "コントローラ操作を記録" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Recording" @@ -9792,7 +10025,7 @@ msgstr "" "るようになります。

よく分からなければ、「なし」のま" "まにしておいてください。" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.orgのステータス:" @@ -9800,14 +10033,14 @@ msgstr "Redump.orgのステータス:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "再更新" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Refresh Current Values" @@ -9815,11 +10048,11 @@ msgstr "Refresh Current Values" msgid "Refresh Game List" msgstr "ゲームリストを再更新" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "Refresh failed. Please run the game for a bit and try again." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Refreshed current values." @@ -9828,8 +10061,8 @@ msgstr "Refreshed current values." msgid "Refreshing..." msgstr "セッションリストを更新中..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地域" @@ -9858,7 +10091,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "削除" @@ -9875,7 +10108,7 @@ msgstr "不要データを消去 (不可逆処理):" msgid "Remove Tag..." msgstr "タグの削除..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "タグを削除" @@ -9890,8 +10123,8 @@ msgstr "" "\n" "変換処理を続行しますか?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Rename symbol" @@ -9899,11 +10132,11 @@ msgstr "Rename symbol" msgid "Render Window" msgstr "ゲームウィンドウ設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "メインウィンドウ部分に描画" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9921,23 +10154,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "リセット" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "すべてをリセット" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Reset Ignore Panic Handler" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Reset Results" @@ -9965,6 +10197,10 @@ msgstr "位置をリセット" msgid "Reset all saved Wii Remote pairings" msgstr "全てのペアリングをリセットする" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "リソースパックマネージャ" @@ -9981,7 +10217,7 @@ msgstr "再起動が必要" msgid "Restore Defaults" msgstr "デフォルトの復元" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Restore instruction" @@ -9998,7 +10234,7 @@ msgstr "戻りの速度" msgid "Revision" msgstr "使用バージョンとOS" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revision: %1" @@ -10057,7 +10293,7 @@ msgstr "右にロール" msgid "Room ID" msgstr "ルームID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "回転操作" @@ -10080,26 +10316,52 @@ msgstr "" "

分からない場合はチェックを外してください。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "振動" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Run &To Here" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "GBAコアを専用のスレッドで実行する" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Run until" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Run until (ignoring breakpoints)" @@ -10115,19 +10377,19 @@ msgstr "ロシア" msgid "SD Card" msgstr "SDカード" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SDカードのファイルサイズ:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SDカードファイル (*.raw);; すべてのファイル (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SDカード" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SDカードの設定" @@ -10135,7 +10397,7 @@ msgstr "SDカードの設定" msgid "SD Root:" msgstr "SDのルート:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "同期させるフォルダ" @@ -10148,7 +10410,7 @@ msgstr "SDRディスプレイのガンマターゲット" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10156,11 +10418,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1 ダイジェスト" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "シリアルポート1" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL context" @@ -10170,11 +10432,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Sa&ve Code" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "ステートセーブ(&V)" @@ -10187,7 +10449,6 @@ msgstr "Safe" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10197,9 +10458,17 @@ msgstr "保存" msgid "Save All" msgstr "すべて保存" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "エクスポートの保存" @@ -10208,24 +10477,24 @@ msgid "Save FIFO log" msgstr "FIFOログの保存" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "次の場所へ保存" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "セーブデータ" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "ゲームボーイアドバンス セーブファイル (*.sav);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "インポートの保存" @@ -10237,13 +10506,13 @@ msgstr "最古のステートに上書き保存" msgid "Save Preset" msgstr "プリセットの保存" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "レコーディングファイルに名前を付けて保存" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "ステートセーブ" @@ -10287,23 +10556,23 @@ msgstr "ステートセーブ - スロット 8" msgid "Save State Slot 9" msgstr "ステートセーブ - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "ファイルとして保存" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "最古のステートに上書き保存" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "次のスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10311,7 +10580,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "ステートセーブ/ロード" @@ -10323,11 +10592,11 @@ msgstr "プリセットとして保存..." msgid "Save as..." msgstr "ファイルとして保存..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Save combined output file as" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10337,15 +10606,15 @@ msgstr "" "在のセーブデータのバックアップを行って下さい。\n" "セーブデータの上書きを続行しますか?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "ROMと同じフォルダにセーブファイルを保存する" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Save map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Save signature file" @@ -10353,7 +10622,7 @@ msgstr "Save signature file" msgid "Save to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "スロット %1 - %2" @@ -10365,7 +10634,7 @@ msgstr "保存..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "ペアリングのリセットはWiiのゲームを実行中にのみ行えます。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "セーブ保存先" @@ -10379,26 +10648,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Scaled EFB Copy" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Scan succeeded." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "画面撮影" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Search" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Search Address" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Search Current Object" @@ -10406,11 +10675,11 @@ msgstr "Search Current Object" msgid "Search Subfolders" msgstr "サブフォルダも検索する" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Search and Filter" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10418,7 +10687,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:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Search for an Instruction" @@ -10426,11 +10695,11 @@ msgstr "Search for an Instruction" msgid "Search games..." msgstr "ゲームタイトルを検索..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Search instruction" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "検索:" @@ -10450,7 +10719,7 @@ msgstr "このセクションはグラフィックス関連のすべての設定 msgid "Section that contains most CPU and Hardware related settings." msgstr "このセクションはCPUとハードウェアに関連するほとんどの設定を含みます。" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Security options" @@ -10458,28 +10727,36 @@ msgstr "Security options" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "ダンプ先を選択" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "エクスポート先フォルダを選択" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "フィギュアファイルを選択する" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "GBAのBIOSファイルを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "GBAのROMファイルを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "GBAセーブファイルの保存先を選択" @@ -10499,15 +10776,15 @@ msgstr "リソースパックの読込元フォルダを選択" msgid "Select Riivolution XML file" msgstr "Riivolution XMLファイルの選択" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Skylanderコレクションの選択" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Skylanderファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "スロット %1 - %2" @@ -10515,7 +10792,7 @@ msgstr "スロット %1 - %2" msgid "Select State" msgstr "スロットの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "スロットの選択" @@ -10574,15 +10851,15 @@ msgstr "ディレクトリを選択" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "ファイルを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "SDカードへの変更内容を同期するフォルダを選択" @@ -10590,11 +10867,11 @@ msgstr "SDカードへの変更内容を同期するフォルダを選択" msgid "Select a Game" msgstr "ディスクドライブチャンネルに表示するゲームを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SDカードファイルを選択" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "ファイルの選択" @@ -10602,19 +10879,19 @@ msgstr "ファイルの選択" msgid "Select a game" msgstr "タイトルを選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "NANDにインストールするタイトルを選択" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "カードeファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Select the RSO module address:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "再生するレコーディングファイルを選択する" @@ -10622,12 +10899,12 @@ msgstr "再生するレコーディングファイルを選択する" msgid "Select the Virtual SD Card Root" msgstr "仮想SDカードのルートを選択します" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "キーファイル (OTP/SEEPROM ダンプ)を選択" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "セーブファイルを選択" @@ -10643,7 +10920,7 @@ msgstr "圧縮されたイメージの保存先を選択" msgid "Selected Font" msgstr "選択したフォント" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "選択されたプロファイルは存在しません" @@ -10655,15 +10932,15 @@ msgstr "選択されたプロファイルは存在しません" msgid "Selected game doesn't exist in game list!" msgstr "選択されたゲームがゲームリストに存在しません!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Selected thread callstack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Selected thread context" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10671,7 +10948,7 @@ msgstr "" "描画に使用するビデオカードを選択します。

%1 はこの機" "能をサポートしません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10679,6 +10956,25 @@ msgstr "" "描画に使用するビデオカードを選択します。

よく分から" "なければ、一番上のものを選択してください。" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10698,26 +10994,29 @@ msgstr "" "す。

よく分からなければ、「オフ」を選択してくださ" "い。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." -msgstr "" -"レンダリング時に使用するアスペクト比を選択します。
各ゲームのネイティブの" -"アスペクト比はわずかに異なる場合があります。

自動: ネイティブのアスペ" -"クト比を使用します。
強制 16:9: ワイドスクリーン アスペクト比でアナログ " -"TV を模倣します。
強制 4:3: 標準の 4:3 アナログ テレビを模倣します。
" -"ウィンドウに合わせる: ウィンドウのサイズに合わせて画像を引き伸ばします。
" -"カスタム: 特定のカスタムアスペクト比のチートで実行されているゲーム用です。" -"

よく分からない場合は「自動」を選択してください。
The aspect " +"ratio of the image sent out by the original consoles varied depending on the " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10737,7 +11036,7 @@ msgstr "" msgid "Send" msgstr "送信" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "センサーバーの位置" @@ -10765,16 +11064,12 @@ msgstr "サーバーのポート" msgid "Server rejected traversal attempt" msgstr "サーバーが中継処理を拒否しました" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Set &Value" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Set &blr" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Set PC" @@ -10790,23 +11085,23 @@ msgstr "スロットAに読み込むメモリーカードファイルを選択" msgid "Set memory card file for Slot B" msgstr "スロットBに読み込むメモリーカードファイルを選択" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Set symbol &end address" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Set symbol &size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Set symbol end address" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Set symbol size (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10816,11 +11111,11 @@ msgstr "" "変更します\n" "すべてのタイトルで上手く動作するとは限りません" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Wiiのシステム言語を変更できます" -#: 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." @@ -10828,7 +11123,7 @@ msgstr "" "遅延をミリ秒単位で設定します。値を高くすると、オーディオの音割れが軽減される" "場合があります(特定のバックエンドのみ)。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10842,20 +11137,20 @@ msgstr "" msgid "Settings" msgstr "設定" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Can't create setting.txt file" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "影響度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "シェーダコンパイルの設定" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "シェイク" @@ -10872,16 +11167,16 @@ msgstr "新幹線" msgid "Shinkansen Controller" msgstr "新幹線専用コントローラー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "% 速度を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "ログを表示(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "ツールバー(&T)" @@ -10889,53 +11184,53 @@ msgstr "ツールバー(&T)" msgid "Show Active Title in Window Title" msgstr "タイトルバーに起動中のゲーム名を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "すべて表示" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "オーストラリア" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Discordにプレイ中のゲームを表示" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "有効なコードを最初に表示する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "フレームカウンタを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "フレームタイムを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "フランス" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "ゲームキューブ" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "ドイツ" @@ -10947,23 +11242,23 @@ msgstr "Show Golf Mode Overlay" msgid "Show Infinity Base" msgstr "インフィニティベースを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "入力された操作を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "イタリア" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "日本" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "韓国" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "ラグカウンタを表示" @@ -10971,19 +11266,19 @@ msgstr "ラグカウンタを表示" msgid "Show Language:" msgstr "次の言語で表示" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "ログの設定を表示(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "ネットプレイ:OSD表示" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "ネットプレイ:Ping表示" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "オランダ" @@ -10991,32 +11286,36 @@ msgstr "オランダ" msgid "Show On-Screen Display Messages" msgstr "OSDを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Show PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "パフォーマンスグラフを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "特定機種のソフトだけを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "次の地域のソフトだけを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "再記録カウンターを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "ロシア" @@ -11024,72 +11323,72 @@ msgstr "ロシア" msgid "Show Skylanders Portal" msgstr " Skylandersポータルを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "スペイン" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "スピードカラーを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "統計情報を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "システム時間を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "アメリカ合衆国" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "不明" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "垂直ブランキング期間 (VBlank) 時間を表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD(Wiiウェア/VC/Wiiチャンネル)" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "地域なし" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Show in &memory" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Show in Code" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Show in Memory" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Show in code" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Show in memory" @@ -11097,11 +11396,11 @@ msgstr "Show in memory" msgid "Show in server browser" msgstr "セッションブラウザに表示" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "Show target in memor&y" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -11110,7 +11409,7 @@ msgstr "" "画面に表示します。

よく分からなければ、チェックを入" "れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
分からない場合はチェックを外してくださ" "い。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11130,7 +11429,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11140,7 +11439,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11150,7 +11449,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11160,7 +11459,7 @@ msgstr "" "す。

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11179,7 +11478,13 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11191,34 +11496,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Side-by-Side" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "押下時のみ横持ち" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "横持ちの切替" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "横持ちで使用する" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Signature Database" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Signed 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Signed 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Signed 8" @@ -11227,7 +11532,7 @@ msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "簡体字中国語" @@ -11244,7 +11549,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." @@ -11252,11 +11557,11 @@ msgstr "" "ストレッチに使用するバッファサイズをミリ秒単位で変更できます。小さくしすぎる" "と音割れの原因になります。" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Skip" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Skip Drawing" @@ -11301,24 +11606,24 @@ msgstr "" "ば、チェックを外さないでください。
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;すべてのファイル (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Skylander コレクションのパス:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" "このコレクションに Skylander は含まれていません。新しいファイルを作成します" @@ -11328,12 +11633,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "Skylander マネージャー" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" -"このユーザーの Skylanders フォルダーが見つかりません。新しいフォルダーを作成" -"しますか?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11343,7 +11642,7 @@ msgstr "スライダーバー" msgid "Slot A" msgstr "スロットA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "スロットA" @@ -11351,7 +11650,7 @@ msgstr "スロットA" msgid "Slot B" msgstr "スロットB" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "スロットB" @@ -11359,7 +11658,7 @@ msgstr "スロットB" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "アナログスティックの位置を最も近い八角形の軸にスナップします。" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Socket table" @@ -11387,12 +11686,12 @@ msgstr "" "いくつかの値は不正です。\n" "強調された値を修正してください。" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "アルファベット順で並べ替え" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "サウンドの設定:" @@ -11406,27 +11705,27 @@ msgstr "スペイン" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "スペイン語" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "スピーカー パン調整" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "リモコンスピーカー音量" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specialized (既定)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Specific" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11455,15 +11754,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "スパイロの大冒険" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Stack end" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Stack start" @@ -11476,25 +11775,28 @@ msgstr "標準コントローラ" msgid "Start" msgstr "スタート" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "ネットプレイを開始...(&N)" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "新しいチート検索を開始します" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "操作の記録を開始(&C)" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "操作の記録を開始" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "フルスクリーンで開始する" @@ -11510,10 +11812,10 @@ msgstr "Riivolution パッチから始めます..." msgid "Started game" msgstr "ゲームを開始" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "State" @@ -11523,7 +11825,7 @@ msgstr "SPEED FORCE" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Step" @@ -11535,13 +11837,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Step Over" @@ -11557,7 +11859,7 @@ msgstr "Step out timed out!" msgid "Step over in progress..." msgstr "Step over in progress..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Step successful!" @@ -11566,7 +11868,7 @@ msgstr "Step successful!" msgid "Stepping" msgstr "Stepping" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "ステレオ" @@ -11596,18 +11898,14 @@ msgstr "スティック" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "操作の再生/記録を停止" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Stop Recording" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "ゲームを終了" @@ -11650,7 +11948,7 @@ msgstr "" "Texture)

よく分からなければ、チェックを外さないでく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "ウィンドウに合わせる" @@ -11685,8 +11983,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "完了" @@ -11713,7 +12011,7 @@ msgstr "保存ファイル %1 から正常に %n エクスポートされまし msgid "Successfully exported save files" msgstr "セーブファイルのエクスポートに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "証明書ファイルの取り出しに成功しました" @@ -11725,12 +12023,12 @@ msgstr "ファイルの取り出しに成功しました" msgid "Successfully extracted system data." msgstr "システムデータの取り出しに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "セーブファイルのインポートに成功しました。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "タイトルのインストールに成功しました" @@ -11741,11 +12039,11 @@ msgstr "タイトルの消去に成功しました" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "スーパーチャージャーズ" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "サポート" @@ -11753,16 +12051,16 @@ msgstr "サポート" msgid "Supported file formats" msgstr "サポートしているすべての形式" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "サラウンド" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Suspended" @@ -11772,12 +12070,12 @@ msgstr "視点を入れ替える" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "スワップフォース" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "スワッパー" @@ -11791,7 +12089,7 @@ msgstr "" "
" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "動き" @@ -11805,39 +12103,21 @@ msgid "Switch to B" msgstr "スロットBを操作" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Symbol (%1) end address:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Symbol name:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symbols" @@ -11865,7 +12145,7 @@ msgstr "" "CPU/GPUスレッドを同期させることでデュアルコア動作時のフリーズを抑制します " "[有効=互換性重視/無効=速度向上]" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11886,24 +12166,24 @@ msgid "Synchronizing save data..." msgstr "セーブデータの同期中..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "システムの言語:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS関係" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "タグを表示" @@ -11913,7 +12193,7 @@ msgstr "タグを表示" msgid "Taiko Drum" msgstr "タタコン" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Tail" @@ -11921,15 +12201,15 @@ msgstr "Tail" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "スクリーンショット" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "Target address range is invalid." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11939,7 +12219,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "マシン" @@ -11947,6 +12227,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11956,7 +12242,7 @@ msgstr "Texture Cache" msgid "Texture Cache Accuracy" msgstr "テクスチャキャッシュの精度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texture Dumping" @@ -11968,7 +12254,7 @@ msgstr "テクスチャーフィルタリング" msgid "Texture Filtering:" msgstr "テクスチャフィルタ:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "テクスチャフォーマット情報表示" @@ -11998,7 +12284,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "The H3 hash table for the {0} partition is not correct." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "IPL ファイルは既知の正常なダンプではありません。 (CRC32: {0:x})" @@ -12012,7 +12298,7 @@ msgstr "IPL ファイルは既知の正常なダンプではありません。 ( msgid "The Masterpiece partitions are missing." msgstr "The Masterpiece partitions are missing." -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12020,7 +12306,7 @@ msgstr "" "NANDを修復できませんでした。現在のデータをバックアップして、NANDのダンプから" "やり直すことをオススメします" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NANDの修復に成功しました" @@ -12034,11 +12320,11 @@ msgstr "" "と、Wiiシステムメニューが起動しなくなり、NANDにコピーまたは移動することも拒否" "されます。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "スカイランダーが持つ金額は、0~65000の間です" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -12080,6 +12366,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "復号化キーは NAND バックアップ ファイルに追加する必要があります。" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12102,7 +12395,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "挿入しようとしたディスクが見つかりませんでした。" @@ -12124,17 +12417,17 @@ msgstr "このWiiシステムは既に最新版になっています" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "入力されたMACアドレスは無効です。" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "入力されたデバイス PIDは無効です。" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "入力されたデバイス VIDは無効です。" @@ -12142,7 +12435,7 @@ msgstr "入力されたデバイス VIDは無効です。" msgid "The expression contains a syntax error." msgstr "式に構文エラーが含まれています。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12162,7 +12455,7 @@ msgstr "" "ファイル %1 は既に存在します。\n" "ファイルを置き換えますか?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12183,7 +12476,7 @@ msgid "The file {0} was already open, the file header will not be written." msgstr "" "ファイル {0} は既に開かれているので、ファイルヘッダーは書き込まれません。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12196,7 +12489,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:573 +#: 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 " @@ -12265,13 +12558,11 @@ msgstr "ハッシュは一致しませんでした" msgid "The hashes match!" msgstr "全てのハッシュが一致!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"このスカイランダーのヒーローレベルは「スカイランダーズ:スパイロの大冒険」での" -"み見られます。数値は0から100の間です。" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12285,11 +12576,11 @@ msgstr "" msgid "The install partition is missing." msgstr "The install partition is missing." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "最後に、このフィギュアがポータルに配置された時刻" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12308,9 +12599,9 @@ msgstr "" "が挿入されています。ムービーを正しく同期するには、選択したデバイスをメモリー" "カードまたはGCIフォルダに変更してください。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "このスカイランダーのニックネームは15文字までに制限されています" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12339,14 +12630,14 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "復号化しましたが、このコードにはひとつも行が含まれていません。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 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:596 +#: 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 "" @@ -12385,7 +12676,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12403,11 +12694,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "The ticket is not correctly signed." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "この数値がゲーム内で使用された合計時間 (秒単位)になります" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "このフィギュアのトイコード。本物のフィギュアにのみ使用可能です。" @@ -12415,15 +12706,15 @@ msgstr "このフィギュアのトイコード。本物のフィギュアにの msgid "The type of a partition could not be read." msgstr "The type of a partition could not be read." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "この Skylander のタイプには、変更できるデータがありません!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "この Skylander の種類は不明です!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "この Skylander の種類が不明で、現時点では変更できません!" @@ -12448,7 +12739,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12476,7 +12767,7 @@ msgstr "The {0} partition is not properly aligned." msgid "There are too many partitions in the first partition table." msgstr "There are too many partitions in the first partition table." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12486,7 +12777,12 @@ msgstr "" "\n" "閉じる前に保存しますか?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "取り消すものがありません!" @@ -12529,19 +12825,19 @@ msgstr "" "This Korean title is set to use an IOS that typically isn't used on Korean " "consoles. This is likely to lead to ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "この Skylander の種類はまだ改造できません!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "このデバイスは既に登録済みです。" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "このWADファイルは起動できません。" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "このWADは無効です" @@ -12690,6 +12986,10 @@ msgstr "" msgid "This is a good dump." msgstr "This is a good dump." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "参加にはパスワードが必要です。" @@ -12706,13 +13006,13 @@ msgstr "" "\n" "よく分からなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "合法的に所有していないゲームをプレイするためにこのソフトウェアを使用すること" "はできません。" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "このタイトルは起動できません" @@ -12725,7 +13025,7 @@ msgstr "This title is set to use an invalid IOS." msgid "This title is set to use an invalid common key." msgstr "This title is set to use an invalid common key." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12737,7 +13037,7 @@ msgstr "" "\n" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12760,6 +13060,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "ここで設定した値は、グラフィック設定でセットした収束距離に乗算されます" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12781,11 +13088,11 @@ msgstr "" "EFB 読み取りを使用する一部のゲームで非同期が妨げられる場合があります。全員が" "同じビデオ バックエンドを使用していることを確認してください。" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Thread context" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Threads" @@ -12793,12 +13100,12 @@ msgstr "Threads" msgid "Threshold" msgstr "しきい値" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "傾き" @@ -12813,10 +13120,10 @@ msgstr "" msgid "Timed Out" msgstr "Timed Out" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "タイトル" @@ -12830,7 +13137,7 @@ msgstr "" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "全画面表示 切り替え(&F)" @@ -12855,7 +13162,7 @@ msgid "Toggle Aspect Ratio" msgstr "アスペクト比 設定切替" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Toggle Breakpoint" @@ -12907,15 +13214,19 @@ msgstr "EFB Copies 設定切替" msgid "Toggle XFB Immediate Mode" msgstr "XFB Immediate Mode 設定切替" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "トークン化に失敗しました。" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "ツールバー" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "上" @@ -12923,9 +13234,8 @@ msgstr "上" msgid "Top-and-Bottom" msgstr "Top-and-Bottom" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Total Hits" @@ -12962,28 +13272,28 @@ msgstr "移動距離の合計。" msgid "Touch" msgstr "タッチボード" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "トイコード:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "繁体字中国語" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "トラップ" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "トラップマスター" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "トラップチーム" @@ -13022,26 +13332,26 @@ msgid "Triggers" msgstr "トリガー" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "トロフィー" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "形式" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Type-based Alignment" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "一般的な GameCube または Wii のアドレス空間" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "UNKNOWN" @@ -13053,7 +13363,7 @@ msgstr "アメリカ合衆国" msgid "USB Device Emulation" msgstr "USB デバイスエミュレーション" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB エミュレーション" @@ -13065,13 +13375,13 @@ msgstr "USB エミュレーションデバイス" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB ホワイトリストエラー" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -13082,7 +13392,7 @@ msgstr "" "す。

よく分からなければ、これを選択してください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13094,7 +13404,7 @@ msgstr "" "したPCで、Hybrid Ubershaders では問題がある場合にしかオススメできません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -13107,7 +13417,7 @@ msgstr "" "ケースではパフォーマンスへの影響を最小限に抑えつつカクつきが解消されるはずで" "すが、実際どのような結果になるかは使用中のビデオドライバに依存します。" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Unable to auto-detect RSO module" @@ -13119,11 +13429,11 @@ msgstr "アップデートサーバーに接続できません。" msgid "Unable to create updater copy." msgstr "アップデータのコピーを作成できません。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "Skylander を改造できません!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "ファイルを開くことができません。" @@ -13151,7 +13461,7 @@ msgstr "" "\n" "この行を無視して解析を続けますか?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "ファイルを読み込むことができません。" @@ -13174,15 +13484,15 @@ msgstr "未圧縮のGC/Wii ISOファイル (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "アンデット" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "直前のステートロードを取消" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "直前のステートセーブの取消" @@ -13201,11 +13511,11 @@ msgid "" msgstr "" "セーブデータを残してNAND内からこのタイトルを削除します。よろしいですか?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "米国" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13216,12 +13526,13 @@ msgstr "米国" msgid "Unknown" msgstr "フィルタ無し" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "不明 (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "不明な DVD コマンド {0:08x} - 致命的なエラー" @@ -13249,11 +13560,11 @@ msgstr "" "不明な SYNC_SAVE_DATA メッセージ、id:{0} を player:{1} から受信しました。プレ" "イヤーをキックしています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "スカイランダーの種類が不明です!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Unknown address space" @@ -13261,7 +13572,7 @@ msgstr "Unknown address space" msgid "Unknown author" msgstr "作者不明" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Unknown data type" @@ -13269,7 +13580,7 @@ msgstr "Unknown data type" msgid "Unknown disc" msgstr "Unknown disc" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Unknown error occurred." @@ -13291,16 +13602,18 @@ msgstr "" "プレイヤー:{1} から id:{0} の不明なメッセージを受信しました。プレイヤーをキッ" "クしています!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "不明(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "不明(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "制限なし" @@ -13333,22 +13646,22 @@ msgid "Unpacking" msgstr "復元処理を行っています..." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "未保存の変更" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Unsigned 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Unsigned 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Unsigned 8" @@ -13412,23 +13725,23 @@ msgstr "" "次のタイトルを更新中... %1\n" "しばらくお待ちください" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "押下時のみ直立状態" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "直立状態 切替" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "直立させた状態で使用する" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "統計レポートの設定" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" "通常のDNSには8.8.8.8を使用し、そうでなければカスタムDNSを入力してください" @@ -13441,15 +13754,15 @@ msgstr "すべてのWiiセーブデータを使用する" msgid "Use Built-In Database of Game Names" msgstr "ゲーム名の表記に内蔵リストを使用する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "ロスレス映像コーデック (FFV1) を使用する" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "マウス操作によるポインティグを使用する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 (EuRGB60) モードを使用する" @@ -13457,7 +13770,7 @@ msgstr "PAL60 (EuRGB60) モードを使用する" msgid "Use Panic Handlers" msgstr "パニックハンドラーを使用する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13487,64 +13800,18 @@ msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" "両方の目に単一の深度バッファを使用します。必要となるタイトルはわずかです。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "スキャン時にメモリ マッパー構成を使用します" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "実在するアドレスを使います" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "可能な限り仮想のアドレスを使用します" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" -" 関数を実行するときに関数ベースを検索するために使用されます。\n" -"heat Engine Ultimap と同じです。\n" -"シンボル マップは使用前に読み込む必要があります。\n" -"include/Exclude リストは、エミュレーションを終了または再起動しても保持されま" -"す。\n" -"これらのリストは、Dolphin を閉じると保持されません。\n" -"\n" -"「記録の開始」: 実行される機能を追跡します。\n" -"「記録の停止」: リストを変更せずに現在の記録を消去します。\n" -"「コードが実行されませんでした」: 記録中にクリックすると、記録された関数が除" -"外リストに追加され、記録リストがリセットされます。\n" -"「コードが実行されました」: 記録中にクリックすると、記録された関数が include " -"リストに追加され、記録リストがリセットされます。\n" -"\n" -"exclude と include の両方を一度使用すると、exclude リストが include リストか" -"ら減算され、残った include が表示されます。\n" -"引き続き「コードは実行されませんでした」または「コードは実行されました」を使" -"用して結果を絞り込むことができます。\n" -"\n" -"保存すると、現在のリストが Dolphin のログ フォルダーに保存されます (ファイ" -"ル -> ユーザーフォルダーを開く)。" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "ユーザー設定" @@ -13583,7 +13850,7 @@ msgstr "" "場合もあります。

よく分からなければ、チェックを外さ" "ないでください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13593,7 +13860,7 @@ msgstr "" "画面でのエミュレーションとなります。

よく分からなけ" "れば、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Using Qt %1" @@ -13611,31 +13878,31 @@ msgstr "Using Qt %1" msgid "Using TTL %1 for probe packet" msgstr "プローブパケットに TTL %1 を使用します" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Usually used for light objects" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Usually used for normal matrices" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Usually used for position matrices" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Usually used for tex coord matrices" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "ユーティリティ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "垂直同期を有効にする" @@ -13643,11 +13910,11 @@ msgstr "垂直同期を有効にする" msgid "VBI Skip" msgstr "垂直ブランキング割り込み (VBI) をスキップする" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "値" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Value tracked to current instruction." @@ -13655,17 +13922,17 @@ msgstr "Value tracked to current instruction." msgid "Value:" msgstr "値:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "入力されたバリアントは無効です!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "バリアント:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "ビークル" @@ -13681,16 +13948,16 @@ msgstr "出力するログのレベル設定" msgid "Verify" msgstr "整合性" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "整合性チェックを実行" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Verify certificates" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "整合性チェック中..." @@ -13704,7 +13971,7 @@ msgid "Vertex Rounding" msgstr "Vertex Rounding" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "垂直視野" @@ -13718,12 +13985,12 @@ msgid "Video" msgstr "描画" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "View &code" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "View &memory" @@ -13731,14 +13998,14 @@ msgstr "View &memory" msgid "Virtual Notches" msgstr "バーチャルノッチ" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Virtual address space" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "音量" @@ -13758,37 +14025,37 @@ msgstr "音量を上げる" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WADファイル (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "WAD のインストールに失敗しました: Wii ショップのログ ファイルを作成できません" "でした。" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WAD installation failed: Could not finalise title import." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" "WADのインストールに失敗しました: コンテンツ {0:08x} をインポートできませんで" "した。" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "WAD のインストールに失敗しました: タイトルのインポートを初期化できませんでし" "た(エラー {0})。" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "WAD installation failed: The selected file is not a valid WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "WAITING" @@ -13834,12 +14101,12 @@ msgstr "WFS パス:" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA GC/Wii ISOファイル (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Waiting for first scan..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13855,7 +14122,7 @@ msgstr "" "きます。

よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13886,7 +14153,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "警告" @@ -13991,7 +14258,7 @@ msgstr "Watch" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "水" @@ -14008,7 +14275,7 @@ msgstr "欧米用 (Windows-1252)" msgid "Whammy" msgstr "ワーミー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -14020,7 +14287,7 @@ msgstr "" "る場合、任意のベーステクスチャを含みます。

よく分か" "らない場合はチェックしたままにしてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -14033,7 +14300,7 @@ msgstr "" "

よく分からない場合はチェックしたままにしてくださ" "い。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "常にパススルーを行うUSBデバイスリスト" @@ -14057,7 +14324,7 @@ msgstr "Wiiメニュー" msgid "Wii NAND Root:" msgstr "Wii NANDルート:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wiiリモコン" @@ -14065,7 +14332,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -14083,7 +14350,7 @@ msgstr "Wiiリモコン ボタン" msgid "Wii Remote Gyroscope" msgstr "Wiiリモコンのジャイロスコープ" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wiiリモコンの設定" @@ -14103,7 +14370,7 @@ msgstr "TAS用入力 Wii %1 - Wiiリモコン" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "TAS用入力 Wii %1 - Wiiリモコン+ヌンチャク" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "WiiとWiiリモコン" @@ -14111,11 +14378,11 @@ msgstr "WiiとWiiリモコン" msgid "Wii data is not public yet" msgstr "Wii data is not public yet" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii セーブファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiToolsシグネチャーMEGAファイル" @@ -14127,11 +14394,23 @@ msgstr "" "ゲームプレイウィンドウ内にフォーカスがある間、マウスカーソルをウィンドウ外に" "出せないようにします。この設定はホットキーで解除が可能です" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "画面サイズ" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "テキストの折り返し" @@ -14145,10 +14424,14 @@ msgstr "地域なし" msgid "Write" msgstr "Write" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Write only" @@ -14190,6 +14473,14 @@ msgstr "間違った地域です" msgid "Wrong revision" msgstr "間違ったリビジョンです" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14198,11 +14489,11 @@ msgstr "間違ったリビジョンです" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF register " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA 宛先アドレス" @@ -14237,7 +14528,7 @@ msgstr "はい" msgid "Yes to &All" msgstr "すべてはい(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14246,7 +14537,7 @@ msgstr "" "%2 のファイルの内容を %1 のフォルダーに変換しようとしています。フォルダーの現" "在の内容はすべて削除されます。続行してもよろしいですか?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: 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 " @@ -14388,7 +14679,7 @@ msgstr "" "問題を解決するために今すぐ停止しますか?\n" "「No」を選択した場合、音声が乱れることがあります。" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14408,15 +14699,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "03コードはサポートされていません" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Zero code unknown to Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] and [%3, %4]" @@ -14424,11 +14719,11 @@ msgstr "[%1, %2] and [%3, %4]" msgid "^ Xor" msgstr "^ Xor(排他的論理和)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "aligned" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "any value" @@ -14447,21 +14742,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll could not be loaded." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "既定" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "切断されました" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "カードeファイル (*.raw);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14469,31 +14764,35 @@ msgstr "errno" msgid "fake-completion" msgstr "擬似シングルコア (fake-completion)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "is equal to" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "is greater than" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "is greater than or equal to" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "is less than" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "is less than or equal to" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "is not equal to" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "last value" @@ -14503,7 +14802,7 @@ msgstr "last value" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14515,13 +14814,13 @@ msgstr "" msgid "none" msgstr "なし" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "off" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "on" @@ -14538,16 +14837,20 @@ msgstr "秒" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "this value:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "unaligned" @@ -14562,11 +14865,11 @@ msgstr "unaligned" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{1} ディレクトリに {0} IPL が見つかりました。ディスクが認識されていない可能性" @@ -14605,7 +14908,7 @@ msgstr "| Or(論理和)" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14616,8 +14919,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/ko.po b/Languages/po/ko.po index 823f74bd2c72..527dfd6d043a 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -69,8 +69,8 @@ msgstr "$ 사용자 변수" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -91,19 +91,20 @@ msgstr "" "%1 가\n" "당신의 파티에 참여를 원합니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -124,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (기본)" @@ -166,6 +167,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 는 당신의 시스템에서 이 특성을 지원하지 않습니다." @@ -192,14 +198,14 @@ msgstr "%1 가 참가했습니다" msgid "%1 has left" msgstr "%1 가 떠났습니다" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 가 %2/%3 달성을 해제했습니다 %4/%5 점의 가치" @@ -215,12 +221,12 @@ msgstr "%1 은 지금 골프중입니다" msgid "%1 is playing %2" msgstr "%1 은 %2 를 플레이하고 있습니다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -237,7 +243,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%" @@ -245,26 +251,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "%1 의 값이 사용됩니다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -302,20 +308,20 @@ msgstr "%1x 원본 (%2x%3) %4 용" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n 주소(들)은 에뮬된 메모리에서 엑세스할 수 없습니다." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n 주소(들)이 남았습니다." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -325,23 +331,23 @@ msgstr "%n 주소(들)이 지워졌습니다." msgid "& And" msgstr "& 그리고" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "돌핀 정보(&A)" @@ -349,12 +355,12 @@ msgstr "돌핀 정보(&A)" msgid "&Add Memory Breakpoint" msgstr "메모리 중단점 추가 (&A)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "새로운 코드 추가... (&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "함수 추가 (&A)" @@ -362,27 +368,27 @@ msgstr "함수 추가 (&A)" msgid "&Add..." msgstr "추가... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "오디오 설정(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "자동 업데이트(&A):" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "틀 없는 창(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "중단점 (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "버그 추적자(&B)" @@ -390,15 +396,15 @@ msgstr "버그 추적자(&B)" msgid "&Cancel" msgstr "취소(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "치트 매니저(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "업데이트 확인(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "부호 지우기 (& C)" @@ -406,19 +412,24 @@ msgstr "부호 지우기 (& C)" msgid "&Clone..." msgstr "복제... (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "코드 (&C)" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "연결된(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "컨트롤러 설정(&C)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "주소 복사 (&C)" @@ -426,7 +437,7 @@ msgstr "주소 복사 (&C)" msgid "&Create..." msgstr "생성...(&C)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "삭제 (&)" @@ -443,9 +454,9 @@ msgstr "관찰 삭제 (&D)" msgid "&Delete Watches" msgstr "관찰들 삭제 (&D)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "코드 수정... (&E)" @@ -453,23 +464,23 @@ msgstr "코드 수정... (&E)" msgid "&Edit..." msgstr "편집... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "디스크 꺼내기(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "에뮬레이션(&E)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "내보내기 (&E)" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "게임 저장 내보내기...(&E)" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "상태 내보내기...(&E)" @@ -477,55 +488,53 @@ msgstr "상태 내보내기...(&E)" msgid "&Export as .gci..." msgstr ".gci 로 내보내기... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "파일(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "폰트 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "프레임 진행(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "자유 보기 설정(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "부호 생성 (&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "GitHub 저장소(&G)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "함수의 시작으로 가기(&G)" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "그래픽 설정(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "도움말(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "단축키 설정(&H)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "가져오기 (&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "게임 저장 가져오기...(&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "상태 가져오기...(&I)" @@ -533,19 +542,19 @@ msgstr "상태 가져오기...(&I)" msgid "&Import..." msgstr "가져오기... (&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "무한대 기반(&I)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "blr 삽입 (&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "프레임간 혼합(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "JIT(&J)" @@ -553,15 +562,19 @@ msgstr "JIT(&J)" msgid "&Language:" msgstr "언어(&L):" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "상태 로드(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "로드 부호 맵 (&L)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "파일을 현재 주소로 로드합니다 (&L)" @@ -571,23 +584,23 @@ msgstr "파일을 현재 주소로 로드합니다 (&L)" msgid "&Lock Watches" msgstr "관찰들 고정 (&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "위젯 고정(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "메모리(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "무비(&M)" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "음소거(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "네트워크(&N)" @@ -596,23 +609,23 @@ msgid "&No" msgstr "아니요(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "열기...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "옵션(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "HLE 함수 패치 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "일시정지(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "실행(&P)" @@ -620,15 +633,15 @@ msgstr "실행(&P)" msgid "&Properties" msgstr "속성(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "읽기 전용 모드(&R)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "목록 새로고침(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "레지스터 (&R)" @@ -636,41 +649,45 @@ msgstr "레지스터 (&R)" msgid "&Remove" msgstr "제거 (&R)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "코드 제거 (&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "부호 이름 바꾸기 (&R)" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "리셋(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "리소스 팩 매니저(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "부호 맵 저장 (&S)" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "e-Reader 카드 스캔...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "스카이랜더스 포탈 (&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "속도 제한(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "중지(&S)" @@ -678,15 +695,19 @@ msgstr "중지(&S)" msgid "&Theme:" msgstr "테마(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "쓰레드(&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "도구(&T)" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "롬 언로드(&U)" @@ -696,17 +717,17 @@ msgstr "롬 언로드(&U)" msgid "&Unlock Watches" msgstr "관찰들 고정풀기 (&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "관찰(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "웹사이트(&W)" @@ -718,11 +739,11 @@ msgstr "위키(&W)" msgid "&Yes" msgstr "예(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' 이 발견되지 않았습니다, 생성된 부호 이름이 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' 이 발견되지 않았습니다, 공통 함수들을 대신 스캔합니다" @@ -738,7 +759,7 @@ msgstr "(밝음)" msgid "(System)" msgstr "(시스템)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(호스트)" @@ -746,7 +767,7 @@ msgstr "(호스트)" msgid "(off)" msgstr "(꺼짐)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -766,15 +787,15 @@ msgstr ", 쉼표" msgid "- Subtract" msgstr "- 빼기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--알려지지 않음--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -785,12 +806,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ 나누기" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -802,7 +823,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 블락)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -810,11 +831,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 바이트" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -826,17 +847,17 @@ msgstr "16 Mbit (251 블락)" msgid "16-bit" msgstr "16-비트" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16-비트 부호화 정수" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16-비트 비부호화 정수" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -848,11 +869,11 @@ msgstr "16x 비등방성" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -864,7 +885,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x 비등방성" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -876,25 +897,25 @@ msgstr "32 Mbit (507 블락)" msgid "32-bit" msgstr "32-비트" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32-비트 실수" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32-비트 부호화 정수" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -908,11 +929,11 @@ msgstr "3D 깊이" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 바이트" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -920,7 +941,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 블락)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -936,7 +957,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x 비등방성" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -948,22 +969,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 블락)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64-비트 실수" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64-비트 부호화 정수" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64-비트 비부호화 정수" @@ -971,11 +992,11 @@ msgstr "64-비트 비부호화 정수" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 바이트" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -987,13 +1008,13 @@ msgstr "8 Mbit (123 블락)" msgid "8-bit" msgstr "8-비트" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8-비트 부호화 정수" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8-비트 비부호화 정수" @@ -1009,7 +1030,7 @@ msgstr "8x 비등방성" msgid "< Less-than" msgstr "< 보다-적은" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "<없음>" @@ -1021,12 +1042,12 @@ msgstr "<시스템 언어>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1061,12 +1082,12 @@ msgstr "" msgid "> Greater-than" msgstr "> 보다-큰" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "넷플레이 세션이 이미 진행 중입니다!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1082,7 +1103,7 @@ msgstr "" "\n" "이 WAD 를 설치하면 되돌릴 수 없게 바꾸게 됩니다. 계속합니까?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "디스크가 이미 삽입되려는 중입니다." @@ -1094,11 +1115,11 @@ msgstr "" "색들을 더 정교하게 만드는 특성들 그룹, Wii 와 게임큐브 게임들을 의도된 대로 " "색공간을 매치시켜줍니다" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "저장 상태는 시작할 게임 명시 없이는 로드될 수 없습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1118,6 +1139,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Wii 게임이 구동 중일 때만 동기화가 발동될 수 있습니다." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1151,7 +1176,7 @@ msgstr "" "니다.\n" "스스로 위험을 감수하고 사용하세요.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR 코드" @@ -1160,8 +1185,8 @@ msgstr "AR 코드" msgid "AR Codes" msgstr "AR 코드" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "애스키" @@ -1175,7 +1200,7 @@ msgid "About Dolphin" msgstr "돌핀에 대해" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "가속도계" @@ -1194,7 +1219,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "달성" @@ -1296,19 +1321,19 @@ msgstr "넷플레이 채팅 활성" msgid "Active" msgstr "액티브" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "활성 무한대 피겨:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "활성 쓰레드 큐" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "활성 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "어댑터" @@ -1316,7 +1341,7 @@ msgstr "어댑터" msgid "Adapter Detected" msgstr "어댑터가 감지되었습니다" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "어댑터:" @@ -1326,7 +1351,7 @@ msgstr "어댑터:" msgid "Add" msgstr "추가" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "중단점 추가(&b)" @@ -1355,51 +1380,48 @@ msgstr "메모리 중단점 추가" msgid "Add memory &breakpoint" msgstr "메모리 중단점 추가 (&b)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "관찰에 추가 (&w)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "추가..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "주소" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "주소 공간" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "CPU 상태에 의한 주소 공간" @@ -1478,12 +1500,12 @@ msgid "Advance Game Port" msgstr "고급 게임 포트" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "고급" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "고급 설정" @@ -1498,33 +1520,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"게임 출력이 윈도우 해상도로 어떻게 스케일될지 영향을 줍니다.
성능은 대부" -"분 각각의 방법이 사용하는 샘플의 숫자에 의존합니다.
SSAA 와 비교하자면, 리" -"샘플링이 출력창
해상도가 원본 에뮬레이션 해상도의 배수가 아닐 경우 유용합" -"니다.

기본 - [가장빠름]
감마 보정이 되지 않은 내부 GPU " -"bilinear 샘플러.
이 설정은 감마 보정이 강제되면 아마 무시될 것입니다." -"

Bilinear - [4 샘플]
픽셀들 간에 감마 보정된 선형 보간." -"

Bicubic - [16 샘플]
픽셀간에 감마 보정된 큐빅 보간.
가까" -"운 해상도끼리 리스케일할 때 좋음. 예 1080p 와 1440p.
취향에 따라:
B-" -"Spline: 흐리지만 모든 로빙 인공물을 피합니다
Mitchell-Netravali: 흐림과 로빙 사이의 좋은 중간정도
Catmull-Rom: 선명하지만 로빙 " -"인공물

Sharp Bilinear - [1-4 샘플]
\"Nearest Neighbor\"와 비" -"슷하게, 선명한 모양 유지,
하지만 역시 일렁거림을 피하기 위한 일부 섞기를 " -"한다.
낮은 해상도에서 2D 게임들과 최고로 작동한다.

Area " -"Sampling - [최고 324 샘플까지]
구역을 차지하는 비율에 따라 픽셀들 가중" -"치를 준다. 감마 보정된다.
2x 이상으로 다운 스케일링할 때 최고다." -"

모르겠으면, '기본' 선택." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1532,16 +1538,16 @@ msgstr "아프리카" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "공기" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "데이터 타입 길이로 정렬됨" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "모두" @@ -1555,11 +1561,11 @@ msgid "All Double" msgstr "모든 더블" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1567,7 +1573,7 @@ msgid "All Files" msgstr "모든 파일" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "모든 파일 (*)" @@ -1576,7 +1582,7 @@ msgstr "모든 파일 (*)" msgid "All Float" msgstr "모든 실수" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "모든 GC/Wii 파일들" @@ -1585,8 +1591,8 @@ msgstr "모든 GC/Wii 파일들" msgid "All Hexadecimal" msgstr "모든 16진수" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "모든 저장 상태 (*.sav *.s##);; 모든 파일 (*)" @@ -1598,7 +1604,7 @@ msgstr "모든 부호화 정수" msgid "All Unsigned Integer" msgstr "모든 비부호화 정수" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "모든 파일 (*)" @@ -1610,15 +1616,15 @@ msgstr "모든 플레이어의 코드가 동기화되었습니다." msgid "All players' saves synchronized." msgstr "모든 플레이어의 저장이 동기화되었습니다." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "맞지 않는 지역 설정 허락" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "사용 통계 보고 허용" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD 카드에 쓰기 허용" @@ -1648,7 +1654,7 @@ msgstr "항상" msgid "Always Connected" msgstr "항상 연결됨" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "항상 위에(&T)" @@ -1686,15 +1692,15 @@ msgstr "안티-앨리어싱:" msgid "Any Region" msgstr "아무 지역" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "서명 덧붙이기" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "존재하는 서명 파일에 덧붙이기... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "서명 파일 적용... (&y)" @@ -1714,7 +1720,7 @@ msgstr "앱로더 날짜:" msgid "Apply" msgstr "적용" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "서명 파일 적용" @@ -1746,12 +1752,16 @@ msgstr "확신합니까?" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "종횡비" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "종횡비:" @@ -1759,7 +1769,7 @@ msgstr "종횡비:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1767,7 +1777,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1784,7 +1794,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "선택된 저장 파일중에 적어도 2개가 같은 내부 파일명입니다." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "모션플러스 연결" @@ -1792,11 +1802,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 "오디오 늘림 설정" @@ -1808,12 +1818,12 @@ msgstr "오스트레일리아" msgid "Author" msgstr "작성자" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "제작자" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "자동" @@ -1821,11 +1831,7 @@ msgstr "자동" msgid "Auto (Multiple of 640x528)" msgstr "자동 (640x528의 배수)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "설정 자동 업데이트" @@ -1841,7 +1847,7 @@ msgstr "" "\n" "특정 내부 해상도를 선택해주세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "창 크기 자동 조정" @@ -1849,15 +1855,15 @@ msgstr "창 크기 자동 조정" msgid "Auto-Hide" msgstr "자동-숨기기" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "RSO 모듈을 자동-감지할까요?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "폴더와 자동으로 동기화" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1865,18 +1871,18 @@ msgstr "" "창 크기를 내부 해상도로 자동 조정합니다.

모르겠으" "면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "보조" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1884,7 +1890,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT가 올바르지 않습니다. 돌핀이 종료됩니다." -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1894,31 +1900,35 @@ msgstr "" "가 사용되어야만 합니다. 00:09:bf 나 00:17:ab 로 시작하는 새로운 MAC 주소를 생" "성하세요." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "바이오스:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP 레지스터" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "백 체인" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "백엔드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "백엔드:" @@ -1934,13 +1944,13 @@ msgstr "백그라운드 입력" msgid "Backward" msgstr "뒤로" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "안 좋은 값이 주어짐" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "안 좋은 주소가 제공되었습니다." @@ -1948,20 +1958,20 @@ msgstr "안 좋은 주소가 제공되었습니다." msgid "Bad dump" msgstr "안 좋은 덤프" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "안 좋은 오프셋이 제공되었습니다." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "안 좋은 값이 제공되었습니다." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "배너" @@ -1981,15 +1991,15 @@ msgstr "바" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "기본 우선순위" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "기본" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "기본 설정" @@ -1997,15 +2007,15 @@ msgstr "기본 설정" msgid "Bass" msgstr "베이스" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "배치 모드는 시작할 게임 명시 없이는 사용될 수 없습니다." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "배터리" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "베타 (한 달에 한 번)" @@ -2029,33 +2039,33 @@ msgstr "Bicubic: Mitchell-Netravali" msgid "Bilinear" msgstr "Bilinear" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "바이너리 SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "바이너리 SSL (읽기)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "바이너리 SSL (쓰기)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "비트레이트 (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"빈 피겨 생성이 이곳에서 실패했습니다:\n" -"%1, 다른 캐릭터로 다시 시도하세요" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "블락 크기" @@ -2064,7 +2074,7 @@ msgstr "블락 크기" msgid "Block Size:" msgstr "블락 크기:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "블락킹" @@ -2093,32 +2103,143 @@ msgstr "" "블루투스 패스쓰루 모드가 켜졌습니다, 하지만 돌핀이 libusb 없이 빌드되었습니" "다. 패스쓰루 모드를 사용할 수 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "부팅하고 멈추기" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 백업 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 키 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "틀 없는 전체화면" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "아래" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "분기: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "분기들" @@ -2156,11 +2277,11 @@ msgstr "광대역 어댑터 (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "광대역 어댑터 (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "광대역 어댑터 DNS 설정" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "광대역 어댑터 에러" @@ -2170,11 +2291,11 @@ msgstr "광대역 어댑터 에러" msgid "Broadband Adapter MAC Address" msgstr "광대역 어댑터 맥 어드레스" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "넷플레이 세션들 둘러보기...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "버퍼 크기:" @@ -2208,7 +2329,7 @@ msgstr "버튼" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2224,7 +2345,7 @@ msgstr "버튼" msgid "Buttons" msgstr "버튼" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2234,11 +2355,11 @@ msgstr "" msgid "C Stick" msgstr "C 스틱" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "서명 파일 생성... (&C)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP 레지스터" @@ -2250,7 +2371,7 @@ msgstr "CPU 에뮬레이션 엔진:" msgid "CPU Options" msgstr "CPU 옵션" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2258,7 +2379,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "캐시된 인터프리터 (더 느림)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2269,7 +2390,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "계산" @@ -2285,11 +2406,11 @@ msgstr "" "나 그래픽 이슈를 발생시킵니다.

잘 모르겠으면, 체크 " "해제해 두세요." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "측정합니다" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "측정" @@ -2297,19 +2418,19 @@ msgstr "측정" msgid "Calibration Period" msgstr "측정 기간" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "%1 에 %2 크기로 디스플레이 목록 불러오기" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "호출자들" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "호출들" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "콜스텍" @@ -2318,64 +2439,76 @@ msgid "Camera 1" msgstr "카메라 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "카메라 시야 ( 포인팅 민감도에 영향을 줍니다)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "가상 메모리 값용 AR 코드만 생성할 수 있습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "아직 수정할 수 없습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "이 트로피를 위해 악당들을 편집할 수 없습니다!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} 연결 핸들로 Wii 리모트를 찾을 수 없음" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "취소" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "측정 취소" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "FIFO 를 단일단계로 처리할 수 없습니다. 프레임 진행을 대신 사용하세요." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "NAND 에 설치될 수 없기 때문에 이 WAD 를 부팅할 수 없습니다." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "첫 검색의 마지막 값과 비교할 수 없습니다." -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "GC IPL 을 찾을 수 없습니다." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "이 주소에 대한 AR 코드를 생성할 수 없습니다." @@ -2383,19 +2516,21 @@ msgstr "이 주소에 대한 AR 코드를 생성할 수 없습니다." msgid "Cannot refresh without results." msgstr "결과 없이 새로할 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI 폴더를 빈 경로로 설정할 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "메모리 카드를 빈 경로로 설정할 수 없습니다." -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "GC IPL 을 찾을 수 없어서, 게임을 시작할 수 없습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "잡힌 악당 %1:" @@ -2413,7 +2548,7 @@ msgstr "중앙" msgid "Center Mouse" msgstr "마우스 중앙으로" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "중앙과 측정" @@ -2421,7 +2556,7 @@ msgstr "중앙과 측정" msgid "Change &Disc" msgstr "디스크 변경(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "디스크 변경...(&D)" @@ -2429,7 +2564,7 @@ msgstr "디스크 변경...(&D)" msgid "Change Disc" msgstr "디스크 변경" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "디스크 자동 교환" @@ -2437,7 +2572,7 @@ msgstr "디스크 자동 교환" msgid "Change the disc to {0}" msgstr "{0} 로 디스크를 변경합니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2473,7 +2608,7 @@ msgstr "치트 변경은 게임을 재시작해야만 효과가 반영될 것입 msgid "Channel Partition (%1)" msgstr "채널 파티션 (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "입력된 캐릭터가 부적합합니다!" @@ -2485,15 +2620,15 @@ msgstr "대화" msgid "Cheat Code Editor" msgstr "치트 코드 에디터" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "치트 찾기" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "치트 관리자" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "NAND 체크..." @@ -2501,7 +2636,7 @@ msgstr "NAND 체크..." msgid "Check for Game List Changes in the Background" msgstr "게임 목록 변경을 백그라운드로 체크" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "업데이트 확인" @@ -2521,27 +2656,27 @@ msgstr "체크섬" msgid "China" msgstr "중국" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "고르세요" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "열 파일 선택하기" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "열거나 만들 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "우선 입력 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "차선 입력 파일 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "GCI 기본 폴더를 고르세요" @@ -2568,15 +2703,19 @@ msgstr "클래식 컨트롤러" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "지움" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "캐시 청소" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "슬롯 비움" @@ -2584,7 +2723,7 @@ msgstr "슬롯 비움" msgid "Clock Override" msgstr "클럭 오버라이드" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "복제하고 코드 수정... (&E)" @@ -2593,37 +2732,21 @@ msgstr "복제하고 코드 수정... (&E)" msgid "Close" msgstr "닫기" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "환경설정(&n)" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "코드" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "코드 차이 도구" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "코드 차이 도구 도움말" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "코드가 실행되어지지 않았습니다" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "코드가 실행되었습니다" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2649,7 +2772,11 @@ msgstr "색 보정:" msgid "Color Space" msgstr "색 공간" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "두 서명 파일을 합치기... (&T)" @@ -2682,7 +2809,7 @@ msgstr "" "은 Wii U eShop 출시판에 비해 좋은 덤프일 가능성이 있습니다. 돌핀은 이것을 검" "증할 수 없습니다." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "시작하기 전에 쉐이더들 컴파일" @@ -2690,9 +2817,9 @@ msgstr "시작하기 전에 쉐이더들 컴파일" msgid "Compiling Shaders" msgstr "쉐이더들 컴파일하기" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "압축" @@ -2705,10 +2832,16 @@ msgstr "압축 레블:" msgid "Compression:" msgstr "압축:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2826,7 +2959,7 @@ msgstr "" "나 NaN 이 될 수 있습니다. NaN 이 리턴되면 경고가 주어질 것입니다, 그리고 NaN " "된 변수가 로그될 것입니다." -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr " 환경설정" @@ -2859,13 +2992,13 @@ msgstr "출력 설정" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "확정" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "백엔드 변경 확정" @@ -2873,7 +3006,7 @@ msgstr "백엔드 변경 확정" msgid "Confirm on Stop" msgstr "멈출 때 확인" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2884,15 +3017,15 @@ msgstr "확정" msgid "Connect" msgstr "연결" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "밸런스 보드 연결" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB 키보드 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Wii 리모트 %1 연결" @@ -2912,7 +3045,7 @@ msgstr "Wii 리모트 3 연결" msgid "Connect Wii Remote 4" msgstr "Wii 리모트 4 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Wii 리모트 연결" @@ -2953,7 +3086,7 @@ msgstr "넷플레이 골프 모드 컨트롤" msgid "Control Stick" msgstr "컨트롤 스틱" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "컨트롤러 프로파일" @@ -2977,7 +3110,7 @@ msgstr "컨트롤러 프로파일 4" msgid "Controller Settings" msgstr "컨트롤러 설정" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "컨트롤러" @@ -3055,8 +3188,8 @@ msgstr "수렴" msgid "Convergence:" msgstr "수렴:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "변환을 실패하였습니다." @@ -3064,9 +3197,9 @@ msgstr "변환을 실패하였습니다." msgid "Convert" msgstr "변환" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "파일을 폴더로 지금 변환" @@ -3074,9 +3207,9 @@ msgstr "파일을 폴더로 지금 변환" msgid "Convert File..." msgstr "파일 변환..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "폴더를 파일로 지금 변환" @@ -3098,8 +3231,8 @@ msgstr "" "와 비교해서 뚜렷하게 공간을 절약하지는 않습니다. 아무튼 계속 하시겠습니까?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "변환중..." @@ -3149,15 +3282,15 @@ msgstr "" msgid "Copy" msgstr "복사" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "함수 복사 (&f)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "헥스 복사 (&h)" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "주소 복사" @@ -3165,19 +3298,19 @@ msgstr "주소 복사" msgid "Copy Failed" msgstr "복사가 실패했습니다" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "헥스 복사" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "값 복사" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "코드 줄 복사 (&l)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "대상 주소 복사(&g)" @@ -3195,6 +3328,11 @@ msgstr "B로 복사" msgid "Core" msgstr "코어" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "색 공간 보정" @@ -3204,7 +3342,7 @@ msgid "Correct SDR Gamma" msgstr "SDR 감마 보정" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "비용" @@ -3297,7 +3435,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "{0} 파일을 인식할 수 없습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "변경을 저장할 수 없었습니다!" @@ -3340,13 +3478,13 @@ msgstr "파일을 읽을 수 없습니다." msgid "Country:" msgstr "국가:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "생성" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "무한대 파일 생성" @@ -3355,15 +3493,11 @@ msgstr "무한대 파일 생성" msgid "Create New Memory Card" msgstr "새로운 메모리 카트 생성" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "스카이랜더 파일 생성" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "스카이랜더 폴더 생성" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "다른 디바이스들을 위한 매핑을 생성합니다" @@ -3372,22 +3506,8 @@ msgstr "다른 디바이스들을 위한 매핑을 생성합니다" msgid "Create..." msgstr "생성..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"윈도우 크기가 아닌 안에서 표현되는, 렌더러의 내부해상도로 프레임 덤프와 스크" -"린샷을 생성합니다.

화면 비율이 와이드스크린이라면, 출력 이미지는 수" -"직 해상도를 보존하기 위해 수평으로 크기 조절이 될 것입니다." -"

잘 모르겠으면, 체크 해제해 두세요." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "만든이:" @@ -3395,11 +3515,11 @@ msgstr "만든이:" msgid "Critical" msgstr "치명적" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "자르기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3411,11 +3531,11 @@ msgstr "" msgid "Crossfade" msgstr "크로스페이드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "CPU 상에서 정점들 도태" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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, " @@ -3425,15 +3545,15 @@ msgstr "" "로우 통계에 효과가 있을지 모릅니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "현재 지역" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "현재 값" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "현재 맥락" @@ -3441,27 +3561,31 @@ msgstr "현재 맥락" msgid "Current game" msgstr "현재 게임" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "현재 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "커스텀 주소 공간" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3473,13 +3597,13 @@ msgstr "사용자 지정 RTC 옵션" msgid "Custom:" msgstr "사용자 지정:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "사용자 지정" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3504,7 +3628,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 에뮬레이션 엔진" @@ -3512,15 +3636,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 리컴파일러 (느림)" @@ -3546,7 +3670,7 @@ msgstr "댄스 매트" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "어두움" @@ -3562,7 +3686,7 @@ msgstr "데이터 파티션 (%1)" msgid "Data Transfer" msgstr "데이터 전송" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "데이터 타입" @@ -3595,8 +3719,8 @@ msgstr "데드 존" msgid "Debug" msgstr "디버그" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "디버깅" @@ -3605,7 +3729,7 @@ msgstr "디버깅" msgid "Decimal" msgstr "10 진수" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "디코딩 품질:" @@ -3652,7 +3776,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 "기본 장치" @@ -3664,11 +3788,11 @@ msgstr "기본 폰트" msgid "Default ISO:" msgstr "기본 ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "기본 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB 캐시 무효화를 연기" @@ -3676,7 +3800,7 @@ msgstr "EFB 캐시 무효화를 연기" msgid "Defer EFB Copies to RAM" msgstr "EFB 램에 복사 연기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3721,26 +3845,53 @@ msgstr "깊이 퍼센트:" msgid "Depth:" msgstr "깊이:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "설명" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "설명:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "떨어진" @@ -3748,7 +3899,7 @@ msgstr "떨어진" msgid "Detect" msgstr "감지" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "RSO 모듈 감지하기" @@ -3756,7 +3907,7 @@ msgstr "RSO 모듈 감지하기" msgid "Deterministic dual core:" msgstr "결정론적 듀얼 코어:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "개발 (하루에 여러 번)" @@ -3765,7 +3916,7 @@ msgid "Device" msgstr "장치" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "장치 PID (예, 0305)" @@ -3774,11 +3925,11 @@ msgid "Device Settings" msgstr "장치 설정" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "장치:" @@ -3786,11 +3937,7 @@ msgstr "장치:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 을 적합한 Riivolution XML 파일로 인식하지 못했습니다." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "차이" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "활동이 없을 경우 5분후에 화면을 어둡게 합니다." @@ -3802,12 +3949,12 @@ msgstr "직접 연결" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "연결 끊어진(&c)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "비활성화" @@ -3819,7 +3966,7 @@ msgstr "바운딩 박스 끄기" msgid "Disable Copy Filter" msgstr "복사 필터 비활성" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "EFB 비디오램 복사 비활성" @@ -3827,11 +3974,11 @@ msgstr "EFB 비디오램 복사 비활성" msgid "Disable Emulation Speed Limit" msgstr "에뮬레이션 속도 제한 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "패스트멤 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "패스트멤 투기장 비활성" @@ -3839,11 +3986,11 @@ msgstr "패스트멤 투기장 비활성" msgid "Disable Fog" msgstr "안개 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "JIT 캐시 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3861,7 +4008,7 @@ msgstr "" "도 모릅니다, 하지만 일부 게임은 깨질 것입니다.

잘 모" "르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4221,7 +4364,7 @@ msgstr "" "User/Dump/Textures/로 EFB 복사의 내용을 덤프합니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4239,15 +4382,15 @@ msgstr "터보 버튼 떼기의 기간 (프레임)" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "네덜란드어" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "종료(&x)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "EFB 복사 %1" @@ -4279,7 +4422,7 @@ msgstr "빠른 메모리 업데이트" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "지구" @@ -4292,7 +4435,7 @@ msgstr "동 아시아" msgid "Edit Breakpoint" msgstr "중단점 수정" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "편집..." @@ -4308,15 +4451,15 @@ msgstr "효과" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "효과적인" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "효율 우선순위" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4326,7 +4469,7 @@ msgstr "디스크 꺼내기" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "요소" @@ -4334,11 +4477,11 @@ msgstr "요소" msgid "Embedded Frame Buffer (EFB)" msgstr "내장형 프레임 버퍼 (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "비어있음" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "에뮬 쓰레드가 이미 구동중임" @@ -4346,11 +4489,11 @@ msgstr "에뮬 쓰레드가 이미 구동중임" msgid "Emulate Disc Speed" msgstr "디스크 속도 에뮬" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "무한대 기반 에뮬" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "스카이랜더 포탈 에뮬레이트" @@ -4366,7 +4509,7 @@ msgstr "" "실제 하드웨어의 디스크 속도를 에뮬합니다. 비활성화는 불안정을 유발할 수 있습" "니다. 기본 값은 True" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "에뮬된 USB 장치들" @@ -4389,28 +4532,16 @@ msgstr "" msgid "Emulation Speed" msgstr "에뮬레이션 속도" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "녹화하려면 에뮬레이션이 시작되어야 합니다" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API 검증 레이어 활성화" @@ -4422,11 +4553,11 @@ msgstr "달성 배지 활성화" msgid "Enable Achievements" msgstr "달성 활성화" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "오디오 늘림 활성" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "치트 활성화" @@ -4446,7 +4577,7 @@ msgstr "디버깅 UI 활성화" msgid "Enable Dual Core" msgstr "듀얼 코어 활성화" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "듀얼 코어 활성화 (속도 상승)" @@ -4466,7 +4597,7 @@ msgstr "재 달성 활성화" msgid "Enable FPRF" msgstr "FPRF 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "그래픽 모드 활성화" @@ -4492,6 +4623,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "리더보드 활성화" @@ -4505,7 +4640,7 @@ msgstr "MMU 활성화" msgid "Enable Progress Notifications" msgstr "진척도 알림 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "프로그레시브 스캔 활성화" @@ -4518,11 +4653,11 @@ msgid "Enable Rich Presence" msgstr "풍부한 존재 활성화" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "진동 활성화" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "화면 보호기 활성화" @@ -4534,15 +4669,15 @@ msgstr "스피커 데이터 활성화" msgid "Enable Unofficial Achievements" msgstr "비공식 달성 활성화" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "사용 통계 보고 활성화" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink 로 WiiConnect24 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "와이어프레임 활성화" @@ -4634,7 +4769,7 @@ msgstr "" "RetroAchievements에서 공식으로 간주되지 않은 옵션이나 미완료 달성이될 수 있으" "며 테스트용 또는 단순히 재미로 유용할 수 있습니다." -#: 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." @@ -4673,7 +4808,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4685,7 +4820,7 @@ msgstr "" "것은 Vulkan 백엔드 한정입니다.

잘 모르겠으면, 체크" "해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4711,7 +4846,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 "에뮬레이션 스피드와 맞도록 오디오 늘리기를 활성화합니다." @@ -4742,7 +4877,7 @@ msgstr "" "름)

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4754,7 +4889,7 @@ msgstr "" "한 대체 제공자입니다.\n" "이곳에서 서비스 설명을 읽으세요: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4766,7 +4901,7 @@ msgstr "" "쉐이더용 디버그 부호를 활성화합니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4797,7 +4932,7 @@ msgstr "Enet이 초기화되지 않았습니다." #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "영어" @@ -4806,7 +4941,7 @@ msgstr "영어" msgid "Enhancements" msgstr "향상" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "XLink Kai 클라이언트를 구동할 장치의 IP 주소 입력 :" @@ -4828,11 +4963,17 @@ msgstr "새로운 광대역 어댑터 맥 어드레스 입력:" msgid "Enter password" msgstr "패스워드 입력" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "사용할 DNS 서버를 입력:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "RSO 모듈 주소를 입력:" @@ -4841,8 +4982,8 @@ msgstr "RSO 모듈 주소를 입력:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4853,45 +4994,51 @@ msgstr "RSO 모듈 주소를 입력:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4901,16 +5048,16 @@ msgstr "RSO 모듈 주소를 입력:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "오류" @@ -4927,9 +5074,9 @@ msgstr "어댑터 열기 에러: %1" msgid "Error collecting save data!" msgstr "저장 데이터 수집 에러!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "값 변환 에러" @@ -4942,7 +5089,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "에러가 있는 세션 목록: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "일부 텍스처 팩을 로딩하는 중에 에러가 발생했습니다" @@ -5010,7 +5157,7 @@ msgstr "에러: GBA{0} {1} 에서 저장 열기에 실패했습니다" msgid "Error: This build does not support emulated GBA controllers" msgstr "Error: 이 빌드는 에뮬된 GBA 컨트롤러를 지원하지 않습니다" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5018,7 +5165,7 @@ msgstr "" "오류: Shift JIS 폰트들 접근을 시도하였으나 로드되지 않았습니다. 게임들이 제대" "로 폰트들을 보여주지 않거나 깨짐이 발생할 수 있습니다." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5039,54 +5186,12 @@ msgstr "{1} 파티션에 {0} 사용되지 않은 블락들에서 에러들이 msgid "Euphoria" msgstr "유포리아" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "유럽" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"예:\n" -"HP 가 수정되었을 때 구동되는 함수를 찾고 싶다.\n" -"1. 녹화를 시작하고 HP 가 수정되지 않은 상태로 게임을 플레이, 그런 후 '코드가 " -"실행되어지지 않았습니다'를 누른다.\n" -"2. 즉시 HP 얻기/잃기 후에 '코드가 실행되었습니다'를 누릅니다.\n" -"3. 결과를 좁히려면 1 또는 2를 반복합니다.\n" -"포함 (코드가 실행되었습니다) 은 원하는 것에 짧은 녹화 포커싱을 해야합니다.\n" -"\n" -"'코드가 실행되었습니다' 를 두번 누르면 두 녹화에서 구동되었던 함수들만 유지합" -"니다. 히트는 마지막 녹화의 히트 수를 반영하도록 업데이트됩니다. 총 히트는 해" -"당 목록들이 리셋으로 클리어될 때까지 함수가 실행되어진 총 수를 반영할 것입니" -"다.\n" -"\n" -"우 클릭 -> 'blr 설정' 은 blr 을 그 부호의 맨 위에 위치시킬 것입니다.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "제외됨: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "제외됨: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "전용 우버쉐이더" @@ -5094,7 +5199,7 @@ msgstr "전용 우버쉐이더" msgid "Exit" msgstr "나가기" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "+ 혹은 닫는 괄호를 예상했습니다." @@ -5102,7 +5207,7 @@ msgstr "+ 혹은 닫는 괄호를 예상했습니다." msgid "Expected arguments: " msgstr "예상되는 인수들: " -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "닫는 괄호를 예상했습니다." @@ -5114,15 +5219,15 @@ msgstr "쉼표를 예상했습니다." msgid "Expected end of expression." msgstr "표현식의 끝을 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "입력의 이름을 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "여는 괄호를 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "표현식의 시작을 예상했습니다." @@ -5130,11 +5235,11 @@ msgstr "표현식의 시작을 예상했습니다." msgid "Expected variable name." msgstr "변수 이름을 예상했습니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "실험적" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "모든 Wii 저장을 내보내기" @@ -5149,7 +5254,7 @@ msgstr "내보내기를 실패했습니다" msgid "Export Recording" msgstr "입력 기록 내보내기" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "입력 기록 내보내기..." @@ -5177,14 +5282,14 @@ msgstr ".gcs 로 내보내기... (&g)" msgid "Export as .&sav..." msgstr ".sav 로 내보내기... (&s)" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n 저장(들)을 내보냈습니다" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "확장" @@ -5205,7 +5310,7 @@ msgstr "외부의" msgid "External Frame Buffer (XFB)" msgstr "외부 프레임 버퍼 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "NAND 에서 증명서 추출" @@ -5238,12 +5343,12 @@ msgid "Extracting Directory..." msgstr "디렉토리 압축 풀기..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO 플레이어" @@ -5263,7 +5368,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "넷플레이 목록 : %1 에 이 세션을 추가하는데에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다." @@ -5271,13 +5376,13 @@ msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다." msgid "Failed to claim interface for BT passthrough: {0}" msgstr "블투 패스쓰루용 인터페이스 요청에 실패했습니다: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "스카이랜더 클리어에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "slot(%1) 에서 스카이랜더 클리어에 실패했습니다!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5304,23 +5409,21 @@ msgstr "D3D12 글로벌 리소스 생성에 실패했습니다" msgid "Failed to create DXGI factory" msgstr "DXGI 팩토리 생성에 실패했습니다" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "무한대 파일 생성에 실패했습니다" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "스카이랜더 파일 생성에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"스카이랜더 파일 생성에 실패했습니다:\n" -"%1\n" -"(포탈에 스카이랜더가 이미 있을지도 모릅니다)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5339,15 +5442,15 @@ msgstr "선택된 파일 삭제에 실패했습니다." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "블투 패스쓰루용 커널 드라이버를 분리하는데에 실패했습니다: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "코드 다운로드에 실패했습니다." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "덤프에 실패했습니다 %1: 파일을 열 수 없습니다" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "덤프에 실패했습니다 %1: 파일에 쓰기를 실패했습니다" @@ -5360,7 +5463,7 @@ msgstr "%1 저장 파일(들)로부터 %n 를 내보내기에 실패했습니다 msgid "Failed to export the following save files:" msgstr "다음 저장 파일들을 내보내기에 실패했습니다:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "NAND 에서 증명서 추출에 실패했습니다" @@ -5386,22 +5489,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "하나 이상의 D3D 부호 찾기에 실패했습니다" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "\"%1\" 가져오기에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "저장 파일을 가져오기에 실패했습니다. 해당 게임을 한번 띄워주세요, 그리고 다" "시 시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5409,7 +5508,7 @@ msgstr "" "저장 파일 가져오기에 실패했습니다. 주어진 파일은 오염되었거나 적합한 Wii 저장" "이 아닙니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5419,7 +5518,7 @@ msgstr "" "것이 그 안에 파일들에 액세스를 막고 있습니다. NAND (도구 -> NAND 관리 -> " "NAND 체크...) 를 고쳐 보세요, 그런 후 저장을 다시 가져오세요." -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "코어 인식에 실패했습니다" @@ -5433,7 +5532,7 @@ msgstr "" "비디오 카드가 적어도 D3D 10.0 지원하는지 확인하세요\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "렌더러 클래스 초기화에 실패했습니다" @@ -5442,11 +5541,11 @@ msgid "Failed to install pack: %1" msgstr "팩 설치에 실패했습니다: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "NAND 에 이 타이틀 설치에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5454,8 +5553,8 @@ msgstr "" "포트 %1 듣기에 실패했습니다. 구동 중인 다른 넷플레이 서버 인스턴스가 있습니" "까?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "%1 에서 RSO 모듈 로드에 실패했습니다" @@ -5467,19 +5566,21 @@ msgstr "d3d11.dll 로드에 실패했습니다" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll 로드에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "맵 파일 '%1' 을 로드에 실패했습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "스카이랜더 파일 로드에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "스카이랜더 파일(%1) 로드에 실패했습니다!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "실행 가능한 것을 메모리에 로드하는데 실패했습니다." @@ -5491,13 +5592,21 @@ msgstr "" "{0} 로드에 실패했습니다. 윈도우 7을 사용중이면, KB4019990 업데이트 패키지를 " "설치해보세요." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "스카이랜더 수정에 실패했습니다!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "'%1' 를 열기에 실패했습니다" @@ -5505,6 +5614,10 @@ msgstr "'%1' 를 열기에 실패했습니다" msgid "Failed to open Bluetooth device: {0}" msgstr "블루투스 장치 열기에 실패했습니다: {0}" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "환경 파일 열기에 실패했습니다!" @@ -5533,33 +5646,33 @@ msgstr "" msgid "Failed to open file." msgstr "파일 열기에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "서버 열기에 실패했습니다" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "무한대 파일 열기에 실패했습니다!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"무한대 파일 열기에 실패했습니다(%1)!\n" -"파일이 이미 베이스에서 사용중일지도 모릅니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "스카이랜더 파일 열기에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"스카이랜더 파일(%1) 열기에 실패했습니다!\n" -"파일이 아마 포탈에서 이미 사용 중일 것입니다." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5581,7 +5694,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Redump.org 데이터 문법분석에 실패했습니다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "주어진 값을 대상 데어터 타입으로 파싱하는데에 실패했습니다." @@ -5603,35 +5716,34 @@ msgstr "입력 파일 \"{0}\" 로 부터 읽기에 실패했습니다." msgid "Failed to read selected savefile(s) from memory card." msgstr "메모리 카드에서 선택된 저장파일(들)을 읽기에 실패했습니다." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "무한대 파일 읽기에 실패했습니다!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"무한대 파일 읽기에 실패했습니다(%1)!\n" -"파일이 너무 작습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "스카이랜더 파일 읽기에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"스카이랜더 파일(%1) 읽기에 실패했습니다!\n" -"파일이 너무 작았습니다." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5669,31 +5781,31 @@ msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "넷플레이 리다이렉트 폴더 재설정에 실패했습니다. 쓰기 권한을 검증하세요." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "FIFO 로그 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "경로 '%1' 에 코드 맵 저장을 실패했습니다" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "서명 파일 '%1' 을 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "경로 '%1' 에 심볼 맵 저장을 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "서명 파일 '%1' 에 저장에 실패했습니다." -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5749,7 +5861,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "실패" @@ -5757,11 +5869,11 @@ msgstr "실패" msgid "Fair Input Delay" msgstr "공정한 입력 지연" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "대비책 지역" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "대비책 지역:" @@ -5774,7 +5886,7 @@ msgstr "빠름" msgid "Fast Depth Calculation" msgstr "빠른 깊이 계산" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5787,11 +5899,11 @@ msgstr "" msgid "Field of View" msgstr "시야" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "피겨 번호:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "피겨 타입" @@ -5799,9 +5911,9 @@ msgstr "피겨 타입" msgid "File Details" msgstr "파일 세부사항" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "파일 형식" @@ -5813,20 +5925,20 @@ msgstr "파일 형식:" msgid "File Info" msgstr "파일 정보" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "파일 이름" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "파일 경로" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "파일 크기" @@ -5834,7 +5946,7 @@ msgstr "파일 크기" msgid "File Size:" msgstr "파일 크기:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "파일에 코드가 없습니다." @@ -5870,15 +5982,15 @@ msgstr "파일 시스템" msgid "Filters" msgstr "필터들" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "다음 찾기(&N)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "이전 찾기(&P)" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "측정 완료" @@ -5892,7 +6004,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "발사" @@ -5908,31 +6020,32 @@ msgstr "체크섬을 고치기" msgid "Fix Checksums Failed" msgstr "실패한 체크섬 고치기" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "플래그" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "플로우트" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "분기 따라가기 (&b)" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "최고의 결과를 얻으려면 당신의 입력을 모든 가능한 곳으로 천천히 움직이세요." @@ -5945,7 +6058,7 @@ msgstr "" "설정 지시사항들에 대해서, 이 페이지를 참고하세요." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -5953,7 +6066,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" @@ -5961,7 +6074,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" @@ -5993,11 +6106,11 @@ msgstr "강제 듣기 포트: " msgid "Force Nearest" msgstr "강제 Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "%1 가 기하학 쉐이더를 지원하지 않기 때문에 강제로 켜졌습니다." @@ -6037,17 +6150,17 @@ msgstr "앞으로" msgid "Forward port (UPnP)" msgstr "포트 열기 (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "%1 결과들을 찾았음 \"%2\" 에 대한 것임" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "%n 주소(들)을 발견했습니다." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "프레임 %1" @@ -6068,7 +6181,7 @@ msgstr "프레임 진행 속도 증가" msgid "Frame Advance Reset Speed" msgstr "프레임 진행 속도 리셋" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "프레임 덤핑" @@ -6076,7 +6189,7 @@ msgstr "프레임 덤핑" msgid "Frame Range" msgstr "프레임 범위" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "프레임 덤프 이미지(들) '{0}' 가 이미 존재합니다. 덮어쓰시겠습니까?" @@ -6100,7 +6213,7 @@ msgstr "빈 파일: %1" msgid "Free Look Control Type" msgstr "자유 보기 컨트롤 타입" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "자유 보기 컨트롤러 %1" @@ -6134,7 +6247,7 @@ msgstr "자유로운 보기 토글" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "프랑스어" @@ -6158,7 +6271,7 @@ msgstr "From" msgid "From:" msgstr "에서:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "전체화면" @@ -6190,7 +6303,7 @@ msgstr "GBA 코어" msgid "GBA Port %1" msgstr "GBA 포트 %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA 설정" @@ -6329,20 +6442,20 @@ msgstr "" "GPU: 당신의 비디오 카드는 OpenGL 2.x 을 지원합니까?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "게임" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "게임 보이 어드밴스" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "게임 보이 어드밴스 카트리지 (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6350,7 +6463,7 @@ msgstr "" "게임 보이 어드밴스 롬(*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;모" "든 파일 (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "포트 %1 에 게임 보이 어드밴스" @@ -6378,8 +6491,8 @@ msgstr "게임 감마" msgid "Game Gamma:" msgstr "게임 감마:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "게임 ID" @@ -6442,11 +6555,11 @@ msgstr "Wii U용 게임큐브 어댑터" msgid "GameCube Adapter for Wii U at Port %1" msgstr "포트 %1 에 Wii U 용 게임큐브 어댑터 " -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "게임큐브 컨트롤러" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "포트 %1 에 게임큐브 컨트롤러" @@ -6454,11 +6567,11 @@ msgstr "포트 %1 에 게임큐브 컨트롤러" msgid "GameCube Controllers" msgstr "게임큐브 컨트롤러" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "게임큐브 키보드" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "포트 %1 에 겜임큐브 키보드" @@ -6471,11 +6584,11 @@ msgid "GameCube Memory Cards" msgstr "게임큐브 메모리 카드" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "게임큐브 메모리 카드 (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "게임큐브 마이크 슬롯 %1" @@ -6503,7 +6616,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 코드" @@ -6513,35 +6626,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "일반" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "일반 옵션" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "액션 리플레이 코드 생성" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "새로운 통계 식별자 생성" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "AR 코드를 생성했습니다." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "독일어" @@ -6553,18 +6666,18 @@ msgstr "독일" msgid "GetDeviceList failed: {0}" msgstr "디바이스목록얻기 실패했음: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "거인" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "거인들" @@ -6577,8 +6690,8 @@ msgid "Good dump" msgstr "좋은 덤프" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "그래픽" @@ -6621,7 +6734,7 @@ msgstr "초록 왼쪽" msgid "Green Right" msgstr "초록 오른쪽" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "격자 보기" @@ -6630,7 +6743,7 @@ msgstr "격자 보기" msgid "Guitar" msgstr "기타" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "자이로스" @@ -6658,36 +6771,35 @@ msgstr "HDR 후-처리" msgid "Hacks" msgstr "핵" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "헤드" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "도움" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "영웅 레벨:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "헥스" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "헥스 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "헥스 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "헥스 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "헥스 바이트 스트링" @@ -6700,7 +6812,11 @@ msgstr "16진수" msgid "Hide" msgstr "숨기기" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "모두 숨기기" @@ -6716,12 +6832,12 @@ msgstr "비호환 세션들 숨기기" msgid "Hide Remote GBAs" msgstr "원격 GBA 숨기기" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "최고" @@ -6730,14 +6846,8 @@ msgstr "최고" msgid "Hit Strength" msgstr "치기 힘" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "히트" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "수평 시야" @@ -6754,7 +6864,7 @@ msgstr "호스트 코드:" msgid "Host Input Authority" msgstr "호스트 입력 권한" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "호스트 크기" @@ -6782,16 +6892,16 @@ msgstr "호스트 입력 권한 켜짐" msgid "Host with NetPlay" msgstr "넷플레이로 호스트" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "호스트명" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "단축키 설정" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "단축키" @@ -6800,7 +6910,7 @@ msgstr "단축키" msgid "Hotkeys Require Window Focus" msgstr "핫키들은 윈도우 포커스가 필요함" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "하이브리드 우버쉐이더" @@ -6814,16 +6924,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "나는 위험성을 알고 있고 계속하겠습니다" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "아이디" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "입력된 ID 가 부적합합니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -6864,7 +6974,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR 감도:" @@ -6914,11 +7024,11 @@ msgstr "" "\n" "타이밍-민감한 컨트롤을 지진 턴-기반 게임에 알맞음, 골프 같은." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "식별자 생성" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6985,11 +7095,15 @@ msgstr "" msgid "Ignore" msgstr "무시" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "포맷 변경들을 무시" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "이 세션을 무시" @@ -7020,7 +7134,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB 를 즉시 표시합니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7034,7 +7148,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND 백업 가져오기..." @@ -7049,15 +7163,15 @@ msgstr "가져오기를 실패했습니다" msgid "Import Save File(s)" msgstr "저장 파일(들)을 가져오기" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Wii 저장 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "NAND 백업 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7070,15 +7184,6 @@ msgstr "" msgid "In-Game?" msgstr "인-게임?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "포함됨: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "포함됨: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7091,27 +7196,27 @@ msgstr "" "트 놓침을 고칩니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "잘못된 영웅 레벨 값!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "잘못된 마지막 놓인 시간!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "잘못된 마지막 리셋 시간!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "잘못된 돈 수치!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "잘못된 별명!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "잘못된 플레이시간 값!" @@ -7156,15 +7261,16 @@ msgstr "증분 회전" msgid "Incremental Rotation (rad/sec)" msgstr "증분 회전 (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "무한대 피겨 생성자" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "무한대 매니저" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "무한대 오브젝트 (*.bin);;" @@ -7186,8 +7292,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "정보" @@ -7201,10 +7307,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "입력" @@ -7218,20 +7324,26 @@ msgstr "활성에 필요한 힘을 입력하세요." msgid "Input strength to ignore and remap." msgstr "무시하고 리매핑할 힘을 입력하세요." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "nop 삽입 (&n)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD 카드 삽입" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "조사됨" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7245,7 +7357,7 @@ msgstr "파티션 (%1) 설치" msgid "Install Update" msgstr "업데이트 설치" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WAD 설치..." @@ -7253,11 +7365,13 @@ msgstr "WAD 설치..." msgid "Install to the NAND" msgstr "NAND 에 설치" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "명령" @@ -7266,7 +7380,7 @@ msgstr "명령" msgid "Instruction Breakpoint" msgstr "명령 중단점" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "명령:" @@ -7275,7 +7389,7 @@ msgstr "명령:" msgid "Instruction: %1" msgstr "명령: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7296,19 +7410,19 @@ msgstr "강도" msgid "Interface" msgstr "인터페이스" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "내부 LZ4 오류 - {0} 바이트 압축해제를 시도했습니다" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "내부 LZ4 오류 - 압축 실패했습니다" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "내부 LZ4 오류 - 압축해제를 실패했습니다 ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "내부 LZ4 오류 - 적재량 크기 맞지 않음 ({0} / {1}))" @@ -7321,7 +7435,7 @@ msgstr "내부 LZO 오류 - 압축 실패했습니다" msgid "Internal LZO Error - decompression failed" msgstr "내부 LZO 오류 - 압축해제를 실패했습니다" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7329,7 +7443,7 @@ msgstr "" "내부 LZO 오류 - 압축풀기 실패했습니다 ({0}) ({1}) \n" "구식의 상태저장 버전 정보를 찾을 수 없었습니다." -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7337,7 +7451,7 @@ msgstr "" "내부 LZO 오류 - 압축해제된 버전 쿠키와 버전 스트링 길이를 분석에 실패했습니" "다 ({0})" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "내부 LZO 오류 - 압축해제된 버전 스트링 분석에 실패했습니다 ({0} / {1})" @@ -7352,7 +7466,7 @@ msgstr "내부 해상도" msgid "Internal Resolution:" msgstr "내부 해상도:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "AR 코드를 생성하는 동안 내부 에러." @@ -7360,11 +7474,11 @@ msgstr "AR 코드를 생성하는 동안 내부 에러." msgid "Interpreter (slowest)" msgstr "인터프리터 (가장 느림)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "인터프리터 코어" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "부적합 표현." @@ -7376,7 +7490,7 @@ msgstr "자동-업데이트 서비스에서 부적합한 JSON 을 받았습니 msgid "Invalid Mixed Code" msgstr "부적합 복합 코드" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "부적합한 %1 이 제공됨: %2" @@ -7385,11 +7499,11 @@ msgstr "부적합한 %1 이 제공됨: %2" msgid "Invalid Player ID" msgstr "부적합한 플레이어 아이디" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "부적합 RSO 모듈 주소: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "부적합한 스텍호출" @@ -7418,7 +7532,7 @@ msgstr "부적합한 입력이 제공됨" msgid "Invalid literal." msgstr "부적합한 문자." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "검색에 부적합 인자들." @@ -7430,19 +7544,19 @@ msgstr "부적합한 패스워드가 제공되었습니다." msgid "Invalid recording file" msgstr "부적합 기록 파일" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "부적합한 찾기 파라미터 (선택된 오브젝트 없음)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "부적합한 찾기 스트링 (숫자로 변환될 수 없었습니다)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "부적합한 찾기 스트링 (짝수 길이 스트링만 지원됩니다)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "부적합한 타이틀 ID." @@ -7452,7 +7566,7 @@ msgstr "부적합한 관찰 주소: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "이탈리아어" @@ -7461,63 +7575,63 @@ msgid "Italy" msgstr "이탈리아" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "아이템" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT 블록 연결 끄기" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT 블록들" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT 분기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT 소수점 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT 정수 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT 로드스토어 부동 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT 로드스토어 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT 로드스토어 짝짓기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT 로드스토어 lXz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT 로드스토어 lbzx 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT 로드스토어 lwz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT 끄기 (JIT 코어)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT 짝짓기 끄기" @@ -7529,16 +7643,16 @@ msgstr "ARM64 용 JIT 리컴파일러 (권장)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "x86-64 용 JIT 리컴파일러 (권장)" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT 레지스터 캐시 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT 시스템레지스터 끄기" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7546,12 +7660,16 @@ msgstr "" "JIT 이 캐시 청소후에 코드 공간 찾기에 실패했습니다. 이것은 절대 일어나서는 안" "됩니다. 버그 트랙커에 이 사고를 보고해주세요. 돌핀은 지금 나갈 것입니다." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "일본" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "일본어" @@ -7562,14 +7680,14 @@ msgstr "일본어" msgid "Japanese (Shift-JIS)" msgstr "일본어 (쉬프트-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" "Kaos 가 이 트로피에 대한 유일한 악당입니다. 어느 것도 수정할 필요가 없습니다!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "계속 구동하기" @@ -7583,7 +7701,7 @@ msgstr "창을 맨위로 유지" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "메모리에 값이 있는 주소를 유지" @@ -7604,7 +7722,7 @@ msgstr "키보드 컨트롤러" msgid "Keys" msgstr "키" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7612,12 +7730,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "플레이어 차기" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "한국" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "한국어" @@ -7628,7 +7746,7 @@ msgstr "한국어" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "롬 로드...(&L)" @@ -7638,7 +7756,7 @@ msgstr "롬 로드...(&L)" msgid "L-Analog" msgstr "L-아날로그" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR 세이브" @@ -7646,35 +7764,37 @@ msgstr "LR 세이브" msgid "Label" msgstr "레이블" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "마지막 값" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "마지막 위치:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7750,13 +7870,13 @@ msgstr "" msgid "Levers" msgstr "레버들" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "라이슨스" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "생명" @@ -7770,7 +7890,7 @@ msgstr "들기" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "왼쪽" @@ -7778,11 +7898,11 @@ msgstr "왼쪽" msgid "Limit Chunked Upload Speed:" msgstr "덩어리된 업로드 스피드 제한:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "목록 세로줄" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "목록 보기" @@ -7793,29 +7913,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "배드 맵 파일 로드... (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "다른 맵 파일 로드... (&O)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "커스텀 텍스처 로드" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "게임큐브 메인 메뉴 로드" @@ -7836,7 +7963,7 @@ msgstr "경로 로드:" msgid "Load ROM" msgstr "롬 로드" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "슬롯 로드" @@ -7925,19 +8052,19 @@ msgstr "슬롯 8 상태 로드" msgid "Load State Slot 9" msgstr "슬롯 9 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "파일에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "선택된 슬롯에서 상태를 로드합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "슬롯에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Wii 시스템 메뉴 %1 로드" @@ -7949,16 +8076,16 @@ msgstr "호스트의 저장 데이터 로드하고 쓰기" msgid "Load from Selected Slot" msgstr "선택된 슬롯에서 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "슬롯 %1 - %2 로부터 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "맵 파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "vWii 시스템 메뉴 %1 로드" @@ -7966,11 +8093,11 @@ msgstr "vWii 시스템 메뉴 %1 로드" msgid "Load..." msgstr "로드..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "'%1' 에서 부호들이 로드되었습니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -7980,7 +8107,7 @@ msgstr "" "game_id>/ 에서 커스텀 텍스처를 로드합니다.

잘 모" "르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8003,7 +8130,7 @@ msgid "Locked" msgstr "잠긴" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "로그" @@ -8015,7 +8142,7 @@ msgstr "로그 환경설정" msgid "Log In" msgstr "로그인" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "JIT 명령 커버리지 로그" @@ -8023,7 +8150,7 @@ msgstr "JIT 명령 커버리지 로그" msgid "Log Out" msgstr "로그아웃" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "렌더 타임을 파일에 로그" @@ -8039,7 +8166,7 @@ msgstr "로거 출력" msgid "Login Failed" msgstr "로그인 실패" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8057,16 +8184,16 @@ msgstr "루프" msgid "Lost connection to NetPlay server..." msgstr "넷플레이 서버 연결을 잃었습니다..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "최하" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8074,7 +8201,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "빈사" @@ -8084,7 +8211,7 @@ msgstr "MadCatz Gameshark 파일" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "마법" @@ -8092,37 +8219,37 @@ msgstr "마법" msgid "Main Stick" msgstr "메인 스틱" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "영웅 레벨 값은 0 과 100 사이임을 확인하세요!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "마지막 놓인 날짜시간 값이 유효한지 확인하세요!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "마지막 리셋 날짜시간 값이 유효한지 확인하세요!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "돈 수치가 0 과 65000 사이인지 확인하세요!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "별명이 0 과 15 사이의 문자 길이인지 확인하세요!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "플레이시간 값이 유효한지 확인하세요!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "슬롯 %1 에 스카이랜더가 있는지 확인하세요!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "제작사" @@ -8143,12 +8270,12 @@ msgstr "" "게임들을 망가뜨릴 것입니다.

잘 모르겠으면, 이것을 체" "크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "NAND 관리" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "수동 텍스처 샘플링" @@ -8160,7 +8287,7 @@ msgstr "매핑" msgid "Mask ROM" msgstr "마스크 롬" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "일치 발견" @@ -8177,16 +8304,16 @@ msgstr "최대 버퍼 크기가 %1 로 변경되었습니다" msgid "Maximum tilt angle." msgstr "최대 틸트 각도." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "중간" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "메모리" @@ -8198,7 +8325,7 @@ msgstr "메모리 중단점" msgid "Memory Card" msgstr "메모리 카드" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "메모리 카드 관리자" @@ -8210,7 +8337,7 @@ msgstr "메모리 카드 경로:" msgid "Memory Override" msgstr "메모리 오버라이드" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "메모리 중단점 옵션" @@ -8226,7 +8353,7 @@ msgstr "메모리카드: 부적합 소스 주소로 호출된 읽기 ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "메모리카드: 부적합 목적지 주소로 호출된 쓰기 ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8237,29 +8364,33 @@ msgstr "" "장들을 덮어쓰게 됩니다. 이 처리는 되돌릴 수 없습니다, 따라서 두 NAND 를 계속 " "백업할 것을 권장합니다. 정말 계속합니까?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "마이크" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "미니" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "기타" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "기타 설정" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "헤더안 빈 블락 숫자와 실제 사용되지 않은 블락수가 맞지 않습니다." @@ -8286,12 +8417,16 @@ msgstr "" "- 타이틀: {3}\n" "- 해시: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8301,24 +8436,25 @@ msgstr "" "션 리셋이 필요할 수도 있습니다.

잘 모르겠으면, 체크 " "해제해 두세요." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "슬롯 수정" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "발견된 모듈: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "돈:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "단일" @@ -8330,16 +8466,16 @@ msgstr "모노스코픽 그림자" msgid "Monospaced Font" msgstr "단일띄어쓰기 폰트" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "모션 입력" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "모션 시뮬레이션" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "모터" @@ -8378,6 +8514,10 @@ msgstr "" "무비 {0} 는 상태저장에서 시작함을 뜻합니다, 하지만 {1} 가 존재하지 않습니다. " "해당 무비가 동기화하기 힘들 것입니다!" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8387,10 +8527,10 @@ msgstr "곱하는 수" msgid "N&o to All" msgstr "모두 아니오(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 체크" @@ -8399,8 +8539,8 @@ msgstr "NAND 체크" msgid "NKit Warning" msgstr "NKit 경고" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8409,7 +8549,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8430,25 +8570,25 @@ msgstr "" "니다.

만일 게임이 감마 값을 고를 수 있도록 허용한다면, 여기서 맞추세" "요.

모르겠으면, 2.35 로 두세요." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "이름" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "새로운 태그 이름:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "제거할 태그의 이름:" @@ -8457,7 +8597,7 @@ msgid "Name of your session shown in the server browser" msgstr "서버 브라우저에서 보여지는 당신의 세션 이름" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8522,7 +8662,7 @@ msgstr "" msgid "Network" msgstr "네트워크" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "네트워크 덤프 포멧:" @@ -8552,7 +8692,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "새로운 찾기" @@ -8560,7 +8700,7 @@ msgstr "새로운 찾기" msgid "New Tag..." msgstr "새로운 태그..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "새로운 식별자가 생성되었습니다." @@ -8568,7 +8708,7 @@ msgstr "새로운 식별자가 생성되었습니다." msgid "New instruction:" msgstr "새로운 명령:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "새로운 태그" @@ -8577,7 +8717,7 @@ msgstr "새로운 태그" msgid "Next Game Profile" msgstr "다음 게임 프로파일" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "다음 일치" @@ -8591,7 +8731,7 @@ msgid "Nickname is too long." msgstr "별명이 너무 깁니다." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "별명:" @@ -8605,7 +8745,7 @@ msgstr "아니요" msgid "No Adapter Detected" msgstr "감지된 어댑터가 없습니다" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "정돈 없음" @@ -8619,7 +8759,7 @@ msgstr "오디오 출력 없음" msgid "No Compression" msgstr "압축하지 않음" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "일치 없음" @@ -8627,16 +8767,16 @@ msgstr "일치 없음" msgid "No Save Data" msgstr "저장 데이터 없음" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "수정할 데이터가 없음!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "적합한 상세 설명 없음" @@ -8652,15 +8792,15 @@ msgstr "선택된 확장이 없습니다." msgid "No file loaded / recorded." msgstr "로드된 / 녹화된 파일이 없음." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "구동중인 게임이 없습니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "구동중인 게임이 없습니다." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "선택된 그래픽 모드가 없음" @@ -8669,7 +8809,7 @@ msgstr "선택된 그래픽 모드가 없음" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "이슈가 감지되지 않았습니다." @@ -8681,10 +8821,6 @@ msgstr "매칭하는 게임을 찾지 못했습니다" msgid "No paths found in the M3U file \"{0}\"" msgstr "M3U 파일 \"{0}\" 에 경로가 없습니다" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "가능한 함수가 없습니다. 리셋합니다." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "문제들이 발견되지 않았습니다." @@ -8699,11 +8835,11 @@ msgstr "" "지만 Wii 타이틀이 많은 검증 데이터를 포합하고 있기때문에, 그것은 에뮬레이션" "에 악영향을 줄 문제들이 거의 없다는 것을 의미합니다." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "게임 설정 '{0}' 에 대한 프로파일이 없음" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "로드된 녹화가 없습니다." @@ -8712,7 +8848,7 @@ msgstr "로드된 녹화가 없습니다." msgid "No save data found." msgstr "발견된 저장 데이터가 없습니다." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "undo.dtm 이 없습니다, 무비 갈림을 막기위해서 상태로드 되돌리기를 취소합니다" @@ -8720,11 +8856,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "없음" @@ -8789,7 +8925,7 @@ msgid "Null" msgstr "없음" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "실행횟수" @@ -8824,10 +8960,58 @@ msgstr "눈챠쿠 스틱" msgid "OK" msgstr "확인" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "오브젝트 %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "오브젝트 범위" @@ -8841,7 +9025,7 @@ msgstr "오시애니아" msgid "Off" msgstr "끄기" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "오프셋" @@ -8853,7 +9037,7 @@ msgstr "켜기" msgid "On Movement" msgstr "움직일 때" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -8863,7 +9047,22 @@ msgstr "" "합니다, 작업을 위해서는 꼭지점 쉐이더를 선택하세요. 성능 효과가 있을 수도." "

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "온라인 문서(&D)" @@ -8871,7 +9070,7 @@ msgstr "온라인 문서(&D)" msgid "Only Show Collection" msgstr "컬렉션만 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8879,7 +9078,7 @@ msgstr "" "접두사를 가진 부호들만 덧붙입니다:\n" "(모든 부호들은 빈칸)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8889,7 +9088,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "열기" @@ -8898,11 +9097,11 @@ msgstr "열기" msgid "Open &Containing Folder" msgstr "담고 있는 폴더 열기(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "사용자 폴더 열기 (&U)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "디렉토리 열기..." @@ -8923,7 +9122,7 @@ msgstr "Riivolution XML 열기..." msgid "Open Wii &Save Folder" msgstr "Wii 저장 폴더 열기(&S)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "덤프 폴더 열기" @@ -8956,11 +9155,11 @@ msgid "Operators" msgstr "연산자들" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "옵션" @@ -8973,13 +9172,36 @@ msgstr "주황" msgid "Orbital" msgstr "궤도" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "다른 것들" @@ -8992,7 +9214,7 @@ msgstr "다른 파티션 (%1)" msgid "Other State Hotkeys" msgstr "다른 상태 단축키" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "다른 상태 관리" @@ -9012,16 +9234,16 @@ msgstr "출력 리샘플링" msgid "Output Resampling:" msgstr "출력 리샘플링:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "덮어 쓰여진" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "입력 기록 플레이...(&l)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9030,15 +9252,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG 압축 레블" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG 압축 레블:" @@ -9046,11 +9268,11 @@ msgstr "PNG 압축 레블:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG 이미지 파일 (*.png);; 모든 파일 (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC 크기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC 대 호스트" @@ -9063,11 +9285,11 @@ msgstr "패드" msgid "Pads" msgstr "패드" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "매개변수들" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "헥스로 파싱" @@ -9118,11 +9340,15 @@ msgstr "경로:" msgid "Paths" msgstr "경로" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "일시정지" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "무비의 끝에서 일시정지" @@ -9165,7 +9391,7 @@ msgstr "바깥쪽 스윙 이동의 피크 가속도" msgid "Per-Pixel Lighting" msgstr "픽셀단위 광원" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "온라인 시스템 업데이트 하기" @@ -9173,33 +9399,33 @@ msgstr "온라인 시스템 업데이트 하기" msgid "Perform System Update" msgstr "시스텝 업데이트 하기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "성능 샘플 윈도우 (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "성능 샘플 윈도우 (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "성능 통계" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "피지컬" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "물리적 주소 공간" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "디버그 폰트 고르기" @@ -9215,12 +9441,12 @@ msgstr "피치 내리기" msgid "Pitch Up" msgstr "피치 올리기" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "플랫폼" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr " 실행 " @@ -9232,7 +9458,7 @@ msgstr "재생 / 녹화" msgid "Play Recording" msgstr "(입력) 기록 재생" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "플레이 셋/파워 디스크" @@ -9244,27 +9470,27 @@ msgstr "재생 옵션" msgid "Player" msgstr "플레이어" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "플레이어 원" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "플레이어 원 능력 하나" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "플레이어 원 능력 둘" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "플레이어 투" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "플레이어 투 능력 하나" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "플레이어 투 능력 둘" @@ -9273,7 +9499,8 @@ msgstr "플레이어 투 능력 둘" msgid "Players" msgstr "플레이어" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "플레이시간:" @@ -9287,23 +9514,27 @@ msgstr "" "\"SyncOnSkipIdle\" 설정을\"True\" 로 바꾸세요! 현재 비활성화 되어있습니다, 이" "게 이 문제를 매우 잘 일어나게 합니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "표준 메모리 영역으로 찾기 시작하기 전에 게임을 시작하세요." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "포인트" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "포트 %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "포트 %1 롬:" @@ -9312,7 +9543,7 @@ msgstr "포트 %1 롬:" msgid "Port:" msgstr "포트:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "포탈 슬롯들" @@ -9333,11 +9564,11 @@ msgid "Post-Processing Shader Configuration" msgstr "후-처리 쉐이더 환경설정" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "점/선 확장용 선호 VS" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "커스텀 텍스처 프리패치" @@ -9345,11 +9576,11 @@ msgstr "커스텀 텍스처 프리패치" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "PlayController에 무비 마무리가 미완성되었습니다. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "PlayWiimote에 무비 마무리가 미완성되었습니다. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "PlayWiimote에 무비 마무리가 미완성되었습니다. {0} > {1}" @@ -9374,7 +9605,7 @@ msgstr "동기화 버튼을 누르세요" msgid "Pressure" msgstr "압력" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9393,7 +9624,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "이전 게임 프로파일" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "이전 일치" @@ -9404,7 +9635,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "프리머티브 %1" @@ -9416,7 +9647,7 @@ msgstr "사설" msgid "Private and Public" msgstr "사설과 공공" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "문제" @@ -9456,8 +9687,8 @@ msgstr "프로그램 카운터" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "진행" @@ -9465,11 +9696,11 @@ msgstr "진행" msgid "Public" msgstr "공공" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "게임 목록 캐시 제거" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "IPL 롬을 in User/GC/ 에 두세요." @@ -9489,14 +9720,14 @@ 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 디코더의 품질. 오디오 지연이 품질로 증가합니다." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "질문" @@ -9517,19 +9748,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-아날로그" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "준비" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO 모듈" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO 자동-감지" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "구동" @@ -9542,11 +9773,11 @@ msgstr "RVZ GC/Wii 이미지들 (*.rvz)" msgid "Range" msgstr "범위" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "범위 끝: " -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "범위 시작: " @@ -9558,7 +9789,11 @@ msgstr "랭크 %1" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "명령 바꾸기 (&p)" @@ -9570,14 +9805,14 @@ msgstr "읽기" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "읽고 쓰기" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "읽기 전용" @@ -9598,10 +9833,15 @@ msgstr "실제 밸런스 보드" msgid "Real Wii Remote" msgstr "실제 Wii 리모트" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "넷플레이에서 부적합한 Wii 원격 데이터를 받았습니다." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9615,7 +9855,7 @@ msgstr "녹화" msgid "Record Inputs" msgstr "입력 녹화" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "녹화" @@ -9656,7 +9896,7 @@ msgstr "" "용합니다.

잘 모르겠으면, 없음을 선택하세요." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org 상태:" @@ -9664,14 +9904,14 @@ msgstr "Redump.org 상태:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "새로고침" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "현재 값들을 새로하기" @@ -9679,11 +9919,11 @@ msgstr "현재 값들을 새로하기" msgid "Refresh Game List" msgstr "게임 목록 새로고침" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "새로하기를 실패했습니다. 게임을 잠시 구동하신 후에 다시 시도하세요." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "현재 값들을 새로했습니다." @@ -9692,8 +9932,8 @@ msgstr "현재 값들을 새로했습니다." msgid "Refreshing..." msgstr "새로고침..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "지역" @@ -9722,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "제거" @@ -9739,7 +9979,7 @@ msgstr "정크 데이터 제거 (되돌릴 수 없음):" msgid "Remove Tag..." msgstr "태그 제거..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "태그 제거" @@ -9753,8 +9993,8 @@ msgstr "" "으로 담지 않는다면) 압축공간을 조금도 절약하지 않습니다. 아무튼 계속 하시겠습" "니까?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "부호 이름 바꾸기" @@ -9762,11 +10002,11 @@ msgstr "부호 이름 바꾸기" msgid "Render Window" msgstr "렌더 창" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "메인 창에 렌더" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9784,23 +10024,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "리셋" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "모두 리셋" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "패닉 핸들러 무시를 리셋" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "결과들 리셋" @@ -9828,6 +10067,10 @@ msgstr "보기 리셋" msgid "Reset all saved Wii Remote pairings" msgstr "저장된 모든 Wii 리모트 페어링 재설정" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "리소스 팩 매니저" @@ -9844,7 +10087,7 @@ msgstr "재시작이 요구됩니다" msgid "Restore Defaults" msgstr "기본값 복원" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "명령 복구" @@ -9861,7 +10104,7 @@ msgstr "돌아오기 속도" msgid "Revision" msgstr "개정" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "개정: %1" @@ -9920,7 +10163,7 @@ msgstr "오른쪽 구르기" msgid "Room ID" msgstr "룸 ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "회전" @@ -9942,26 +10185,52 @@ msgstr "" "다.

잘 모르겠으면, 체크 해제해 두세요." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "진동" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "여기까지 실행 (&T)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "GBA 코어들을 전용 쓰레드로 구동합니다" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "때까지 구동" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "때까지 구동 (중단점들을 무시)" @@ -9977,19 +10246,19 @@ msgstr "러시아" msgid "SD Card" msgstr "SD 카드" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD 카드 파일 크기:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD 카드 이미지 (*.raw);;모든 파일 (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD 카드 경로:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD 카드 설정" @@ -9997,7 +10266,7 @@ msgstr "SD 카드 설정" msgid "SD Root:" msgstr "SD 루트:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD 동기화 폴더:" @@ -10010,7 +10279,7 @@ msgstr "SDR 디스플레이 감마 타겟" msgid "SELECT" msgstr "선택" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10018,11 +10287,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1 요약" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL 맥락" @@ -10032,11 +10301,11 @@ msgstr "SSL 맥락" msgid "START" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "코드 저장 (&v)" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "상태 저장(&v) " @@ -10049,7 +10318,6 @@ msgstr "안전" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10059,9 +10327,17 @@ msgstr "저장" msgid "Save All" msgstr "모두 저장" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "저장 내보내기" @@ -10070,24 +10346,24 @@ msgid "Save FIFO log" msgstr "FIFO 로그 저장" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "에 파일 저장" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "게임 저장" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "게임 저장 파일들 (*.sav);;모든 파일들 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "저장 가져오기" @@ -10099,13 +10375,13 @@ msgstr "가장 오래된 상태 저장" msgid "Save Preset" msgstr "프리셋 저장" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "녹화 파일을 다른 이름으로 저장" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "상태 저장" @@ -10149,23 +10425,23 @@ msgstr "슬롯 8 상태 저장" msgid "Save State Slot 9" msgstr "슬롯 9 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "파일에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "가장 오래된 슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "선택된 슬롯에 상태를 저장합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "심볼 맵 다른 이름으로 저장... (&A)" @@ -10173,7 +10449,7 @@ msgstr "심볼 맵 다른 이름으로 저장... (&A)" msgid "Save Texture Cache to State" msgstr "텍스처 캐시를 상태로 저장" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "상태 저장과 로드" @@ -10185,11 +10461,11 @@ msgstr "프리셋 다른 이름으로 저장..." msgid "Save as..." msgstr "다른 이름으로 저장..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "합쳐진 출력 파일 다른 이름으로 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10199,15 +10475,15 @@ msgstr "" "이터 백업을 고려하세요.\n" "지금 덮어쓰시겠습니까?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "롬과 같은 디렉토리에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "맵 파일 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "서명 파일 저장" @@ -10215,7 +10491,7 @@ msgstr "서명 파일 저장" msgid "Save to Selected Slot" msgstr "선택된 슬롯에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "슬롯 %1 - %2 에 저장" @@ -10227,7 +10503,7 @@ msgstr "저장..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "저장된 Wii 리모트 페어링은 게임이 구동 중일 때만 재설정될 수 있습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "저장들:" @@ -10239,26 +10515,26 @@ msgstr "상태저장 무비 {0} 가 손상되었습니다, 무비 기록 중지 msgid "Scaled EFB Copy" msgstr "스케일된 EFB 복사" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "스캔을 성공했습니다." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "스크린샷" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "찾기" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "주소 검색" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "최근 오브젝트 찾기" @@ -10266,11 +10542,11 @@ msgstr "최근 오브젝트 찾기" msgid "Search Subfolders" msgstr "하위폴더 찾기" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "검색과 필터" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10278,7 +10554,7 @@ msgstr "" "가상 주소 공간에서는 현재 검색할 수 없습니다. 게임을 잠시 구동하신 후에 다시 " "시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "명령에 대한 찾기" @@ -10286,11 +10562,11 @@ msgstr "명령에 대한 찾기" msgid "Search games..." msgstr "게임들 검색..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "명령 찾기" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "찾기:" @@ -10310,7 +10586,7 @@ msgstr "모든 그래픽 관련 설정들을 포함하는 섹션." msgid "Section that contains most CPU and Hardware related settings." msgstr "대부분의 CPU 와 하드웨어 관련된 설정들을 포함하는 섹션." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "보안 옵션" @@ -10318,28 +10594,36 @@ msgstr "보안 옵션" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "덤프 경로 선택" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "내보내기 디렉토리 선택" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "피겨 파일 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "GBA 바이오스 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "GBA 롬 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "GBA 저장 경로 선택" @@ -10359,15 +10643,15 @@ msgstr "리소스 팩 경로 선택" msgid "Select Riivolution XML file" msgstr "Riivolution XML 파일 선택" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "스카이랜더 컬렉션 선택" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "스카이랜더 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "슬롯 %1 - %2 선택" @@ -10375,7 +10659,7 @@ msgstr "슬롯 %1 - %2 선택" msgid "Select State" msgstr "상태 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "상태 슬롯 선택" @@ -10434,15 +10718,15 @@ msgstr "디렉토리 선택" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "파일 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" @@ -10450,11 +10734,11 @@ msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" msgid "Select a Game" msgstr "게임 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SD 카드 이미지 선택" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "파일 선택" @@ -10462,19 +10746,19 @@ msgstr "파일 선택" msgid "Select a game" msgstr "게임 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "NAND 에 설치할 타이틀 선택" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "e-Reader 카드 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "RSO 모듈 주소 선택:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "플레이할 녹화 파일 선택" @@ -10482,12 +10766,12 @@ msgstr "플레이할 녹화 파일 선택" msgid "Select the Virtual SD Card Root" msgstr "가상 SD 카드 루트 선택" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "키 파일 선택 (OTP/SEEPROM 덤프)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "저장 파일을 선택" @@ -10503,7 +10787,7 @@ msgstr "변환된 이미지들을 저장하고 싶은 곳을 선택하세요" msgid "Selected Font" msgstr "선택된 폰트" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "선택된 컨트롤러 프로파일이 존재하지 않습니다" @@ -10515,15 +10799,15 @@ msgstr "선택된 컨트롤러 프로파일이 존재하지 않습니다" msgid "Selected game doesn't exist in game list!" msgstr "선택된 게임은 게임 목록에 존재하지 않습니다!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "선택된 쓰레드 콜스택" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "선택된 쓰레드 맥락" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10531,7 +10815,7 @@ msgstr "" "사용할 하드웨어 어댑터를 선택하세요.

%1 는 이 기능" "을 지원하지 않습니다." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10539,6 +10823,25 @@ msgstr "" "사용할 하드웨어 어댑터를 선택하세요.

잘 모르겠으면, " "처음 것을 선택하세요." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10557,18 +10860,29 @@ msgstr "" "른 유형의 3D입니다.

잘 모르겠으면, 끄기를 선택하세" "요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10588,7 +10902,7 @@ msgstr "" msgid "Send" msgstr "보내기" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "센서 바 위치:" @@ -10615,16 +10929,12 @@ msgstr "서버 포트" msgid "Server rejected traversal attempt" msgstr "서버가 횡단 시도를 거절했습니다" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "값 설정(&V)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "blr 설정(&b)" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "PC 설정" @@ -10640,23 +10950,23 @@ msgstr "슬롯 A 용 메모리 카드 파일 설정" msgid "Set memory card file for Slot B" msgstr "슬롯 B 용 메모리 카드 파일 설정" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "부호 끝 주소 설정 (&e)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "부호 크기 설정 (&s)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "부호 끝 주소 설정" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "부호 크기 (%1) 설정:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10666,11 +10976,11 @@ msgstr "" "니다.\n" "모든 게임에서 작동하지는 않을 것입니다." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Wii 시스템 언어를 설정합니다." -#: 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." @@ -10678,7 +10988,7 @@ msgstr "" "지연을 밀리세컨즈로 설정합니다. 값이 높을수록 오디오 튐을 줄일지도 모릅니다. " "특정 백엔드 전용." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10692,20 +11002,20 @@ msgstr "" msgid "Settings" msgstr "설정" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "Wii메모리설정: setting.txt 파일을 생성할 수 없음" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "심각성" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "쉐이더 컴파일" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "흔들기" @@ -10722,16 +11032,16 @@ msgstr "신간선" msgid "Shinkansen Controller" msgstr "신간선 컨트롤러" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "% 속도 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "로그 보기(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "툴바 표시(&T)" @@ -10739,53 +11049,53 @@ msgstr "툴바 표시(&T)" msgid "Show Active Title in Window Title" msgstr "창 제목에 활성 타이틀 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "모두 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "오스트레일리아" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "디스코드에 현재 게임을 보여주기" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "활성된 코드들 먼저 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "프레임 카운터 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "프레임 타임 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "프랑스" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "게임큐브" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "독일" @@ -10797,23 +11107,23 @@ msgstr "골프 모드 오버레이 보기" msgid "Show Infinity Base" msgstr "무한대 베이스 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "입력 표시 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "이탈리아" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "일본 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "한국" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "랙 카운터 보기" @@ -10821,19 +11131,19 @@ msgstr "랙 카운터 보기" msgid "Show Language:" msgstr "언어 보기:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "로그 환경설정(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "넷플레이 메시지 보기" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "넷플레이 핑 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "네덜란드" @@ -10841,32 +11151,36 @@ msgstr "네덜란드" msgid "Show On-Screen Display Messages" msgstr "온-스크린 메시지 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "성능 그래프 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "플랫폼 표시" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "지역 표시" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "재녹화 횟수 보이기" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "러시아" @@ -10874,72 +11188,72 @@ msgstr "러시아" msgid "Show Skylanders Portal" msgstr "스카이랜더스 포탈 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "스페인" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "속도 색 보여주기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "통계 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "시스템 클럭 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "타이완" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "USA (미국 방식)" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "알려지지 않음" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "VBlank 타임 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "세계" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "메모리로 보기 (&m)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "코드로 보기" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "메모리로 보기" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "코드로 보기" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "메모리로 보기" @@ -10947,11 +11261,11 @@ msgstr "메모리로 보기" msgid "Show in server browser" msgstr "서버 브라우저에서 보기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "메모리에서 대상을 보여주기(&y)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -10960,7 +11274,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10979,7 +11293,7 @@ msgstr "" "풀스피드와 비교해 에뮬레이션의 % 속도를 보여줍니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -10989,7 +11303,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -10999,7 +11313,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11009,7 +11323,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11028,7 +11342,13 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11040,34 +11360,34 @@ msgstr "" msgid "Side-by-Side" msgstr "나란히" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "옆방향 잡기" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "옆방향 토글" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wii 리모트 옆으로" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "서명 데이터베이스" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "부호화 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "부호화 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "부호화 8" @@ -11076,7 +11396,7 @@ msgid "Signed Integer" msgstr "부호화 정수" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "간소화 중국어" @@ -11093,7 +11413,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." @@ -11101,11 +11421,11 @@ msgstr "" "밀리세컨드 단위의 늘림 버퍼 크기. 값이 너무 낮으면 오디오 지직거림을 일으킬" "지 모릅니다." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "스킵" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "그리기 스킵" @@ -11150,24 +11470,24 @@ msgstr "" "dolphin_emphasis>" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "스카이랜더" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "스카이랜더 %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "스카이랜더 (*.sky);;모든 파일들 (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "스카이랜더 컬렉션 경로:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "이 컬렉션에 스카이렌더가 없습니다. 새 파일을 생성합니까?" @@ -11175,10 +11495,6 @@ msgstr "이 컬렉션에 스카이렌더가 없습니다. 새 파일을 생성 msgid "Skylanders Manager" msgstr "스카이랜더스 매니저" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "이 사용자에 대한 스카이랜더스 폴더가 없습니다. 새 폴더를 생성합니까?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11188,7 +11504,7 @@ msgstr "슬라이더 바" msgid "Slot A" msgstr "슬롯 A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "슬롯 A:" @@ -11196,7 +11512,7 @@ msgstr "슬롯 A:" msgid "Slot B" msgstr "슬롯 B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "슬롯 B:" @@ -11204,7 +11520,7 @@ msgstr "슬롯 B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "엄지스틱 위치를 가장 가까운 8각 축으로 스냅합니다." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "소켓 테이블" @@ -11232,12 +11548,12 @@ msgstr "" "제공된 일부 값들이 부적합합니다.\n" "밝게표시된 값들을 확인하세요." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "알파벳순으로 정렬" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "사운드:" @@ -11251,27 +11567,27 @@ msgstr "스페인" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "스페인어" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "스피커 팬" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "스피커 볼륨:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "전문화된 (기본값)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "상세" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11299,15 +11615,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "스파이로의 모험" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "스택 끝" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "스택 시작" @@ -11320,25 +11636,28 @@ msgstr "표준 컨트롤러" msgid "Start" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "넷플레이 시작(&N)" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "새로운 치트 검색 시작" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "입력 기록 시작(&c)" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "(입력) 기록 시작" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "전체화면으로 시작" @@ -11354,10 +11673,10 @@ msgstr "Riivolution 패치들로 시작..." msgid "Started game" msgstr "시작된 게임" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "상태" @@ -11367,7 +11686,7 @@ msgstr "운전대" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "스텝" @@ -11379,13 +11698,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "스텝 넘어가기" @@ -11401,7 +11720,7 @@ msgstr "스텝 나가기 시간 초과!" msgid "Step over in progress..." msgstr "스텝 넘어가기 진행 중..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "스텝 성공!" @@ -11410,7 +11729,7 @@ msgstr "스텝 성공!" msgid "Stepping" msgstr "스텝핑" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "스테레오" @@ -11440,18 +11759,14 @@ msgstr "스틱" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "중지" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "입력 재생/기록 중지" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "녹화 중지" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "멈춰진 게임" @@ -11492,7 +11807,7 @@ msgstr "" "XFB 복사를 램(과 텍스처)에

잘 모르겠으면, 체크해 두" "세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "창으로 늘림" @@ -11527,8 +11842,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "성공" @@ -11555,7 +11870,7 @@ msgstr "%1 저장 파일(들)로부터 %n 를 성공적으로 내보냈습니다 msgid "Successfully exported save files" msgstr "저장 파일들을 성공적으로 내보냈습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "NAND 에서 증명서를 성공적으로 추출했습니다" @@ -11567,12 +11882,12 @@ msgstr "성공적으로 파일 압축을 풀었습니다." msgid "Successfully extracted system data." msgstr "성공적으로 시스템 데이터 압축을 풀었습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "저장 파일을 성공적으로 내보냈습니다." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "NAND 에 이 타이틀을 성공적으로 설치했습니다." @@ -11583,11 +11898,11 @@ msgstr "NAND 에서 이 타이틀을 성공적으로 제거했습니다." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "수퍼차저스" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "지원" @@ -11595,16 +11910,16 @@ msgstr "지원" msgid "Supported file formats" msgstr "지원하는 파일 포멧" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "서라운드" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "연기된" @@ -11614,12 +11929,12 @@ msgstr "눈 교차" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "스왑 포스" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "교환자" @@ -11633,7 +11948,7 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "스윙" @@ -11647,39 +11962,21 @@ msgid "Switch to B" msgstr "B로 스위치" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "부호" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "부호 (%1) 끝 주소:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"부호 맵이 발견되지 않았습니다.\n" -"\n" -"존재하지 않는다면, 메뉴 바에서 생성할 수 있습니다:\n" -"부호 -> 로 부터 부호 생성 ->\n" -"\t주소 | 서명 데이터베이스 | RSO 모듈" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "부호 이름:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "부호들" @@ -11707,7 +12004,7 @@ msgstr "" "듀얼 코어 모드에서 랜덤 프리징을 막을 수 있도록 GPU와 CPU 쓰레드들을 동기화합" "니다. (켬 = 호환성, 끔 = 빠름)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11726,24 +12023,24 @@ msgid "Synchronizing save data..." msgstr "저장 데이터를 동기화합니다..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "시스템 언어:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS 도구" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "태그" @@ -11753,7 +12050,7 @@ msgstr "태그" msgid "Taiko Drum" msgstr "타이코 드럼" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "꼬리" @@ -11761,15 +12058,15 @@ msgstr "꼬리" msgid "Taiwan" msgstr "타이완" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "스크린샷 찍기" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "대상 주소 범위가 부적합합니다." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11779,7 +12076,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "테크" @@ -11787,6 +12084,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11796,7 +12099,7 @@ msgstr "텍스처 캐시" msgid "Texture Cache Accuracy" msgstr "텍스처 캐시 정확도" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "텍스처 덤핑" @@ -11808,7 +12111,7 @@ msgstr "텍스처 필터링" msgid "Texture Filtering:" msgstr "텍스처 필터링:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "텍스처 포맷 오버레이" @@ -11837,7 +12140,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "{0} 파티션에 대한 H3 해쉬 테이블이 올바르지 않습니다." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "IPL 파일이 알려진 좋은 덤프가 아닙니다. (CRC32: {0:x})" @@ -11851,7 +12154,7 @@ msgstr "IPL 파일이 알려진 좋은 덤프가 아닙니다. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "명작 파티션들이 빠져있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11859,7 +12162,7 @@ msgstr "" "NAND 는 고쳐질 수 없었습니다. 현재 데이터 백업이 권장됩니다 그리고 생생한 " "NAND 로 다시 시작하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND 가 고쳐졌습니다." @@ -11873,11 +12176,11 @@ msgstr "" "면, Wii 시스템 메뉴는 더이상 그것을 시작하지 않고 NAND 로 다시 복사나 이동도 " "거부할 것입니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "이 스카이랜더가 가져야할 돈의 양. 0 과 65000 사이" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11919,6 +12222,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "해독 키들은 NAND 백업 파일에 첨부될 필요가 있습니다." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11941,7 +12251,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "삽입되려 했던 디스크를 찾을 수 없습니다." @@ -11963,17 +12273,17 @@ msgstr "에뮬된 Wii 콘솔이 이미 최신입니다." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "입력된 맥 어드레스가 부적합합니다." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "입력된 PID 가 부적합합니다." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "입력된 VID 가 부적합합니다." @@ -11981,7 +12291,7 @@ msgstr "입력된 VID 가 부적합합니다." msgid "The expression contains a syntax error." msgstr "표현식에 문법 에러가 있습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12001,7 +12311,7 @@ msgstr "" "파일 %1 이 이미 존재합니다.\n" "바꾸시겠습니까?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12019,7 +12329,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "{0} 파일이 이미 열려 있습니다, 파일 헤더는 기록되지 않을 것입니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12033,7 +12343,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "파일시스템이 부적합하거나 읽혀질 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -12101,13 +12411,11 @@ msgstr "해쉬가 일치하지 않습니다!" msgid "The hashes match!" msgstr "해쉬가 일치합니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"이 스카이랜더의 영웅 레벨. 스카이랜더스: 스파이로의 모험 에서만 보임 . 0 과 " -"100 사이" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12121,11 +12429,11 @@ msgstr "" msgid "The install partition is missing." msgstr "설치 파티션이 빠져있습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "포탈에 놓인 마지막 시간" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12143,9 +12451,9 @@ msgstr "" "있지 않습니다(대신, {1} 가 삽입되어 있습니다). 올바른 무비 동기화를 위해, 선" "택된 디바이스를 메모리 카드나 GCI 폴더로 바꿔주세요." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "이 스카이랜더용 별명. 15 글자들로 제한됨" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12174,13 +12482,13 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "해독된 AR 코드 결과가 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 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:596 +#: 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 "" @@ -12221,7 +12529,7 @@ msgstr "명시된 공통 키 인덱스는 {0} 입니다 하지만 {1} 이어야 msgid "The specified file \"{0}\" does not exist" msgstr "기술된 \"{0}\" 파일은 존재하지 않습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12238,11 +12546,11 @@ msgstr "대상 메모리 카드가 이미 파일 \"%1\" 을 가지고 있습니 msgid "The ticket is not correctly signed." msgstr "티켓이 올바르게 서명되어 있지 않습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "이 피겨가 게임안에서 사용된 초단위 총시간" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "이 피겨용 토이 코드. 리얼 피겨에서만 사용가능." @@ -12250,16 +12558,16 @@ msgstr "이 피겨용 토이 코드. 리얼 피겨에서만 사용가능." msgid "The type of a partition could not be read." msgstr "파티션 종류가 읽혀질 수 없었습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" "이 스카이랜더의 타입은 수정될 수 있는 어느 데이터도 가지고 있지 않습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "이 스카이랜더의 타입은 알려지지 않았습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12285,7 +12593,7 @@ msgstr "업데이트 파티션이 빠져있습니다." msgid "The update partition is not at its normal position." msgstr "업데이트 파티션이 정상적 위치에 있지 않습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12313,14 +12621,19 @@ msgstr "{0} 파티션은 올바르게 정렬되어 있지 않습니다." msgid "There are too many partitions in the first partition table." msgstr "첫 파티션 테이블에 너무 많은 파티션들이 있습니다." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "되돌릴 것이 없습니다!" @@ -12362,19 +12675,19 @@ msgstr "" "이 한국 타이틀은 보통 한국 콘솔에서 사용되지 않은 IOS 를 사용하게 세팅되어 있" "습니다. 이것은 ERROR #002 로 이어질 가능성이 있습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "이 스카이랜더 타입은 아직 수정될 수 없습니다!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "이 USB 장치는 이미 와이트리스트되어 있습니다." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "이 WAD 는 부팅이 가능하지 않습니다." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "이 WAD 는 적합하지 않습니다." @@ -12519,6 +12832,10 @@ msgstr "" msgid "This is a good dump." msgstr "이것은 좋은 덤프입니다." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "이 세션은 패스워드가 필요합니다:" @@ -12535,12 +12852,12 @@ msgstr "" "\n" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "이 소프트웨어는 합법적 소유가 아닌 게임을 플레이하기 위해 쓰여서는 안됩니다." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "이 타이틀은 부팅될 수 없습니다." @@ -12553,7 +12870,7 @@ msgstr "이 타이틀은 부적합 IOS 를 사용하도록 설정되어 있습 msgid "This title is set to use an invalid common key." msgstr "이 타이틀은 부적합 공유 키를 사용하도록 설정되어 있습니다." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12565,7 +12882,7 @@ msgstr "" "\n" "DSPHLE: 알려지지 않은 ucode (CRC = {0:08x}) - 강제 AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12588,6 +12905,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "이 값은 그래픽 환경설정에서 설정된 깊이와 곱해집니다." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12608,11 +12932,11 @@ msgstr "" "EFB 읽기를 사용하는 일부 게임에서 비동기화를 막을지도 모릅니다. 모두 같은 비" "디오 백엔드를 사용하는지 확실히 하세요." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "쓰레드 맥락" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "쓰레드" @@ -12620,12 +12944,12 @@ msgstr "쓰레드" msgid "Threshold" msgstr "한계점" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "기울기" @@ -12639,10 +12963,10 @@ msgstr "측정을 작동시키기 위한 안정적 입력 기간. (제로는 비 msgid "Timed Out" msgstr "시간 초과" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "타이틀" @@ -12656,7 +12980,7 @@ msgstr "To" msgid "To:" msgstr "까지:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "전체화면 토글(&F)" @@ -12681,7 +13005,7 @@ msgid "Toggle Aspect Ratio" msgstr "종횡비 토글" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "중단점 토글" @@ -12733,15 +13057,19 @@ msgstr "XFB 복사 토글" msgid "Toggle XFB Immediate Mode" msgstr "XFB 즉시 모드 토글" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "토큰화를 실패했습니다." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "툴바" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "위" @@ -12749,9 +13077,8 @@ msgstr "위" msgid "Top-and-Bottom" msgstr "위 아래로" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "총 히트" @@ -12788,28 +13115,28 @@ msgstr "총 이동 거리" msgid "Touch" msgstr "터치" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "토이 코드:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "전통 중국어" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "함정" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "함정 마스터" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "트랩 팀" @@ -12848,26 +13175,26 @@ msgid "Triggers" msgstr "트리거" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "트로피" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "타입" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "타입-기반 정돈" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "전형적 게임큐브/Wii 주소 공간" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "알려지지 않음" @@ -12879,7 +13206,7 @@ msgstr "미국" msgid "USB Device Emulation" msgstr "USB 장치 에뮬레이션" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB 에뮬레이션" @@ -12891,13 +13218,13 @@ msgstr "USB 에뮬레이션 장치들" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB 와이트리스트 에러" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -12908,7 +13235,7 @@ msgstr "" "

모르겠으면, 이 모드를 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -12920,7 +13247,7 @@ msgstr "" "로 버벅임을 겪었고 매우 강력한 GPU를 가지고 있지 않다면 이것을 사용하지 마세" "요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12933,7 +13260,7 @@ msgstr "" "의 경우 미약한 성능 타격을 얻는 반면 쉐이더 컴파일 버벅임을 완전제거합니다, " "하지만 결과는 비디오 드라이버 행동에 달려있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "RSO 모듈을 자동-감지할 수 없습니다" @@ -12945,11 +13272,11 @@ msgstr "업데이트 서버에 접촉할 수 없습니다." msgid "Unable to create updater copy." msgstr "업데이터 복사를 생성할 수 없습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "스카이랜더를 수정할 수 없습니다!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "파일 열기가 불가능합니다." @@ -12977,7 +13304,7 @@ msgstr "" "\n" "이 라인을 무시하고 분석을 계속합니까?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "파일 읽기가 불가능합니다." @@ -13000,15 +13327,15 @@ msgstr "압축풀린 GC/Wii 이미지들 (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "언데드" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "상태 로드 되돌리기" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "상태 저장 되돌리기" @@ -13028,11 +13355,11 @@ msgstr "" "WAD 를 언인스톨하면 NAND 에서 현재 설치된 이 타이틀 버전을 저장 데이터를 지우" "지 않고 제거하게 됩니다." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "미국" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13043,12 +13370,13 @@ msgstr "미국" msgid "Unknown" msgstr "알려지지 않음" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "알려지지 않음 (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "알려지지 않은 DVD 명령 {0:08x} - 치명적 오류" @@ -13076,11 +13404,11 @@ msgstr "" "알려지지 않은 SYNC_SAVE_DATA 메시지 id:{0} 를 플레이어:{1} 로 부터 받았습니" "다 플레이어 퇴장시키기!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "알려지지 않은 주소 공간" @@ -13088,7 +13416,7 @@ msgstr "알려지지 않은 주소 공간" msgid "Unknown author" msgstr "알려지지 않은 저자" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "알려지지 않은 데이터 타입" @@ -13096,7 +13424,7 @@ msgstr "알려지지 않은 데이터 타입" msgid "Unknown disc" msgstr "알려지지 않은 디스크" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "알려지지 않은 에러가 발생했습니다." @@ -13117,16 +13445,18 @@ msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "알려지지 않은 메시지 id:{0} 를 플레이어:{1} 로부터 받았습니다 플레이어 강퇴!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "알려지지 않음(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "알려지지 않음(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "무제한" @@ -13159,22 +13489,22 @@ msgid "Unpacking" msgstr "풀기" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "비부호화 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "비부호화 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "비부호화 8" @@ -13238,23 +13568,23 @@ msgstr "" "타이틀 %1 를 업데이트중...\n" "시간이 잠시 걸릴 수 있습니다." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "똑바로 잡기" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "똑바로 토글" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wii 리모트 똑바로" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "사용 통계 보고 설정" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "일반 DNS 용 8.8.8.8 을 사용합니다, 아니면 원하는 서버를 넣으세요." @@ -13266,15 +13596,15 @@ msgstr "모든 Wii 저장 데이터 사용" msgid "Use Built-In Database of Game Names" msgstr "내장된 데이터 베이스의 게임 이름 사용" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "비손실 코덱 (FFV1) 사용" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 모드 (EuRGB60) 사용" @@ -13282,7 +13612,7 @@ msgstr "PAL60 모드 (EuRGB60) 사용" msgid "Use Panic Handlers" msgstr "패닉 핸들러 사용" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13310,43 +13640,18 @@ msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" "양쪽 눈에 대해 하나의 깊이 버퍼를 사용합니다. 소수 게임들을 위해 필요합니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "스캔 시에 메모리 매퍼를 사용" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "물리적 주소를 사용" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "가능하면 가상 주소를 사용" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "사용자 환경" @@ -13385,7 +13690,7 @@ msgstr "" "져올 수 있습니다.

모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13395,7 +13700,7 @@ msgstr "" "입니다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Qt %1 를 사용하기" @@ -13413,31 +13718,31 @@ msgstr "Qt %1 를 사용하기" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "보통 광 오브젝트들에 쓰입니다" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "보통 일반 메이트릭스들에 쓰입니다" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "위치 메이트릭스들에 쓰입니다" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "보통 텍스처 좌표 메이트릭스들에 쓰입니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "유틸리티" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "수직-동기화" @@ -13445,11 +13750,11 @@ msgstr "수직-동기화" msgid "VBI Skip" msgstr "VBI 스킵" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "값" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "현재 명령으로 추적된 값." @@ -13457,17 +13762,17 @@ msgstr "현재 명령으로 추적된 값." msgid "Value:" msgstr "값:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "입력된 변형이 부적합합니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "변형:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "탈것" @@ -13483,16 +13788,16 @@ msgstr "상세설명" msgid "Verify" msgstr "검증" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "무결성 검증" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "증명서 검증" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "검증하기" @@ -13506,7 +13811,7 @@ msgid "Vertex Rounding" msgstr "버텍스 반올림" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "수직 시야" @@ -13520,12 +13825,12 @@ msgid "Video" msgstr "비디오" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "코드 보기 (&c)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "메모리 보기 (&m)" @@ -13533,14 +13838,14 @@ msgstr "메모리 보기 (&m)" msgid "Virtual Notches" msgstr "가상 노치" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "가상 주소 공간" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "볼륨" @@ -13560,32 +13865,32 @@ msgstr "볼륨 증가" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD 파일 (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "WAD 설치를 실패했습니다: Wii 샵 로그 파일을 생성할 수 없습니다." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WAD 설치를 실패했습니다: 타이틀 가져오기를 마무리 할 수 없습니다." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "WAD 설치를 실패했습니다: 내용 {0:08x} 를 가져올 수 없습니다." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "WAD 설치를 실패했습니다: 타이틀 가져오기를 초기화할 수 없었습니다 (에러 {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "WAD 설치를 실패했습니다: 선택된 파일은 적합한 WAD 가 아닙니다." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "대기" @@ -13634,12 +13939,12 @@ msgstr "WFS 경로:" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA GC/Wii 이미지들 (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "첫 스캔을 기다립니다..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13656,7 +13961,7 @@ msgstr "" "지도 모르기 때문입니다.

그렇지 않고, 잘 모르겠으" "면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13686,7 +13991,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "경고" @@ -13788,7 +14093,7 @@ msgstr "관찰" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "워터" @@ -13805,7 +14110,7 @@ msgstr "웨스턴 (윈도우즈-1252)" msgid "Whammy" msgstr "훼미" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13817,7 +14122,7 @@ msgstr "" "를 포함합니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13829,7 +14134,7 @@ msgstr "" "를 포함합니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "와이트리스트된 USB 패스쓰루 장치들" @@ -13853,7 +14158,7 @@ msgstr "Wii 메뉴" msgid "Wii NAND Root:" msgstr "Wii NAND 루트:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii 리모트" @@ -13861,7 +14166,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13879,7 +14184,7 @@ msgstr "Wii 리모트 버튼" msgid "Wii Remote Gyroscope" msgstr "Wii 리모트 자이로스콥" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii 리모트 설정" @@ -13899,7 +14204,7 @@ msgstr "Wii TAS 입력 %1 - Wii 리모트" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS 입력 %1 - Wii 리모트 + 눈챠쿠" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii 와 Wii 리모트" @@ -13907,11 +14212,11 @@ msgstr "Wii 와 Wii 리모트" msgid "Wii data is not public yet" msgstr "Wii 데이터는 아직 공개가 아닙니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 저장 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools 서명 MEGA 파일" @@ -13923,11 +14228,23 @@ msgstr "" "포커스가 있는 한 마우스 커서를 렌더 위젯에 가둘 것입니다. 이것을 풀기위한 핫" "키 설정을 할 수 있습니다." +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "창 크기" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "자동 줄바꿈" @@ -13941,10 +14258,14 @@ msgstr "세계" msgid "Write" msgstr "쓰기" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "쓰기 전용" @@ -13986,6 +14307,14 @@ msgstr "잘못된 지역" msgid "Wrong revision" msgstr "잘못된 개정" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13994,11 +14323,11 @@ msgstr "잘못된 개정" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF 레지스터" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA 대상 주소" @@ -14033,7 +14362,7 @@ msgstr "예" msgid "Yes to &All" msgstr "모두 예(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14042,7 +14371,7 @@ msgstr "" "%2 에 있는 파일의 내용을 %1 에 있는 폴더로 변환하려 합니다. 모든 현재 폴더의 " "내용이 삭제됩니다. 정말 계속 하시겠습니까?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: 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 " @@ -14179,7 +14508,7 @@ msgstr "" "문제를 고치기 위해 지금 멈추시겠습니까?\n" "\"아니오\" 를 선택하면, 오디오가 혼란스러울지도 모릅니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14199,15 +14528,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 코드는 지원되지 않습니다" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "돌핀에 알려지지 않은 Zero 코드: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] 와 [%3, %4]" @@ -14215,11 +14548,11 @@ msgstr "[%1, %2] 와 [%3, %4]" msgid "^ Xor" msgstr "^ Xor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "정렬됨" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "아무 값" @@ -14238,21 +14571,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll 는 로드될 수 없었습니다." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "기본값" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "연결이 끊겼습니다" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader 카드 (*.raw);;모든 파일 (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14260,31 +14593,35 @@ msgstr "errno" msgid "fake-completion" msgstr "가짜-완료" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "는 다음과 같다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "는 다음보다 크다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "는 다음보다 크거나 같다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "는 다음보다 적다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "는 다음보다 적거나 같다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "는 다음과 같지 않다" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "마지막 값" @@ -14294,7 +14631,7 @@ msgstr "마지막 값" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14306,13 +14643,13 @@ msgstr "" msgid "none" msgstr "없음" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "끄기" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "켜기" @@ -14329,16 +14666,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "이 값:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "유드로 게임태블릿" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "정렬되지 않음" @@ -14353,11 +14694,11 @@ msgstr "정렬되지 않음" msgid "{0} (Masterpiece)" msgstr "{0} (명작)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{1} 디렉토리에서 {0} IPL이 발견되었습니다. 디스크가 인식되지 않은 것 같습니다" @@ -14395,7 +14736,7 @@ msgstr "| 또는" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14406,8 +14747,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/ms.po b/Languages/po/ms.po index dcde330446fd..7f0805e61307 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -58,8 +58,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -80,19 +80,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -113,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -155,6 +156,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -181,13 +187,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -203,12 +209,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +231,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -233,26 +239,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -290,20 +296,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -313,23 +319,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "Perih&al" @@ -337,12 +343,12 @@ msgstr "Perih&al" msgid "&Add Memory Breakpoint" msgstr "&Tambah Titik Henti Ingatan" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "T&ambah Kod Baharu..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Tambah fungsi" @@ -350,27 +356,27 @@ msgstr "&Tambah fungsi" msgid "&Add..." msgstr "T&ambah" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Tetapan &Audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Auto Kemaskini:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Titik Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -378,15 +384,15 @@ msgstr "" msgid "&Cancel" msgstr "&Batal" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Pengurus Menipu" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Kosongkan Simbol" @@ -394,19 +400,24 @@ msgstr "&Kosongkan Simbol" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "K&od" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Tetapan Ka&walan" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Salin alamat" @@ -414,7 +425,7 @@ msgstr "&Salin alamat" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "Pa&dam" @@ -431,9 +442,9 @@ msgstr "Pa&dam Pantauan" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Sunting Kod..." @@ -441,23 +452,23 @@ msgstr "&Sunting Kod..." msgid "&Edit..." msgstr "&Sunting..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulasi" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -465,55 +476,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Fon..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "B&ingkai Lanjutan" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Jana Simbol Dari" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Repositori &GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Tetapan &Grafik" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Bantuan" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Tetapan Kekunci Pa&nas" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -521,19 +530,19 @@ msgstr "" msgid "&Import..." msgstr "&Import..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Sisip blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -541,15 +550,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Bahasa:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Muat Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Muat Peta Simbol" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -559,23 +572,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "Ce&reka" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -584,23 +597,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "B&uka..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "Pi&lihan" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Tampal Fungsi HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Jeda" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Main" @@ -608,15 +621,15 @@ msgstr "&Main" msgid "&Properties" msgstr "Si&fat" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "Mod Ba&ca-Sahaja" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Daftar" @@ -624,41 +637,45 @@ msgstr "&Daftar" msgid "&Remove" msgstr "&Buang" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "B&uang Kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Nama semula simbol" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "T&etap Semula" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Simpan Peta Simbol" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Had Kelajuan:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Henti" @@ -666,15 +683,19 @@ msgstr "&Henti" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "Ala&tan" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -684,17 +705,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Tonton" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Laman Sesawang" @@ -706,11 +727,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' tidak ditemui, tiada nama simbol dijana" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' tidak ditemui, mengimbas fungsi umum sebagai ganti" @@ -726,7 +747,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -734,7 +755,7 @@ msgstr "" msgid "(off)" msgstr "(mati)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -754,15 +775,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -773,12 +794,12 @@ msgstr "..." msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -790,7 +811,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -798,11 +819,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -814,17 +835,17 @@ msgstr "" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -836,11 +857,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -852,7 +873,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -864,25 +885,25 @@ msgstr "" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -896,11 +917,11 @@ msgstr "Kedalaman 3D" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -908,7 +929,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -924,7 +945,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -936,22 +957,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -959,11 +980,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -975,13 +996,13 @@ msgstr "" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -997,7 +1018,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1009,11 +1030,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1043,12 +1064,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Satu Sesi NetPlay sedang berlangsung!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1058,7 +1079,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Cakera A sedia dimasukkan." @@ -1068,11 +1089,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1090,6 +1111,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1111,7 +1136,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1120,8 +1145,8 @@ msgstr "" msgid "AR Codes" msgstr "Kod AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1135,7 +1160,7 @@ msgid "About Dolphin" msgstr "Perihal Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1154,7 +1179,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1240,19 +1265,19 @@ msgstr "" msgid "Active" msgstr "Aktif" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1260,7 +1285,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Penyesuai Dikesan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Penyesuai" @@ -1270,7 +1295,7 @@ msgstr "Penyesuai" msgid "Add" msgstr "Tambah" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1299,51 +1324,48 @@ msgstr "Tambah Titik Henti Ingatan" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Tambah untuk &dipantau" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Tambah..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Alamat" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1414,12 +1436,12 @@ msgid "Advance Game Port" msgstr "Port Advance Game" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Lanjutan" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1434,15 +1456,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1452,16 +1474,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1475,11 +1497,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1487,7 +1509,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1496,7 +1518,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1505,8 +1527,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Semua Keadaan Simpan (*.sav *.s##);; Semua Fail (*)" @@ -1518,7 +1540,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1530,15 +1552,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1566,7 +1588,7 @@ msgstr "" msgid "Always Connected" msgstr "Sentiasa Bersambung" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1604,15 +1626,15 @@ msgstr "Anti-Alias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1630,7 +1652,7 @@ msgstr "Tarikh Pemuatapl:" msgid "Apply" msgstr "Laksana" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1662,12 +1684,16 @@ msgstr "Anda pasti?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Nisbah Bidang:" @@ -1675,7 +1701,7 @@ msgstr "Nisbah Bidang:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1683,7 +1709,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1700,7 +1726,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1708,11 +1734,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" @@ -1724,12 +1750,12 @@ msgstr "Australia" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Pengarang" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1737,11 +1763,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (640x528 berbilang)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1753,7 +1775,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Auto-Laras Saiz Tetingkap" @@ -1761,32 +1783,32 @@ msgstr "Auto-Laras Saiz Tetingkap" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1794,38 +1816,42 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT tidak betul. Dolphin akan keluar sekarang" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Daftar BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Bahagian Belakang:" @@ -1841,13 +1867,13 @@ msgstr "Input Latar Belakang" msgid "Backward" msgstr "Undur" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1855,20 +1881,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Sepanduk" @@ -1888,15 +1914,15 @@ msgstr "Palang" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Asas" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Tetapan Asas" @@ -1904,15 +1930,15 @@ msgstr "Tetapan Asas" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Bateri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1936,31 +1962,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1969,7 +1997,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1998,32 +2026,143 @@ msgstr "" "Mod passthrough Bluetooth dibenarkan, tetapi Dolphin dibina tanpa libusb. " "Mod passthrough tidak dapat digunakan." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "But untuk Dijeda" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Fail sandar NAND BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fail kunci BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Skrin Penuh Tanpa Sempadan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Bawah" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2061,11 +2200,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2075,11 +2214,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2111,7 +2250,7 @@ msgstr "Butang" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2127,7 +2266,7 @@ msgstr "Butang" msgid "Buttons" msgstr "Butang" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2137,11 +2276,11 @@ msgstr "" msgid "C Stick" msgstr "Batang C" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Daftar CP" @@ -2153,7 +2292,7 @@ msgstr "" msgid "CPU Options" msgstr "Pilihan CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2161,14 +2300,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Pentafsir bercache (lebih perlahan)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2180,11 +2319,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2192,19 +2331,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Tindanan Panggilan" @@ -2213,65 +2352,77 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Tidak Dapat Langkah Tunggalkan FIFO. Guna Bingkai Lanjutan sebagai ganti." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "Tidak dapat membut WAD ini kerana ia tidak dipasang dengan NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Tidak dapat cari IPL GC." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2279,19 +2430,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Tidak dapat memulakan permainan, kerana IPL GC tidak ditemui." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2309,7 +2462,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2317,7 +2470,7 @@ msgstr "" msgid "Change &Disc" msgstr "Ubah &Cakera" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Ubah &Cakera..." @@ -2325,7 +2478,7 @@ msgstr "Ubah &Cakera..." msgid "Change Disc" msgstr "Ubah Cakera" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2333,7 +2486,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2359,7 +2512,7 @@ msgstr "Pengubahanan tipu hanya berkesan bila permainan dimulakan semula." msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2371,15 +2524,15 @@ msgstr "Sembang" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Gelitar Menipu" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Periksa NAND..." @@ -2387,7 +2540,7 @@ msgstr "Periksa NAND..." msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2407,27 +2560,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Pilih satu fail untuk dibuka" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2454,15 +2607,19 @@ msgstr "Pengawal Klasik" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Kosongkan" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2470,7 +2627,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Klon dan &Sunting Kod..." @@ -2479,36 +2636,20 @@ msgstr "Klon dan &Sunting Kod..." msgid "Close" msgstr "Tutup" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ko&nfigurasi" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2535,7 +2676,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2562,7 +2707,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2570,9 +2715,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2585,10 +2730,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2661,7 +2812,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Konfig" @@ -2694,13 +2845,13 @@ msgstr "Konfigur Output" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Sahkan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2708,7 +2859,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Sahkan bil Berhenti" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2719,15 +2870,15 @@ msgstr "Pengesahan" msgid "Connect" msgstr "Sambung" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Sambung Papan Imbang" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Sambung Papan Kekunci USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Sambung Wii Remote %1" @@ -2747,7 +2898,7 @@ msgstr "Sambung Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Sambung Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Sambung Wii Remote" @@ -2788,7 +2939,7 @@ msgstr "" msgid "Control Stick" msgstr "Bidak Kawalan" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2812,7 +2963,7 @@ msgstr "" msgid "Controller Settings" msgstr "Tetapan Pengawal" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Kawalan" @@ -2875,8 +3026,8 @@ msgstr "" msgid "Convergence:" msgstr "Ketumpuan:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2884,9 +3035,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2894,9 +3045,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2916,8 +3067,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2953,15 +3104,15 @@ msgstr "" msgid "Copy" msgstr "Salin" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Salin &fungsi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Salin &heks" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2969,19 +3120,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Salin &baris kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2999,6 +3150,11 @@ msgstr "" msgid "Core" msgstr "Teras" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3008,7 +3164,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Kos" @@ -3089,7 +3245,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3126,13 +3282,13 @@ msgstr "" msgid "Country:" msgstr "Negara:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3141,15 +3297,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3158,17 +3310,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Pencipta:" @@ -3176,11 +3319,11 @@ msgstr "Pencipta:" msgid "Critical" msgstr "Kritikal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Kerat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3192,26 +3335,26 @@ msgstr "" msgid "Crossfade" msgstr "Resap Silang" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Wilayah Semasa" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3219,27 +3362,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3251,13 +3398,13 @@ msgstr "Pilihan RTC Suai" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3282,7 +3429,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" @@ -3290,15 +3437,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 "" @@ -3320,7 +3467,7 @@ msgstr "Tikar Menari" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3336,7 +3483,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Jenis Data" @@ -3369,8 +3516,8 @@ msgstr "Zon Mati" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Menyahpepijat" @@ -3379,7 +3526,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 "" @@ -3426,7 +3573,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 "" @@ -3438,11 +3585,11 @@ msgstr "Fon Lalai" msgid "Default ISO:" msgstr "ISO Lalai:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3450,7 +3597,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3490,26 +3637,53 @@ msgstr "Peratus Kedalaman:" msgid "Depth:" msgstr "Kedalaman:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Keterangan" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Keterangan:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3517,7 +3691,7 @@ msgstr "" msgid "Detect" msgstr "Kesan" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3525,7 +3699,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Dwi-teras berketentuan:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3534,7 +3708,7 @@ msgid "Device" msgstr "Peranti" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "PID Peranti (iaitu, 0305)" @@ -3543,11 +3717,11 @@ msgid "Device Settings" msgstr "Tetapan Peranti" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "" @@ -3555,11 +3729,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Malapkan skrin selepas lima minit ketidakaktifan." @@ -3571,12 +3741,12 @@ msgstr "Sambungan Terus" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3588,7 +3758,7 @@ msgstr "Lumpuhkan Kotak Pembatas" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3596,11 +3766,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Lumpuhkan Had Kelajuan Emulasi" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3608,11 +3778,11 @@ msgstr "" msgid "Disable Fog" msgstr "Lumpuhkan Kabus" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3627,7 +3797,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3976,15 +4142,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Bahasa Belanda" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "Ke&luar" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4010,7 +4176,7 @@ msgstr "Kemaskini Ingatan Awal" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4023,7 +4189,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4039,15 +4205,15 @@ msgstr "Kesan" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4057,7 +4223,7 @@ msgstr "Lenting Cakera" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4065,11 +4231,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Penimbal Bingkai Terbenam (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Kosong" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Bebenang Emu sudah berjalan" @@ -4077,11 +4243,11 @@ msgstr "Bebenang Emu sudah berjalan" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4095,7 +4261,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4115,28 +4281,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Kelajuan Emulasi" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Benarkan Lapisan Pengesahan API" @@ -4148,11 +4302,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Benarkan Peregangan Audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Benarkan Menipu" @@ -4172,7 +4326,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Benarkan Dwi-Teras" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Benarkan Dwi-Teras (lajukan)" @@ -4192,7 +4346,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Benarkan FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4218,6 +4372,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4231,7 +4389,7 @@ msgstr "Benarkan MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Benarkan Imbas Progresif" @@ -4244,11 +4402,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Benarkan Rumble" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Benarkan Penyelamat Skrin" @@ -4260,15 +4418,15 @@ msgstr "Benarkan Data Pembesar Suara" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Benarkan Pelaporan Statistik Penggunaan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Benarkan Bingkai Wayar" @@ -4338,7 +4496,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4373,7 +4531,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4381,7 +4539,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4398,7 +4556,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." @@ -4426,7 +4584,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4434,7 +4592,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4442,7 +4600,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4467,7 +4625,7 @@ msgstr "Enet Tidak Diawalkan" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Bahasa Inggeris" @@ -4476,7 +4634,7 @@ msgstr "Bahasa Inggeris" msgid "Enhancements" msgstr "Penambahbaikan" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4498,11 +4656,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Masukkan alamat modul RSO:" @@ -4511,8 +4675,8 @@ msgstr "Masukkan alamat modul RSO:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4523,45 +4687,51 @@ msgstr "Masukkan alamat modul RSO:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4571,16 +4741,16 @@ msgstr "Masukkan alamat modul RSO:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Ralat" @@ -4597,9 +4767,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4611,7 +4781,7 @@ msgstr "Ralat memuatkan bahasa pilihan. Jatuh balik ke lalai sistem." msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4677,7 +4847,7 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4685,7 +4855,7 @@ msgstr "" "Ralat: Ketika cuba mencapai fon Shift JIS tetapi ia tidak dimuatkan. " "Permainan mungkin tidak menunjukkan fon yang betul, atau mengalami kerosakan." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4706,40 +4876,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eropah" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4747,7 +4889,7 @@ msgstr "" msgid "Exit" msgstr "Keluar" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4755,7 +4897,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4767,15 +4909,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4783,11 +4925,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Eskport Semua Simpan Wii" @@ -4802,7 +4944,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksport Rakaman" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Eksport Rakaman..." @@ -4830,14 +4972,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Sambungan" @@ -4858,7 +5000,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Penimbal Bingkai Luaran (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Ekstrak Sijil dari NAND" @@ -4891,12 +5033,12 @@ msgid "Extracting Directory..." msgstr "Mengekstrak Direktori..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Pemain FIFO" @@ -4914,7 +5056,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4922,12 +5064,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4955,19 +5097,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4987,15 +5130,15 @@ msgstr "Gagal memadam fail terpilih." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Gagal muat turun kod." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -5008,7 +5151,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Gagal mengekstrak sijil dari NAND" @@ -5031,33 +5174,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Gagal ke teras init" @@ -5068,7 +5207,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5077,11 +5216,11 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Gagal memasang tajuk ini ke NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5089,8 +5228,8 @@ msgstr "" "Gagal mendengar pada port %1. Adakah kejadian lain pelayan NetPlay masih " "berjalan?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Gagal memuatkan modul RSO pada %1" @@ -5102,19 +5241,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Gagal memuatkan bolehlaku ke dalam ingatan." @@ -5124,13 +5265,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Gagal membuka '%1'" @@ -5138,6 +5287,10 @@ msgstr "Gagal membuka '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5164,28 +5317,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Gagal membuka pelayan" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5205,7 +5362,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5227,31 +5384,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5285,31 +5445,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Gagal menyimpan log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5360,7 +5520,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5368,11 +5528,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5385,7 +5545,7 @@ msgstr "Pantas" msgid "Fast Depth Calculation" msgstr "Pengiraan Kedalaman Pantas" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5396,11 +5556,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5408,9 +5568,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5422,20 +5582,20 @@ msgstr "" msgid "File Info" msgstr "Maklumat Fail" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nama Fail" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Saiz Fail" @@ -5443,7 +5603,7 @@ msgstr "Saiz Fail" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Fail tidak mengandungi kod." @@ -5477,15 +5637,15 @@ msgstr "Sistem Fail" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5499,7 +5659,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5515,31 +5675,32 @@ msgstr "Baiki Hasil Tambah Semak" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bendera" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Apung" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Ikut &cabang" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5549,13 +5710,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5563,7 +5724,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" @@ -5595,11 +5756,11 @@ msgstr "Paksa Port Dengar:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5636,17 +5797,17 @@ msgstr "Maju" msgid "Forward port (UPnP)" msgstr "Port maju (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5667,7 +5828,7 @@ msgstr "Bingkai Lanjutan Tingkatkan Kelajuan" msgid "Frame Advance Reset Speed" msgstr "Bingkai Lanjutan Tetap Semula Kelajuan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5675,7 +5836,7 @@ msgstr "" msgid "Frame Range" msgstr "Julat Bingkai" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5699,7 +5860,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5730,7 +5891,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Perancis" @@ -5754,7 +5915,7 @@ msgstr "Dari" msgid "From:" msgstr "Dari:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "SkrPenuh" @@ -5786,7 +5947,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5902,26 +6063,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartu Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5949,8 +6110,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID Permainan" @@ -6010,11 +6171,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Pengawal GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Pengawal GameCube pada Port %1" @@ -6022,11 +6183,11 @@ msgstr "Pengawal GameCube pada Port %1" msgid "GameCube Controllers" msgstr "Kawalan GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Papan Kekunci GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Papan Kekunci GameCube pada Port %1" @@ -6039,11 +6200,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Kad Ingatan GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "Slot Mikrofon GameCube %1" @@ -6071,7 +6232,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kod Gecko" @@ -6081,35 +6242,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Am" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Am dan Pilihan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Jana satu Identiti Statistik Baharu" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Jerman" @@ -6121,18 +6282,18 @@ msgstr "Jerman" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6145,8 +6306,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6185,7 +6346,7 @@ msgstr "Hijau Kiri" msgid "Green Right" msgstr "Hijau Kanan" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Paparan Grid" @@ -6194,7 +6355,7 @@ msgstr "Paparan Grid" msgid "Guitar" msgstr "Gitar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6222,36 +6383,35 @@ msgstr "" msgid "Hacks" msgstr "Godam" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6264,7 +6424,11 @@ msgstr "Heksadesimal" msgid "Hide" msgstr "Sembunyi" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6280,12 +6444,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6294,14 +6458,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6318,7 +6476,7 @@ msgstr "Kod Hos:" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6342,16 +6500,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "Hos dengan NetPlay" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Tetapan Kekunci Panas" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Kekunci Panas" @@ -6360,7 +6518,7 @@ msgstr "Kekunci Panas" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6374,16 +6532,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6418,7 +6576,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Kepekaan IR:" @@ -6451,11 +6609,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Penjanaan Identiti" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6511,11 +6669,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Abai Perubahan Format" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6539,7 +6701,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Serta-Merta Hadirkan XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6548,7 +6710,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Import Sandar NAND BootMii..." @@ -6563,15 +6725,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Import Simpan Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Mengimport sandar NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6584,15 +6746,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6601,27 +6754,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6666,15 +6819,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6694,8 +6848,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Maklumat" @@ -6709,10 +6863,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Input" @@ -6726,20 +6880,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Sisip &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sisip Kad SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6753,7 +6913,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Pasang WAD..." @@ -6761,11 +6921,13 @@ msgstr "Pasang WAD..." msgid "Install to the NAND" msgstr "Pasang ke NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6774,7 +6936,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "Titik Henti Arahan" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6783,7 +6945,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6800,19 +6962,19 @@ msgstr "" msgid "Interface" msgstr "Antaramuka" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6825,19 +6987,19 @@ msgstr "Ralat LZO Dalaman - pemampatan gagal" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6852,7 +7014,7 @@ msgstr "Resolusi Dalaman" msgid "Internal Resolution:" msgstr "Resolusi Dalaman:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6860,11 +7022,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Pentafsir (paling perlahan)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6876,7 +7038,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Kod Bercampur Tidak Sah" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6885,11 +7047,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "ID Pemain Tidak Sah" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Alamat modul RSO tidak sah: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Tindanan panggilan tidak sah" @@ -6918,7 +7080,7 @@ msgstr "Input tidak sah disediakan" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6930,19 +7092,19 @@ msgstr "" msgid "Invalid recording file" msgstr "Fail rakaman tidak sah" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Parameter gelintar tidak sah (tiada objek dipilih)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Parameter gelintar tidak sah (hanya panjang rentetan disokong)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "ID tajuk tidak sah." @@ -6952,7 +7114,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Itali" @@ -6961,63 +7123,63 @@ msgid "Italy" msgstr "Itali" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -7029,27 +7191,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Jepun" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Jepun" @@ -7060,13 +7226,13 @@ msgstr "Jepun" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7080,7 +7246,7 @@ msgstr "Kekalkan Tetingkap berada Diatas" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7101,7 +7267,7 @@ msgstr "" msgid "Keys" msgstr "Kekunci" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7109,12 +7275,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Tendang Pemain" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korea" @@ -7125,7 +7291,7 @@ msgstr "Korea" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7135,7 +7301,7 @@ msgstr "" msgid "L-Analog" msgstr "Analog-L" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7143,35 +7309,37 @@ msgstr "" msgid "Label" msgstr "Label" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7241,13 +7409,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Lesen" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7261,7 +7429,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7269,11 +7437,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Lajur Senarai" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Paparan Senarai" @@ -7284,29 +7452,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Muat" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Muat Fail Peta &Lain..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Muat Tekstur Suai" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Muat Menu Utama GameCube" @@ -7327,7 +7502,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7416,19 +7591,19 @@ msgstr "Muat Slot Keadaan 8" msgid "Load State Slot 9" msgstr "Muat Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Muat Keadaan dari Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Muat Keadaan dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Muat Keadaan dari Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Muat Menu Sistem Wii %1" @@ -7440,16 +7615,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Muat dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Muat dari Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Muat fail peta" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7457,18 +7632,18 @@ msgstr "" msgid "Load..." msgstr "Muat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Simbol dimuatkan dari '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7488,7 +7663,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7500,7 +7675,7 @@ msgstr "Log Konfigurasi" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7508,7 +7683,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Log Masa Terap ke Fail" @@ -7524,7 +7699,7 @@ msgstr "Output Pengelog" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7539,16 +7714,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Sambung dengan pelayan NetPlay terputus..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7556,7 +7731,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7566,7 +7741,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7574,37 +7749,37 @@ msgstr "" msgid "Main Stick" msgstr "Bidak Utama" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Pembuat:" @@ -7621,12 +7796,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7638,7 +7813,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Padanan Ditemui" @@ -7655,16 +7830,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Ingatan" @@ -7676,7 +7851,7 @@ msgstr "Titik Henti Ingatan" msgid "Memory Card" msgstr "Kad Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7688,7 +7863,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Pilihan titik henti ingatan" @@ -7704,7 +7879,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7716,29 +7891,33 @@ msgstr "" "tidak boleh dikembalikan, oleh itu disarankan anda sandar kedua-dua NAND. " "Anda pasti mahu teruskan?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Pelbagai" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Tetapan Pelbagai" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7758,36 +7937,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Pengubahsuai" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7799,16 +7983,16 @@ msgstr "Bayang Monoskopik" msgid "Monospaced Font" msgstr "Fon Monospace" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7845,6 +8029,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7854,10 +8042,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Semak NAND" @@ -7866,8 +8054,8 @@ msgstr "Semak NAND" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -7876,7 +8064,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7893,25 +8081,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7920,7 +8108,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7977,7 +8165,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -8007,7 +8195,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -8015,7 +8203,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Identiti baharu dijanakan." @@ -8023,7 +8211,7 @@ msgstr "Identiti baharu dijanakan." msgid "New instruction:" msgstr "Arahan baharu:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -8032,7 +8220,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8046,7 +8234,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Gelaran:" @@ -8060,7 +8248,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "Tiada Penyesuai Dikesan" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8074,7 +8262,7 @@ msgstr "Tiada Output Audio" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Tiada Padanan" @@ -8082,16 +8270,16 @@ msgstr "Tiada Padanan" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Tiada keterangan tersedia" @@ -8107,15 +8295,15 @@ msgstr "Tiada sambungan dipilih" msgid "No file loaded / recorded." msgstr "Tiada fail dimuatkan / dirakam." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8124,7 +8312,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Tiada isu dikesan." @@ -8136,10 +8324,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8151,11 +8335,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8164,7 +8348,7 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Tiada undo.dtm ditemui, menghenti paksa buat asal keadaan muat untuk " @@ -8173,11 +8357,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Tiada" @@ -8237,7 +8421,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -8272,10 +8456,58 @@ msgstr "Bidak Nunchuk" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Julat Objek" @@ -8289,7 +8521,7 @@ msgstr "" msgid "Off" msgstr "Mati" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8301,14 +8533,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Dokumentasi Atas Talian" @@ -8316,13 +8563,13 @@ msgstr "&Dokumentasi Atas Talian" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8332,7 +8579,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Buka" @@ -8341,11 +8588,11 @@ msgstr "Buka" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8366,7 +8613,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8399,11 +8646,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Pilihan" @@ -8416,13 +8663,36 @@ msgstr "Oren" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Lain-lain" @@ -8435,7 +8705,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Kekunci Panas Keadaan Lain" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Lain-lain Pengurusan Keadaan" @@ -8455,16 +8725,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Ma&in Rakaman Input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8473,15 +8743,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8489,11 +8759,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "Fail imej PNG (*.png);; Semua Fail (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Saiz PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8506,11 +8776,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pad" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8561,11 +8831,15 @@ msgstr "" msgid "Paths" msgstr "Laluan" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Jeda" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Jeda Dipenghujung Cereka" @@ -8604,7 +8878,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Pencahayaan Per-Piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Lakukan Kemaskini Sistem Atas-Talian" @@ -8612,33 +8886,33 @@ msgstr "Lakukan Kemaskini Sistem Atas-Talian" msgid "Perform System Update" msgstr "Lakukan Kemaskini Sistem" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Ambil satu fon nyahpepijat" @@ -8654,12 +8928,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Main" @@ -8671,7 +8945,7 @@ msgstr "" msgid "Play Recording" msgstr "Main Rakaman" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8683,27 +8957,27 @@ msgstr "Pilihan Main Balik" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8712,7 +8986,8 @@ msgstr "" msgid "Players" msgstr "Pemain" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8724,23 +8999,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8749,7 +9028,7 @@ msgstr "" msgid "Port:" msgstr "Port:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8772,11 +9051,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Dapatkan Tekstur Suai" @@ -8784,11 +9063,11 @@ msgstr "Dapatkan Tekstur Suai" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8813,7 +9092,7 @@ msgstr "Tekan Butang Segerak" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8828,7 +9107,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8839,7 +9118,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8851,7 +9130,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8885,8 +9164,8 @@ msgstr "Kiraan Program" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8894,11 +9173,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8918,14 +9197,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Soalan" @@ -8946,19 +9225,19 @@ msgstr "R" msgid "R-Analog" msgstr "Analog-R" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "Modul RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8971,11 +9250,11 @@ msgstr "" msgid "Range" msgstr "Julat" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8987,7 +9266,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "&Ganti arahan" @@ -8999,14 +9282,14 @@ msgstr "Baca" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Baca dan tulis" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Baca sahaja" @@ -9027,10 +9310,15 @@ msgstr "Papan Imbang Sebenar" msgid "Real Wii Remote" msgstr "Wii Remote Sebenar" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9044,7 +9332,7 @@ msgstr "Rakam" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9079,7 +9367,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9087,14 +9375,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Segar Semula" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9102,11 +9390,11 @@ msgstr "" msgid "Refresh Game List" msgstr "Segar Semula Senarai Permainan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9115,8 +9403,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Wilayah" @@ -9145,7 +9433,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Buang" @@ -9162,7 +9450,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9173,8 +9461,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Nama semula simbol" @@ -9182,11 +9470,11 @@ msgstr "Nama semula simbol" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9202,23 +9490,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Tetap Semula" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9246,6 +9533,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Tetap semula semua perpasangan Wii Remote tersimpan" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9262,7 +9553,7 @@ msgstr "Mula Semula Diperlukan" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9279,7 +9570,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9338,7 +9629,7 @@ msgstr "" msgid "Room ID" msgstr "ID Bilik" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9356,26 +9647,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "&Jalankan Di Sini" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9391,19 +9708,19 @@ msgstr "Rusia" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Laluan Kad SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9411,7 +9728,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9424,7 +9741,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9432,11 +9749,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9446,11 +9763,11 @@ msgstr "" msgid "START" msgstr "MULA" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Keadaan S&impan" @@ -9463,7 +9780,6 @@ msgstr "Selamat" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9473,9 +9789,17 @@ msgstr "Simpan" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9484,24 +9808,24 @@ msgid "Save FIFO log" msgstr "Simpan log FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Simpan Fail ke" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9513,13 +9837,13 @@ msgstr "Simpan Keadaan Terlama" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Simpan Keadaan" @@ -9563,23 +9887,23 @@ msgstr "Simpan Slot Keadaan 8" msgid "Save State Slot 9" msgstr "Simpan Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Simpan Keadaan ke Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Simpan Keadaan ke Slot Terlama" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Simpan Keadaan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Simpan Keadaan ke Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Simpan Peta Simbol Sebag&ai..." @@ -9587,7 +9911,7 @@ msgstr "Simpan Peta Simbol Sebag&ai..." msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Simpan dan Muat Keadaan" @@ -9599,26 +9923,26 @@ msgstr "" msgid "Save as..." msgstr "Simpan sebagai..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Simpan fail peta" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Simpan fail tandatangan" @@ -9626,7 +9950,7 @@ msgstr "Simpan fail tandatangan" msgid "Save to Selected Slot" msgstr "Simpan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Simpan ke Slot %1 - %2" @@ -9640,7 +9964,7 @@ msgstr "" "Perpasangan Wii Remote tersimpan hanya boleh ditetapkan semula bila " "permainan Wii berjalan." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9652,26 +9976,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "salin EFB Terskala" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "CkpSkrin" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Gelintar" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Gelintar Alamat" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Gelintar Objek Semasa" @@ -9679,17 +10003,17 @@ msgstr "Gelintar Objek Semasa" msgid "Search Subfolders" msgstr "Gelintar Subfolder" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9697,11 +10021,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9721,7 +10045,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9729,28 +10053,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9770,15 +10102,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Pilih Slot %1 - %2" @@ -9786,7 +10118,7 @@ msgstr "Pilih Slot %1 - %2" msgid "Select State" msgstr "Pilih Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Pilih Slot Keadaan" @@ -9845,15 +10177,15 @@ msgstr "Pilih satu Direktori" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Pilih satu Fail" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9861,11 +10193,11 @@ msgstr "" msgid "Select a Game" msgstr "Pilih satu Permainan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9873,19 +10205,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Pilih satu tajuk untuk dipasang ke dalam NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9893,12 +10225,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Pilih fail kunci (longgok OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Pilih fail simpan" @@ -9914,7 +10246,7 @@ msgstr "" msgid "Selected Font" msgstr "Fon Terpilih" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Profil pengawal terpilih tidak wujud" @@ -9926,26 +10258,45 @@ msgstr "Profil pengawal terpilih tidak wujud" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9957,18 +10308,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9982,7 +10344,7 @@ msgstr "" msgid "Send" msgstr "Hantar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Kedudukan Palang Penderia:" @@ -10006,16 +10368,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "Pelayan menolak percubaan travesal" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Tetapkan PC" @@ -10031,23 +10389,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Tetapkan alamat &akhir simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Tetapkan &saiz simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Tetapkan alamat akhir simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Tetapkan saiz simbol (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10057,17 +10415,17 @@ msgstr "" "permainan PAL.\n" "Mungkin tidak berfungsi untk semua permainan." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Tetapkan bahasa sistem Wii." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10079,20 +10437,20 @@ msgstr "" msgid "Settings" msgstr "Tetapan" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Tidak dapat cipta fail setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Jabat" @@ -10109,16 +10467,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Tunjuk &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Tunjuk Palang Ala&t" @@ -10126,53 +10484,53 @@ msgstr "Tunjuk Palang Ala&t" msgid "Show Active Title in Window Title" msgstr "Tunjuk Tajuk Aktif dalam Tajuk Tetingkap" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Tunjuk Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Tunjuk ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Tunjuk FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Tunjuk Kiraan Bingkai" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Tunjuk Perancis" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Tunjuk GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Tunjuk Jerman" @@ -10184,23 +10542,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Tunjuk Paparan Input" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Tunjuk Itali" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Tunjuk Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Tunjuk Kiraan Lengah" @@ -10208,19 +10566,19 @@ msgstr "Tunjuk Kiraan Lengah" msgid "Show Language:" msgstr "Tunjuk Bahasa:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Tunjuk K&onfigurasi Log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Tunjuk Mesej NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Tunjuk Ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Tunjuk Belanda" @@ -10228,32 +10586,36 @@ msgstr "Tunjuk Belanda" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Tunjuk PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Tunjuk Platform" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Tunjuk Wilayah" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Tunjuk Rusia" @@ -10261,72 +10623,72 @@ msgstr "Tunjuk Rusia" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Tunjuk Sepanyol" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Tunjuk Statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Tunjuk Jam Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Tunjuk Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Tunjuk USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Tunjuk Tidak Diketahui" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Tunjuk WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Tunjuk Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Tunjuk Dunia" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10334,65 +10696,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10402,34 +10770,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Sebelah-Menyebelah" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Tahan Sisi" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Togol Sisi" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wii Remote Sisi" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Pangkalan Data Tandatangan" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10438,7 +10806,7 @@ msgid "Signed Integer" msgstr "Integer Bertanda" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Cina Ringkas" @@ -10455,7 +10823,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." @@ -10463,11 +10831,11 @@ msgstr "" "Saiz regang penimbal dalam milisaat. Nilai terlalu rendah boleh menyebabkan " "keretakan audio." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Langkau" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10502,24 +10870,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10527,10 +10895,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10540,7 +10904,7 @@ msgstr "Palang Pelungsur" msgid "Slot A" msgstr "SLot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Slot A:" @@ -10548,7 +10912,7 @@ msgstr "Slot A:" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Slot B:" @@ -10556,7 +10920,7 @@ msgstr "Slot B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10580,12 +10944,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10599,27 +10963,27 @@ msgstr "Sepanyol" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Sepanyol" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Lata Pembesar Suara" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volum Pembesar Suara:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10640,15 +11004,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10661,25 +11025,28 @@ msgstr "Pengawal Piawai" msgid "Start" msgstr "Mula" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Mula &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Mula Me&rakam Input" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Mula Rakaman" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10695,10 +11062,10 @@ msgstr "" msgid "Started game" msgstr "Permainan bermula" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10708,7 +11075,7 @@ msgstr "Roda Pacu" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Langkah" @@ -10720,13 +11087,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Langkah Melalui" @@ -10742,7 +11109,7 @@ msgstr "Langkah keluar tamat masa!" msgid "Step over in progress..." msgstr "Langkah atas masih berjalan..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Langkah berjaya!" @@ -10751,7 +11118,7 @@ msgstr "Langkah berjaya!" msgid "Stepping" msgstr "Melangkah" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10781,18 +11148,14 @@ msgstr "Bidak" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Henti Memainkan/Merakam Input" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Permainan berhenti" @@ -10825,7 +11188,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Regang ke Tetingkap" @@ -10860,8 +11223,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Berjaya" @@ -10888,7 +11251,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Berjaya mengimport fail simpan" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Berjaya mengekstrak sijil dari NAND" @@ -10900,12 +11263,12 @@ msgstr "Berjaya mengekstrak fail." msgid "Successfully extracted system data." msgstr "Berjaya mengekstrak data sistem." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Berjaya memasang tajuk ini ke NAND." @@ -10916,11 +11279,11 @@ msgstr "Berjaya membuang tajuk ini dari NAND." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Sokongan" @@ -10928,16 +11291,16 @@ msgstr "Sokongan" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10947,12 +11310,12 @@ msgstr "Silih Mata" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10963,7 +11326,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Ayun" @@ -10977,34 +11340,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Nama simbol:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Simbol" @@ -11030,7 +11380,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11049,24 +11399,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Bahasa Sistem:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Alatan TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11076,7 +11426,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11084,15 +11434,15 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Ambil Cekupan Skrin" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11100,7 +11450,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11108,6 +11458,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11117,7 +11473,7 @@ msgstr "Tekstur Cache" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11129,7 +11485,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Tindihan Format Tekstur" @@ -11152,7 +11508,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11166,7 +11522,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11174,7 +11530,7 @@ msgstr "" "NAND tidak dapat dibaiki. Adalah disarankan menyandar data semasa anda dan " "mula kembali dengan NAND yang baharu." -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND telah dibaiki." @@ -11185,11 +11541,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11222,6 +11578,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11239,7 +11602,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Cakera yang hendak dimasukkan tidak ditemui." @@ -11259,17 +11622,17 @@ msgstr "Konsol Wii teremulasi telah dikemaskinikan." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "PID yang dimasukkan tidak sah." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "VID yang dimasukkan tidak sah." @@ -11277,7 +11640,7 @@ msgstr "VID yang dimasukkan tidak sah." msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11291,7 +11654,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11307,7 +11670,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11318,7 +11681,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11379,9 +11742,9 @@ msgstr "Cincangan tidak sepadan!" msgid "The hashes match!" msgstr "Cincangan sepadan!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11395,11 +11758,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11413,8 +11776,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11441,12 +11804,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Kod AR dinyahsulit yang terhasil tidak mengandungi sebarang baris." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11480,7 +11843,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11495,11 +11858,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11507,15 +11870,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11540,7 +11903,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11566,14 +11929,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Tiada apa hendak dibuat asal!" @@ -11613,19 +11981,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Peranti USB sudah berada dalam senarai putih." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "WAD ini tidak boleh dibutkan." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "WAD ini tidak sah." @@ -11745,6 +12113,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11757,13 +12129,13 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Perisian ini tidak seharusnya digunakan untuk main permainan bukan milik " "anda secara sah." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Tajuk ini tidak boleh dibutkan." @@ -11776,7 +12148,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11784,7 +12156,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11806,6 +12178,13 @@ msgid "" msgstr "" "Nilai ini digandakan dengan kedalaman ditetapkan dalam konfigurasi grafik." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11820,11 +12199,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11832,12 +12211,12 @@ msgstr "" msgid "Threshold" msgstr "Ambang" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Condong" @@ -11851,10 +12230,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Tajuk" @@ -11868,7 +12247,7 @@ msgstr "Ke" msgid "To:" msgstr "Ke:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Togol &Skrin Penuh" @@ -11893,7 +12272,7 @@ msgid "Toggle Aspect Ratio" msgstr "Togol Nisbah Bidang" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Togol Titik Henti" @@ -11945,15 +12324,19 @@ msgstr "Togol Salinan XFB" msgid "Toggle XFB Immediate Mode" msgstr "Togol Mod Serta-Merta XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Atas" @@ -11961,9 +12344,8 @@ msgstr "Atas" msgid "Top-and-Bottom" msgstr "Atas-dan-Bawah" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -12000,28 +12382,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Cina Tradisional" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12058,26 +12440,26 @@ msgid "Triggers" msgstr "Pemicu" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Jenis" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -12089,7 +12471,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12101,20 +12483,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12122,7 +12504,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12131,7 +12513,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12143,11 +12525,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12171,7 +12553,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12194,15 +12576,15 @@ msgstr "Imej GC/Wii Tak Mampat (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Buat Asal Muat Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Buat Asal Keadaan Simpan" @@ -12222,11 +12604,11 @@ msgstr "" "Menyahpasang WAD akan membuang versi terpasang semasa bagi tajuk ini dari " "NAND tanpa memadam data simpannya. Mahu teruskan?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Amerika Syarikat" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12237,12 +12619,13 @@ msgstr "Amerika Syarikat" msgid "Unknown" msgstr "Tidak diketahui" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12266,11 +12649,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12278,7 +12661,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12286,7 +12669,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12306,16 +12689,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Tanpa had" @@ -12348,22 +12733,22 @@ msgid "Unpacking" msgstr "Nyahpek" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12427,23 +12812,23 @@ msgstr "" "Mengemaskini tajuk %1...\n" "Ia mengambil sedikit masa." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Tahan Tegak" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Togol Tegak" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wii Remote Tegak" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Tetapan Pelaporan Statistik Penggunaan" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12455,15 +12840,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Guna Pangkalan Data Terbina-Dalam Nama Permainan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Guna Mod PAL60 (EuRGB60)" @@ -12471,7 +12856,7 @@ msgstr "Guna Mod PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Guna Pengendali Panik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12491,43 +12876,18 @@ msgstr "" "Guna penimbal kedalaman tunggal untuk kedua-dua belah mata. Diperlukan untuk " "beberapa jenis permainan." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12559,21 +12919,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12581,31 +12941,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utiliti" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Segerak-V" @@ -12613,11 +12973,11 @@ msgstr "Segerak-V" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Nilai" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12625,17 +12985,17 @@ msgstr "" msgid "Value:" msgstr "Nilai:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12651,16 +13011,16 @@ msgstr "Kejelaan" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12674,7 +13034,7 @@ msgid "Vertex Rounding" msgstr "Pembundaran Puncak" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12688,12 +13048,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Lihat &kod" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Lihat &ingatan" @@ -12701,14 +13061,14 @@ msgstr "Lihat &ingatan" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" @@ -12728,31 +13088,31 @@ msgstr "Volum Naik" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "Fail WAD (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "Pemasangan WAD gagal: Tidak dapat muktamadkan pengimportan tajuk." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "Pemasangan WAD gagal: Fail dipilih bukanlah WAD yang sah." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12791,12 +13151,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12807,7 +13167,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12829,7 +13189,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Amaran" @@ -12901,7 +13261,7 @@ msgstr "Pantau" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12918,7 +13278,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12926,7 +13286,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12934,7 +13294,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Peranti Menerusi USB Senarai Putih" @@ -12958,7 +13318,7 @@ msgstr "Menu Wii" msgid "Wii NAND Root:" msgstr "Root NAND Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -12966,7 +13326,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12984,7 +13344,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Tetapan Kawalan Jauh Wii" @@ -13004,7 +13364,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii dan Wii Remote" @@ -13012,11 +13372,11 @@ msgstr "Wii dan Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fail simpan Wii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -13026,11 +13386,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Lilit Kata" @@ -13044,10 +13416,14 @@ msgstr "Dunia" msgid "Write" msgstr "Tulis" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Tulis sahaja" @@ -13089,6 +13465,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13097,11 +13481,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Daftar XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13136,14 +13520,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13244,7 +13628,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13262,15 +13646,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Kod Zero 3 tidak disokong" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13278,11 +13666,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13301,21 +13689,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13323,31 +13711,35 @@ msgstr "" msgid "fake-completion" msgstr "pelengkapan-palsu" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13357,7 +13749,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13367,13 +13759,13 @@ msgstr "" msgid "none" msgstr "tiada" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "hidup" @@ -13390,16 +13782,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13414,11 +13810,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13453,7 +13849,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13465,8 +13861,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/nb.po b/Languages/po/nb.po index 4fe1a24a90f1..73bb86d0da31 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" @@ -73,8 +73,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -95,19 +95,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -128,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -170,6 +171,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 støtter ikke denne funksjonen på ditt system." @@ -196,13 +202,13 @@ msgstr "%1 ble med" msgid "%1 has left" msgstr "%1 har forlatt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -218,12 +224,12 @@ msgstr "%1 golfer nå" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +246,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 "" @@ -248,26 +254,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -305,20 +311,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -328,23 +334,23 @@ msgstr "" msgid "& And" msgstr "& Og" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Om" @@ -352,12 +358,12 @@ msgstr "&Om" msgid "&Add Memory Breakpoint" msgstr "&Legg til minnestoppunkt" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Legg til ny kode…" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Legg til funksjon" @@ -365,27 +371,27 @@ msgstr "&Legg til funksjon" msgid "&Add..." msgstr "&Legg til..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Lyd-innstillinger" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Autooppdater:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Brytepunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Feilsporer" @@ -393,15 +399,15 @@ msgstr "&Feilsporer" msgid "&Cancel" msgstr "&Avbryt" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Se etter oppdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Tøm symboler" @@ -409,19 +415,24 @@ msgstr "&Tøm symboler" msgid "&Clone..." msgstr "&Dupliser..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Kode" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Kontroller-innstillinger" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Kopier adresse" @@ -429,7 +440,7 @@ msgstr "&Kopier adresse" msgid "&Create..." msgstr "&Opprett …" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Slett" @@ -446,9 +457,9 @@ msgstr "&Slett Overvåker" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Rediger kode…" @@ -456,23 +467,23 @@ msgstr "&Rediger kode…" msgid "&Edit..." msgstr "&Rediger..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Løs ut disk" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulering" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -480,55 +491,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Skrift…" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Bilde for bilde" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "%Generer symboler fra" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub-pakkebrønn" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafikkinnstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Hjelp" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Innstillinger for &hurtigtaster" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -536,19 +545,19 @@ msgstr "" msgid "&Import..." msgstr "&Importer..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Sett inn blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -556,15 +565,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "Åpne hurtiglagring" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Last symbolkart" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -574,23 +587,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Lås fast moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Film" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Nettverk" @@ -599,23 +612,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Åpne…" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Innstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Patch HLE-funksjoner" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Spill" @@ -623,15 +636,15 @@ msgstr "&Spill" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Skrivebeskyttet modus" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registere" @@ -639,41 +652,45 @@ msgstr "&Registere" msgid "&Remove" msgstr "&Fjern" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Fjern kode" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Gi symbol nytt navn" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Tilbakestill" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Ressurspakke-behandler" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Lagre symbolkart" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Fartsgrense:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "S&topp" @@ -681,15 +698,19 @@ msgstr "S&topp" msgid "&Theme:" msgstr "&Drakt:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Tråder" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Verktøy" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -699,17 +720,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Se" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Nettside" @@ -721,11 +742,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' ikke funnet, ingen symbolnavn generert" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' ikke funnet, scanner for vanlige funksjoner istedet" @@ -741,7 +762,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(vert)" @@ -749,7 +770,7 @@ msgstr "(vert)" msgid "(off)" msgstr "(av)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -769,15 +790,15 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Trekk fra" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "→ %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -788,12 +809,12 @@ msgstr "…" msgid "/ Divide" msgstr "/ Del" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -805,7 +826,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blokker)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -813,11 +834,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -829,17 +850,17 @@ msgstr "16 Mbit (251 blokker)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -851,11 +872,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -867,7 +888,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -879,25 +900,25 @@ msgstr "32 Mbit (507 blokker)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -911,11 +932,11 @@ msgstr "3D-dybde" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -923,7 +944,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokker)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -939,7 +960,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -951,22 +972,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blokker)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -974,11 +995,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -990,13 +1011,13 @@ msgstr "8 Mbit (123 blokker)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -1012,7 +1033,7 @@ msgstr "" msgid "< Less-than" msgstr "< Mindre enn" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1024,11 +1045,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1061,12 +1082,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Større enn" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "En NetPlay-økt finnes allerede!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1076,7 +1097,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "En plate er i ferd med å bli satt inn." @@ -1086,11 +1107,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1108,6 +1129,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1140,7 +1165,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:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kode" @@ -1149,8 +1174,8 @@ msgstr "AR-kode" msgid "AR Codes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1164,7 +1189,7 @@ msgid "About Dolphin" msgstr "Om Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Akselerometer" @@ -1183,7 +1208,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1269,19 +1294,19 @@ msgstr "Aktiver NetPlay-chat" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Aktive tråder" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1289,7 +1314,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter oppdaget" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1299,7 +1324,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Legg til" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1328,51 +1353,48 @@ msgstr "Legg til et MinneStoppunkt" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Legg til i &overvåkingslisten" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Legg til…" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adresse" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Adresserom" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1442,12 +1464,12 @@ msgid "Advance Game Port" msgstr "Advance-spillport" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avansert" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1462,15 +1484,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1480,16 +1502,16 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1503,11 +1525,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1515,7 +1537,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Alle filer (*)" @@ -1524,7 +1546,7 @@ msgstr "Alle filer (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1533,8 +1555,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle lagringsstadier (*.sav *.s##);; Alle filer (*)" @@ -1546,7 +1568,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1558,15 +1580,15 @@ msgstr "Alle spilleres koder er synkronisert." msgid "All players' saves synchronized." msgstr "Alle spilleres lagringsfiler er synkronisert." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Tillat rapportering av brukerstatistikk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Tillat lagringer til SD-kort" @@ -1594,7 +1616,7 @@ msgstr "" msgid "Always Connected" msgstr "Alltid tilkoblet" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1632,15 +1654,15 @@ msgstr "Kantutjevning:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Legg signatur til" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Føy på til &eksisterende signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Legg p&å Singaturfil..." @@ -1658,7 +1680,7 @@ msgstr "Programinnlaster-dato:" msgid "Apply" msgstr "Bruk" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Bruk signaturfil" @@ -1690,12 +1712,16 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Billedforhold:" @@ -1703,7 +1729,7 @@ msgstr "Billedforhold:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1711,7 +1737,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1728,7 +1754,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Tilknytt MotionPlus" @@ -1736,11 +1762,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" @@ -1752,12 +1778,12 @@ msgstr "Australien" msgid "Author" msgstr "Forfatter" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Forfattere" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1765,11 +1791,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplum av 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Auto-oppdater innstillinger" @@ -1785,7 +1807,7 @@ msgstr "" "\n" "Vennligst velg en spesifikk intern oppløsning." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Automatisk justering av vindusstørrelse" @@ -1793,32 +1815,32 @@ msgstr "Automatisk justering av vindusstørrelse" msgid "Auto-Hide" msgstr "Gjem automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Vil du auto-oppdage RSO-moduler?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Støtte" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1826,38 +1848,42 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT-filen er ugyldig. Dolphin vil nå avslutte" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP-register " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motor:" @@ -1873,13 +1899,13 @@ msgstr "Bakgrunnsinndata" msgid "Backward" msgstr "Bakover" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Dårlig adresse oppgitt." @@ -1887,20 +1913,20 @@ msgstr "Dårlig adresse oppgitt." msgid "Bad dump" msgstr "Dårlig dump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Dårlig verdi angitt." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1920,15 +1946,15 @@ msgstr "Bjelke" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Grunnprioritet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Grunnleggende" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Grunnleggende innstillinger" @@ -1936,15 +1962,15 @@ msgstr "Grunnleggende innstillinger" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batteri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (en gang i måneden)" @@ -1968,31 +1994,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitfrekvens (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Blokkstørrelse" @@ -2001,7 +2029,7 @@ msgstr "Blokkstørrelse" msgid "Block Size:" msgstr "Blokkstørrelse:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blokkering" @@ -2030,32 +2058,143 @@ msgstr "" "Blåtann gjennomstrømningsmodus er aktivert, men Dolphin ble bygd uten " "Libusdb. Gjennomstrømmingsmodus kan ikke benyttes." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Start opp i pausemodus" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND sikkerhetskopifil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii nøkkelfil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Rammefri fullskjermsvisning" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Nede" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Gren: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Grener" @@ -2093,11 +2232,11 @@ msgstr "Bredbåndsadapter (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2107,11 +2246,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2143,7 +2282,7 @@ msgstr "Knapp" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2159,7 +2298,7 @@ msgstr "Knapp" msgid "Buttons" msgstr "Knapper" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2169,11 +2308,11 @@ msgstr "" msgid "C Stick" msgstr "C-joystick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "Lag Signatu&rfil..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP-register " @@ -2185,7 +2324,7 @@ msgstr "CPU-emuleringsmotor:" msgid "CPU Options" msgstr "CPU-alternativer" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2193,14 +2332,14 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Hurtiglagret fortolker (tregere)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Kalkuler" @@ -2212,11 +2351,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibrer" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Kalibrering" @@ -2224,19 +2363,19 @@ msgstr "Kalibrering" msgid "Calibration Period" msgstr "Kalibreringsperiode" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Kallstakk" @@ -2245,65 +2384,77 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Avbryt kalibrering" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "Kan ikke SingleSteppe FIFO-en. Bruk BildeStep i stedet." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Kan ikke starte denne WAD-filen, fordi den ikke kan installeres til NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Finner ikke GC IPL." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2311,19 +2462,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Kan ikke starte spillet, fordi GC IPL ikke ble funnet." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2341,7 +2494,7 @@ msgstr "I midten" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Sentrer og kalibrer" @@ -2349,7 +2502,7 @@ msgstr "Sentrer og kalibrer" msgid "Change &Disc" msgstr "Endre &disk" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Endre &disk…" @@ -2357,7 +2510,7 @@ msgstr "Endre &disk…" msgid "Change Disc" msgstr "Endre disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Endre disk automatisk" @@ -2365,7 +2518,7 @@ msgstr "Endre disk automatisk" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2392,7 +2545,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2404,15 +2557,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Juksekode-redigeringsverktøy" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Juksekodesøk" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Sjekk NAND..." @@ -2420,7 +2573,7 @@ msgstr "Sjekk NAND..." msgid "Check for Game List Changes in the Background" msgstr "Sjekk for endringer i spillisten i bakgrunnen" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Se etter oppdateringer" @@ -2440,27 +2593,27 @@ msgstr "Sjekksum" msgid "China" msgstr "Kina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Velg en fil å åpne" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Velg prioritetsinputfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Velg andre input fil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2487,15 +2640,19 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Nullstill" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Tøm mellomlager" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2503,7 +2660,7 @@ msgstr "" msgid "Clock Override" msgstr "Klokkeoverstyring" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Klon og &rediger kode..." @@ -2512,36 +2669,20 @@ msgstr "Klon og &rediger kode..." msgid "Close" msgstr "Lukk" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "&Oppsett" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Kode" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2568,7 +2709,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Kombiner &to signaturfiler..." @@ -2595,7 +2740,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Kompiler shadere før start" @@ -2603,9 +2748,9 @@ msgstr "Kompiler shadere før start" msgid "Compiling Shaders" msgstr "Komplierer skygger" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Kompresjon" @@ -2618,10 +2763,16 @@ msgstr "Kompresjonsnivå:" msgid "Compression:" msgstr "Komprimering:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2694,7 +2845,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Oppsett" @@ -2727,13 +2878,13 @@ msgstr "Sett opp utdata" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekreft" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Bekreft endring av backend" @@ -2741,7 +2892,7 @@ msgstr "Bekreft endring av backend" msgid "Confirm on Stop" msgstr "Bekreft ved stans" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2752,15 +2903,15 @@ msgstr "Bekreftelse" msgid "Connect" msgstr "Koble til" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Koble til balansebrett" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Koble til USB-tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Koble til Wii Remote %1" @@ -2780,7 +2931,7 @@ msgstr "Koble til Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Koble til Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Koble til Wii Remote-er" @@ -2821,7 +2972,7 @@ msgstr "Kontroller NetPlay-golfmodus" msgid "Control Stick" msgstr "Sirkel-joystick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Kontrollerprofil" @@ -2845,7 +2996,7 @@ msgstr "Kontrollerprofil 4" msgid "Controller Settings" msgstr "Kontroller-innstillinger" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Kontrollere" @@ -2914,8 +3065,8 @@ msgstr "" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2923,9 +3074,9 @@ msgstr "" msgid "Convert" msgstr "Konverter" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2933,9 +3084,9 @@ msgstr "" msgid "Convert File..." msgstr "Konverter fil …" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2955,8 +3106,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konverterer…" @@ -2992,15 +3143,15 @@ msgstr "" msgid "Copy" msgstr "Kopier" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopier &funksjon" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Kopier &heksadesimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Kopier adresse" @@ -3008,19 +3159,19 @@ msgstr "Kopier adresse" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Kopier heksadesimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Kopier kode&linje" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -3038,6 +3189,11 @@ msgstr "Kopier til B" msgid "Core" msgstr "Kjerne" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3047,7 +3203,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Kostnad" @@ -3128,7 +3284,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3165,13 +3321,13 @@ msgstr "Kunne ikke lese fil." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3180,15 +3336,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "Opprett et nytt minnekort" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3197,17 +3349,8 @@ msgstr "" msgid "Create..." msgstr "Opprett …" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Skaper:" @@ -3215,11 +3358,11 @@ msgstr "Skaper:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Beskjær" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3231,26 +3374,26 @@ msgstr "" msgid "Crossfade" msgstr "Kryssutfasing" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Nåværende region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Nåværende sammenheng" @@ -3258,27 +3401,31 @@ msgstr "Nåværende sammenheng" msgid "Current game" msgstr "Nåværende spill" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Nåværende tråd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3290,13 +3437,13 @@ msgstr "Egendefinerte RTC-valg" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3321,7 +3468,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" @@ -3329,15 +3476,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 "" @@ -3359,7 +3506,7 @@ msgstr "Dansematte" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3375,7 +3522,7 @@ msgstr "" msgid "Data Transfer" msgstr "Dataoverføring" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Datatype" @@ -3408,8 +3555,8 @@ msgstr "Dødsone" msgid "Debug" msgstr "Feilsøk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Feilretting" @@ -3418,7 +3565,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:" @@ -3465,7 +3612,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" @@ -3477,11 +3624,11 @@ msgstr "Forvalgt skrift" msgid "Default ISO:" msgstr "Forvalgt ISO-fil:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Standardtråd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Utsett EFB cahce-invalidering" @@ -3489,7 +3636,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:384 +#: 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 " @@ -3529,26 +3676,53 @@ msgstr "Dybdeprosent:" msgid "Depth:" msgstr "Dybde:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Beskrivelse:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Frakoblet" @@ -3556,7 +3730,7 @@ msgstr "Frakoblet" msgid "Detect" msgstr "Finn automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3564,7 +3738,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministisk dobbelkjerne:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Utviklingsutgave (flere ganger daglig)" @@ -3573,7 +3747,7 @@ msgid "Device" msgstr "Enhet" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Enhets-PID (f.eks. 0305)" @@ -3582,11 +3756,11 @@ msgid "Device Settings" msgstr "Enhetsinnstillinger" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3594,11 +3768,7 @@ msgstr "Enhet:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Demp skjermbelysning etter fem minutters inaktivitet." @@ -3610,12 +3780,12 @@ msgstr "Direkte tilkobling" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3627,7 +3797,7 @@ msgstr "Skru av bounding-box-kalkulasjoner" msgid "Disable Copy Filter" msgstr "Slå av Kopieringsfilter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Slå av EFB VRAM Kopier" @@ -3635,11 +3805,11 @@ msgstr "Slå av EFB VRAM Kopier" msgid "Disable Emulation Speed Limit" msgstr "Skru av hastighetsbegrensning av emulering" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3647,11 +3817,11 @@ msgstr "" msgid "Disable Fog" msgstr "Skru av tåke" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Deaktiver JIT-lager" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3666,7 +3836,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4016,15 +4182,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nederlandsk" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Avslutt" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4050,7 +4216,7 @@ msgstr "Tidlige minneoppdateringer" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4063,7 +4229,7 @@ msgstr "Øst-Asia" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4079,15 +4245,15 @@ msgstr "Effekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effektiv" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4097,7 +4263,7 @@ msgstr "Løs ut disk" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4105,11 +4271,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Eksternt bildemellomlager (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emulator-CPU-tråden kjører allerede" @@ -4117,11 +4283,11 @@ msgstr "Emulator-CPU-tråden kjører allerede" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4135,7 +4301,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4155,28 +4321,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Emuleringshastighet" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Slå på API-valideringslag" @@ -4188,11 +4342,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Tillat lydstrekking" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Aktiver juksekoder" @@ -4212,7 +4366,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Aktiver bruk av dobbelkjerne" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Aktiver bruk av dobbelkjerne (for bedre ytelse)" @@ -4232,7 +4386,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Aktiver FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4258,6 +4412,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4271,7 +4429,7 @@ msgstr "Aktiver MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Aktiver progressiv skanning" @@ -4284,11 +4442,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Aktiver vibrering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Aktiver skjermbeskytter" @@ -4300,15 +4458,15 @@ msgstr "Tillat høyttalerdata" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Skru på bruks- og statistikkrapportering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Aktiver wireframe" @@ -4378,7 +4536,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4413,7 +4571,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4421,7 +4579,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4438,7 +4596,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." @@ -4466,7 +4624,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4474,7 +4632,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4482,7 +4640,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4507,7 +4665,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engelsk" @@ -4516,7 +4674,7 @@ msgstr "Engelsk" msgid "Enhancements" msgstr "Forbedringer" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4538,11 +4696,17 @@ msgstr "Skriv inn en ny Bredbåndsadapter MAC-adresse:" msgid "Enter password" msgstr "Oppgi passord" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Skriv inn RSO-moduladresse:" @@ -4551,8 +4715,8 @@ msgstr "Skriv inn RSO-moduladresse:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4563,45 +4727,51 @@ msgstr "Skriv inn RSO-moduladresse:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4611,16 +4781,16 @@ msgstr "Skriv inn RSO-moduladresse:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Feil" @@ -4637,9 +4807,9 @@ msgstr "Feil under åpning av adapter: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4652,7 +4822,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Feil ved henting av sesjonsliste: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4718,7 +4888,7 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4726,7 +4896,7 @@ msgstr "" "Feil: Prøver å åpne Shift JIS-skrifttyper, men de lastes ikke. Det kan hende " "spill ikke åpner skrifter rett, eller krasjer." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4747,40 +4917,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4788,7 +4930,7 @@ msgstr "" msgid "Exit" msgstr "Avslutt" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4796,7 +4938,7 @@ msgstr "" msgid "Expected arguments: " msgstr "Forventet argumenter: " -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Forventet parentes-lukking." @@ -4808,15 +4950,15 @@ msgstr "Forventet et komma." msgid "Expected end of expression." msgstr "Forventet en RegEx-innkapsling." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Forventet navnet på inndataen." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Forventet parentes-begynnelse" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Forventet starten på RegEx-innkapsling." @@ -4824,11 +4966,11 @@ msgstr "Forventet starten på RegEx-innkapsling." msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Eksperimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-lagringsfiler" @@ -4843,7 +4985,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksporter opptak" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Eksporter opptak…" @@ -4871,14 +5013,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Eksporterte %n lagringsfil(er)." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Utvidelse" @@ -4899,7 +5041,7 @@ msgstr "Ekstern" msgid "External Frame Buffer (XFB)" msgstr "Eksternt bildebuffer (EFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Pakk ut sertifikater fra NAND" @@ -4932,12 +5074,12 @@ msgid "Extracting Directory..." msgstr "Pakker ut mappe..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO-spiller" @@ -4957,7 +5099,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Kunne ikke legge til på signaturfil '%1'" @@ -4965,12 +5107,12 @@ msgstr "Kunne ikke legge til på signaturfil '%1'" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4998,19 +5140,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "Kunne ikke lage DXGI factory" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -5030,15 +5173,15 @@ msgstr "Klarte ikke å slette valgt fil." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Nedlasting av koder mislyktes." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Kunne ikke dumpe %1: Kan ikke åpne fil" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Kunne ikke dumpe %1: Kan ikke skrive til fil" @@ -5051,7 +5194,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Kunne ikke eksportere følgende lagringsfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Klarte ikke å pakke ut sertifikater fra NAND" @@ -5074,33 +5217,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Kunne ikke finne en eller flere D3D-symboler" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Kunne ikke importere \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Klarte ikke å igangsette kjerne" @@ -5111,7 +5250,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5120,11 +5259,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Klarte ikke å installere denne tittelen til NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5132,8 +5271,8 @@ msgstr "" "Klarte ikke å lytte til port %1. Kjøres det en annen instans av NetPlay-" "tjeneren?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Kunne ikke laste RSO-modul ved %1" @@ -5145,19 +5284,21 @@ msgstr "Kunne ikke laste d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Kunne ikke laste dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Kunne ikke laste map-fil '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Klarte ikke å laste kjørbar fil til minne." @@ -5167,13 +5308,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Klarte ikke å åpne \"%1\"" @@ -5181,6 +5330,10 @@ msgstr "Klarte ikke å åpne \"%1\"" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Kunne ikke åpne konfigurasjonsfil!" @@ -5209,28 +5362,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Klarte ikke å åpne tjener" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5250,7 +5407,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5272,31 +5429,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5333,31 +5493,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Lagring av FIFO-logg mislyktes." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Kunne ikke lagre kodemapping til sti '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Kunne ikke lagre signaturfil '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Kunne ikke lagre symbolkart til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5408,7 +5568,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Feil" @@ -5416,11 +5576,11 @@ msgstr "Feil" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5433,7 +5593,7 @@ msgstr "Rask" msgid "Fast Depth Calculation" msgstr "Rask dybdekalkulering" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5444,11 +5604,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5456,9 +5616,9 @@ msgstr "" msgid "File Details" msgstr "Fildetaljer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Filformat" @@ -5470,20 +5630,20 @@ msgstr "Filformat:" msgid "File Info" msgstr "Fil-informasjon" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Filnavn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Filbane" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Filstørrelse" @@ -5491,7 +5651,7 @@ msgstr "Filstørrelse" msgid "File Size:" msgstr "Filstørrelse:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Filen inneholdt ingen koder." @@ -5526,15 +5686,15 @@ msgstr "Filsystem" msgid "Filters" msgstr "Filtre" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Finn &neste" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Finn &forrige" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Fullfør kalibrering" @@ -5548,7 +5708,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5564,31 +5724,32 @@ msgstr "Fiks sjekksummer" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flagg" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Flyttall" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Følg &avgrening" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "For best resultater, vennligst flytt inn-dataen sakte til alle mulige " @@ -5600,13 +5761,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5614,7 +5775,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" @@ -5646,11 +5807,11 @@ msgstr "Tving lytteport:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5687,17 +5848,17 @@ msgstr "Fremover" msgid "Forward port (UPnP)" msgstr "Videresendingsport (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Fant %1 resultater for \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Bilde %1" @@ -5718,7 +5879,7 @@ msgstr "Øk hastighet for bildeforskuddsvisning" msgid "Frame Advance Reset Speed" msgstr "Tilbakestill bilde-for-bilde-hastighet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5726,7 +5887,7 @@ msgstr "" msgid "Frame Range" msgstr "Bildespennvidde" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5750,7 +5911,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5781,7 +5942,7 @@ msgstr "Frisikts-veksling" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Fransk" @@ -5805,7 +5966,7 @@ msgstr "Fra" msgid "From:" msgstr "Fra:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Fullskjerm" @@ -5837,7 +5998,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5953,26 +6114,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Spill" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-disker (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6000,8 +6161,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Spill-ID" @@ -6061,11 +6222,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube-kontroller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "GameCube-kontroller i port %1" @@ -6073,11 +6234,11 @@ msgstr "GameCube-kontroller i port %1" msgid "GameCube Controllers" msgstr "GameCube-kontrollere" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube-tastatur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-tastatur i port %1" @@ -6090,11 +6251,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube-minnekort (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube-mikrofoninngang i inngang %1" @@ -6122,7 +6283,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-juksekoder" @@ -6132,35 +6293,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Generelt" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Generelt og innstillinger" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Generer Action Replay-kode" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Opprett en ny statistikk-identitet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tysk" @@ -6172,18 +6333,18 @@ msgstr "Tyskland" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6196,8 +6357,8 @@ msgid "Good dump" msgstr "God dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafikk" @@ -6236,7 +6397,7 @@ msgstr "Grønn venstre" msgid "Green Right" msgstr "Grønn høyre" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Rutenettvisning" @@ -6245,7 +6406,7 @@ msgstr "Rutenettvisning" msgid "Guitar" msgstr "Gitar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Gyroskop" @@ -6273,36 +6434,35 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Head" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6315,7 +6475,11 @@ msgstr "Heksadesimal" msgid "Hide" msgstr "Gjem" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6331,12 +6495,12 @@ msgstr "Gjem ikke-kompatible sesjoner" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6345,14 +6509,8 @@ msgstr "Høyest" msgid "Hit Strength" msgstr "Treffsyrke" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6369,7 +6527,7 @@ msgstr "Vertskode:" msgid "Host Input Authority" msgstr "Host Input-autoritet" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Vertstørrelse" @@ -6393,16 +6551,16 @@ msgstr "Vertsinndataautoritet aktivert" msgid "Host with NetPlay" msgstr "Vær vertskap med NetPlay" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Tastesnarveis-innstillinger" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Hurtigtaster" @@ -6411,7 +6569,7 @@ msgstr "Hurtigtaster" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6425,16 +6583,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6469,7 +6627,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR-sensitivitet:" @@ -6502,11 +6660,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Identitetsgenerering" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6561,11 +6719,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorer" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorer formatendringer" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Ignorer for denne sesjonen" @@ -6589,7 +6751,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Øyeblikkelig tilgjengelig XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6598,7 +6760,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Importer BootMii NAND sikkerhetskopi..." @@ -6613,15 +6775,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importer Wii-lagringsfil …" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importing NAND sikkerhetskopi" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6634,15 +6796,6 @@ msgstr "" msgid "In-Game?" msgstr "I spillet?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6651,27 +6804,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6716,15 +6869,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6744,8 +6898,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informasjon" @@ -6759,10 +6913,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Inngang" @@ -6776,20 +6930,26 @@ msgstr "Inndata styrke kreves for aktivering." msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Sett inn &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sett inn SD-kort" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6803,7 +6963,7 @@ msgstr "" msgid "Install Update" msgstr "Installer oppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Installer WAD…" @@ -6811,11 +6971,13 @@ msgstr "Installer WAD…" msgid "Install to the NAND" msgstr "Installer til NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruksjon" @@ -6824,7 +6986,7 @@ msgstr "Instruksjon" msgid "Instruction Breakpoint" msgstr "Instruksjonsstoppunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instruksjon:" @@ -6833,7 +6995,7 @@ msgstr "Instruksjon:" msgid "Instruction: %1" msgstr "Instruksjon: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6850,19 +7012,19 @@ msgstr "Intensitet" msgid "Interface" msgstr "Grensesnitt" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6875,19 +7037,19 @@ msgstr "Intern LZO-feil - komprimering mislyktes" msgid "Internal LZO Error - decompression failed" msgstr "Intern LZO-feil - dekomprimering mislyktes" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6902,7 +7064,7 @@ msgstr "Intern oppløsning" msgid "Internal Resolution:" msgstr "Intern bildeoppløsning:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6910,11 +7072,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Fortolker (tregest)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Fortolkerkjerne" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6926,7 +7088,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ugyldig mikset kode" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Ugyldig Pakke %1 oppgitt: %2" @@ -6935,11 +7097,11 @@ msgstr "Ugyldig Pakke %1 oppgitt: %2" msgid "Invalid Player ID" msgstr "Ugyldig spiller-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Ugyldig RSO-moduladresse: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Ugyldig kallstakk" @@ -6968,7 +7130,7 @@ msgstr "Ugyldig inndata oppgitt" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6980,19 +7142,19 @@ msgstr "Ugyldig passord oppgitt." msgid "Invalid recording file" msgstr "Ugyldig opptaksfil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Ugyldige søkeparametre (inget objekt valgt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Ugyldig søkestring (kunne ikke konverte til tall)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Ugyldig søkestreng (bare strenger av partallslengde støttes)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Ugyldig tittel-ID." @@ -7002,7 +7164,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiensk" @@ -7011,63 +7173,63 @@ msgid "Italy" msgstr "Italia" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT Blokklinking Av" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT-blokker" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Branching Av" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FlytTall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Heltall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LastLagre Flyt Av" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LastLagre Av" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LastLagre Parret Av" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LastLagre lXz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT Ibzx Av" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LastLagre Iwz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Av (JIT Kjerne)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Parret Av" @@ -7079,27 +7241,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT Systemregistre Av" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japansk" @@ -7110,13 +7276,13 @@ msgstr "Japansk" msgid "Japanese (Shift-JIS)" msgstr "Japansk (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7130,7 +7296,7 @@ msgstr "Behold vindu øverst" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7151,7 +7317,7 @@ msgstr "" msgid "Keys" msgstr "Nøkler" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7159,12 +7325,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Spark spiller" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreansk" @@ -7175,7 +7341,7 @@ msgstr "Koreansk" msgid "L" msgstr "V" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7185,7 +7351,7 @@ msgstr "" msgid "L-Analog" msgstr "Venstre-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7193,35 +7359,37 @@ msgstr "" msgid "Label" msgstr "Etikett" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7295,13 +7463,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Lisens" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7315,7 +7483,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7323,11 +7491,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Begrens Klump-opplastningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Listekolonner" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Listevisning" @@ -7338,29 +7506,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Last" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Last &Dårlig kartfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Last &Annen kartfil..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Last inn brukerlagde teksturer" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Last inn GameCube-hovedmeny" @@ -7381,7 +7556,7 @@ msgstr "Innlastingsfilbane:" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7470,19 +7645,19 @@ msgstr "Åpne hurtiglagringsplass nr. 8" msgid "Load State Slot 9" msgstr "Åpne hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Last inn tilstand fra fil" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Last inn tilstand fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Last inn tilstand fra kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Last inn Wii-systemmeny %1" @@ -7494,16 +7669,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Last fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Last inn fra kortplass %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Last kartfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7511,18 +7686,18 @@ msgstr "" msgid "Load..." msgstr "Last..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Lastet symboler fra '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7542,7 +7717,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Logg" @@ -7554,7 +7729,7 @@ msgstr "Logg-innstillinger" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Jit-logg Instruksjonsdekning" @@ -7562,7 +7737,7 @@ msgstr "Jit-logg Instruksjonsdekning" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Loggfør opptegningstid til fil" @@ -7578,7 +7753,7 @@ msgstr "Logger utdata" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7593,16 +7768,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Mistet tilkobling til NetPlay-tjener…" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7610,7 +7785,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7620,7 +7795,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7628,37 +7803,37 @@ msgstr "" msgid "Main Stick" msgstr "Hoved-joystick" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Skaper" @@ -7675,12 +7850,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Administrer NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7692,7 +7867,7 @@ msgstr "Mapping" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Treff funnet" @@ -7709,16 +7884,16 @@ msgstr "Maksimum bufferstørrelse endret til %1" msgid "Maximum tilt angle." msgstr "Maksimal tilt-vinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Middels" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Minne" @@ -7730,7 +7905,7 @@ msgstr "Minne Stoppunkt" msgid "Memory Card" msgstr "Minnekort" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Minnekortbehandler" @@ -7742,7 +7917,7 @@ msgstr "" msgid "Memory Override" msgstr "Minneoverstyring" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Minne-stoppunktinnstillinger" @@ -7758,7 +7933,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7770,29 +7945,33 @@ 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:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Diverse innstillinger" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7812,36 +7991,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifiserer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -7853,16 +8037,16 @@ msgstr "Monoskopiske skygger" msgid "Monospaced Font" msgstr "Fastbreddeskrift" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Bevegelsesinndata" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Bevegelsessimulering" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7899,6 +8083,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7908,10 +8096,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-sjekk" @@ -7920,8 +8108,8 @@ msgstr "NAND-sjekk" msgid "NKit Warning" msgstr "NKit-advarsel" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -7930,7 +8118,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7947,25 +8135,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Navn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Navn for en ny merkelapp:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Navn for tagg til å fjerne:" @@ -7974,7 +8162,7 @@ msgid "Name of your session shown in the server browser" msgstr "Navnet på din sesjon som vises i tjenerutforskeren" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8031,7 +8219,7 @@ msgstr "" msgid "Network" msgstr "Nettverk" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -8061,7 +8249,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Nytt søk" @@ -8069,7 +8257,7 @@ msgstr "Nytt søk" msgid "New Tag..." msgstr "Ny merkelapp..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Ny identietet opprettet." @@ -8077,7 +8265,7 @@ msgstr "Ny identietet opprettet." msgid "New instruction:" msgstr "Ny instruksjon:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Ny etikett" @@ -8086,7 +8274,7 @@ msgstr "Ny etikett" msgid "Next Game Profile" msgstr "Neste spillprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Neste treff" @@ -8100,7 +8288,7 @@ msgid "Nickname is too long." msgstr "Kallenavnet er for langt." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Brukernavn:" @@ -8114,7 +8302,7 @@ msgstr "Nei" msgid "No Adapter Detected" msgstr "Ingen adapter oppdaget" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8128,7 +8316,7 @@ msgstr "Ingen lydavspilling" msgid "No Compression" msgstr "Ingen komprimering" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Ingen treff" @@ -8136,16 +8324,16 @@ msgstr "Ingen treff" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Ingen beskrivelse tilgjengelig" @@ -8161,15 +8349,15 @@ msgstr "Ingen utvidelse valgt." msgid "No file loaded / recorded." msgstr "Ingen filer lastet / tatt opp." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8178,7 +8366,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Ingen feil har blitt oppdaget." @@ -8190,10 +8378,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Ingen problemer ble funnet." @@ -8208,11 +8392,11 @@ msgstr "" "men siden Wii-titler inneholder mye verifiseringsdata, betyr det at det mest " "sannsynlig ikke er noen feil som vil påvirke emulering." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Ingen opptak lastet." @@ -8221,7 +8405,7 @@ msgstr "Ingen opptak lastet." msgid "No save data found." msgstr "Ingen lagringsfiler funnet." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Ingen undo.dtm funnet, avbryter angring av lasting av lagringsstadie for å " @@ -8230,11 +8414,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Ingen" @@ -8294,7 +8478,7 @@ msgid "Null" msgstr "Ingenting" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -8329,10 +8513,58 @@ msgstr "Nunchuck-Joystick" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Objekt %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Objektrekkevidde" @@ -8346,7 +8578,7 @@ msgstr "Oseania" msgid "Off" msgstr "Av" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8358,14 +8590,29 @@ msgstr "På" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Nettbasert &dokumentasjon" @@ -8373,7 +8620,7 @@ msgstr "Nettbasert &dokumentasjon" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8381,7 +8628,7 @@ msgstr "" "Legg til kun symboler med prefiks:\n" "(Blank for alle symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8391,7 +8638,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Åpne" @@ -8400,11 +8647,11 @@ msgstr "Åpne" msgid "Open &Containing Folder" msgstr "Åpne &inneholdende mappe" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Åpne mappe..." @@ -8425,7 +8672,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "Åpne Wii &lagringsmappe" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8458,11 +8705,11 @@ msgid "Operators" msgstr "Operatører" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Innstillinger" @@ -8475,13 +8722,36 @@ msgstr "Orange" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Andre" @@ -8494,7 +8764,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Andre Status-hurtigtaster" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Annen Statusadministrering" @@ -8514,16 +8784,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Spi&ll av inndataopptak…" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8532,15 +8802,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8548,11 +8818,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG-bildefil (*.png);; Alle filer (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC-størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8565,11 +8835,11 @@ msgstr "Kontroll" msgid "Pads" msgstr "Kontrollere" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parametere" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8621,11 +8891,15 @@ msgstr "Filbane:" msgid "Paths" msgstr "Baner" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pause på slutten av filmen" @@ -8664,7 +8938,7 @@ msgstr "Høyeste fart for utgående svingbevegelser." msgid "Per-Pixel Lighting" msgstr "Belysning per piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Utfør pålogget systemoppdatering" @@ -8672,33 +8946,33 @@ msgstr "Utfør pålogget systemoppdatering" msgid "Perform System Update" msgstr "Utfør systemoppdatering" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Fysisk" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Velg en debug-font" @@ -8714,12 +8988,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plattform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Spill av" @@ -8731,7 +9005,7 @@ msgstr "Spill/Ta opp" msgid "Play Recording" msgstr "Spill av opptak" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8743,27 +9017,27 @@ msgstr "Avspillingsalterntiver" msgid "Player" msgstr "Spiller" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8772,7 +9046,8 @@ msgstr "" msgid "Players" msgstr "Spillere" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8784,23 +9059,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Punkt" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8809,7 +9088,7 @@ msgstr "" msgid "Port:" msgstr "Port:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8831,11 +9110,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Oppsett av Etterbehandlings-skyggelegging" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Forhåndsinnlasting av egendefinerte teksturer" @@ -8843,11 +9122,11 @@ msgstr "Forhåndsinnlasting av egendefinerte teksturer" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8872,7 +9151,7 @@ msgstr "Trykk Synkroniseringsknapp" msgid "Pressure" msgstr "Trykk" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8887,7 +9166,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Forrige spillprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Forrige spill" @@ -8898,7 +9177,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8910,7 +9189,7 @@ msgstr "Privat" msgid "Private and Public" msgstr "Privat og offentlig" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problem" @@ -8950,8 +9229,8 @@ msgstr "Programteller" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Fremdrift" @@ -8959,11 +9238,11 @@ msgstr "Fremdrift" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Tøm spillistehurtiglager" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8983,14 +9262,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Spørsmål" @@ -9011,19 +9290,19 @@ msgstr "H" msgid "R-Analog" msgstr "Høyre-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO-autooppdaging" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "KJØRER" @@ -9036,11 +9315,11 @@ msgstr "RVZ GC/Wii-avbildninger (*.rvz)" msgid "Range" msgstr "Område" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -9052,7 +9331,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "B&ytt instruksjon" @@ -9064,14 +9347,14 @@ msgstr "Les" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Skriv og les" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Kun skrivebeskyttet" @@ -9092,10 +9375,15 @@ msgstr "Ekte balansebrett" msgid "Real Wii Remote" msgstr "Ekte Wii Remote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9109,7 +9397,7 @@ msgstr "Opptak" msgid "Record Inputs" msgstr "Ta opp inndata" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Tar opp" @@ -9144,7 +9432,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "'Redump.org-'status:" @@ -9152,14 +9440,14 @@ msgstr "'Redump.org-'status:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Oppdater" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9167,11 +9455,11 @@ msgstr "" msgid "Refresh Game List" msgstr "Oppdater spilliste" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9180,8 +9468,8 @@ msgstr "" msgid "Refreshing..." msgstr "Gjennoppfrisker..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9210,7 +9498,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Fjern" @@ -9227,7 +9515,7 @@ msgstr "" msgid "Remove Tag..." msgstr "Fjern merkelapp..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Fjern merkelapp" @@ -9238,8 +9526,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "&Gi symbol nytt navn" @@ -9247,11 +9535,11 @@ msgstr "&Gi symbol nytt navn" msgid "Render Window" msgstr "Renderingsvindu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Spill i hovedvinduet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9267,23 +9555,22 @@ msgstr "Forespørsel om å bli med i din gruppe" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Nullstill" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9311,6 +9598,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Tilbakestill alle Wii-kontroll parringer" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Ressurspakkebehandler" @@ -9327,7 +9618,7 @@ msgstr "Omstart påkrevd" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Tilbakestill instruksjon" @@ -9344,7 +9635,7 @@ msgstr "Returhastighet" msgid "Revision" msgstr "Revisjon" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revisjon: %1" @@ -9403,7 +9694,7 @@ msgstr "Rull mot høyre" msgid "Room ID" msgstr "Rom-ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9421,26 +9712,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Kjør &Til Hit" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9456,19 +9773,19 @@ msgstr "Russland" msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kort-sti:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9476,7 +9793,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9489,7 +9806,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9497,11 +9814,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL-sammenheng" @@ -9511,11 +9828,11 @@ msgstr "SSL-sammenheng" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Lag&ringskode" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Lagre &stadie" @@ -9528,7 +9845,6 @@ msgstr "Sikker" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9538,9 +9854,17 @@ msgstr "Lagre" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Lagringsfil Eksport" @@ -9549,24 +9873,24 @@ msgid "Save FIFO log" msgstr "Lagre FIFO-logg" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Lagre fil til" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Lagre import" @@ -9578,13 +9902,13 @@ msgstr "Lagre eldste hurtiglagring" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Lagre hurtiglagring" @@ -9628,23 +9952,23 @@ msgstr "Hurtiglagringsplass nr. 8" msgid "Save State Slot 9" msgstr "Hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Lagre tilstand til fil" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Lagre tilstand til eldste kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Lagre tilstand til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Lagre tilstand til kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "&Lagre symbolkart som..." @@ -9652,7 +9976,7 @@ msgstr "&Lagre symbolkart som..." msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Lagre og last inn tilstand" @@ -9664,11 +9988,11 @@ msgstr "" msgid "Save as..." msgstr "Lagre som …" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Lagre kombinert utdatafil som" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9678,15 +10002,15 @@ msgstr "" "sikkerhetskopiere nåværende data før du overskriver.\n" "Overskriv nå?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Lagre kartfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Lagre signaturfil" @@ -9694,7 +10018,7 @@ msgstr "Lagre signaturfil" msgid "Save to Selected Slot" msgstr "Lagre til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Lagre til kortplass %1 - %2" @@ -9707,7 +10031,7 @@ msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" "Lagret Wii-kontroll parring kan ikke tilbakestilles når et Wii-spill kjører." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9719,26 +10043,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Skalert EFB-kopi" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "SkjDump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Søk" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Søkeadresse" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Søk i nåværende objekt" @@ -9746,17 +10070,17 @@ msgstr "Søk i nåværende objekt" msgid "Search Subfolders" msgstr "Søk i undermapper" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Søk etter en instruks" @@ -9764,11 +10088,11 @@ msgstr "Søk etter en instruks" msgid "Search games..." msgstr "Søk spill..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Søk instruksjon" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9789,7 +10113,7 @@ msgid "Section that contains most CPU and Hardware related settings." msgstr "" "Seksjon som inneholder de fleste CPU- og maskinvarerelaterte innstillinger." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9797,28 +10121,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Velg dumpens filbane" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Velg eksportmappe" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9838,15 +10170,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Velg inngang %1 - %2" @@ -9854,7 +10186,7 @@ msgstr "Velg inngang %1 - %2" msgid "Select State" msgstr "Velg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Velg kortplass for lagringsstadie" @@ -9913,15 +10245,15 @@ msgstr "Velg mappe" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Velg en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9929,11 +10261,11 @@ msgstr "" msgid "Select a Game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Velg en SD-kortbilledfil" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9941,19 +10273,19 @@ msgstr "" msgid "Select a game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Velg en tittel å installere til NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Velg RSO-moduladressen:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9961,12 +10293,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Velg nøkkelfil (OTP/SEEPROM dump)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Velg lagringsfil" @@ -9982,7 +10314,7 @@ msgstr "" msgid "Selected Font" msgstr "Valgt skrifttype" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Valgt kontrolprofil finnes ikke" @@ -9994,26 +10326,45 @@ msgstr "Valgt kontrolprofil finnes ikke" msgid "Selected game doesn't exist in game list!" msgstr "Valgt spill eksisterer ikke i spillisten!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10025,18 +10376,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10050,7 +10412,7 @@ msgstr "" msgid "Send" msgstr "Send" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensorbjelkeposisjon:" @@ -10074,16 +10436,12 @@ msgstr "Serverport" msgid "Server rejected traversal attempt" msgstr "Tjeneren avslo traverseringsforsøk" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Sett &verdi" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Sett programteller" @@ -10099,23 +10457,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Sett symbol-&sluttadresse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Angi symbol&størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Sett symbol-sluttadresse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Angi symbolstørrelse (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10125,17 +10483,17 @@ msgstr "" "spill.\n" "Fungerer kanskje ikke i alle spill." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Sett Wii-systemspråket." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10147,20 +10505,20 @@ msgstr "" msgid "Settings" msgstr "Innstillinger" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Kan ikke opprette «setting.txt»-fil" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Alvorlighetsgrad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Skygeleggerkompilering" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Rist" @@ -10177,16 +10535,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Vis &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Vis &verktøylinje" @@ -10194,53 +10552,53 @@ msgstr "Vis &verktøylinje" msgid "Show Active Title in Window Title" msgstr "Vis aktiv tittel i vindustittel" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Vis Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Vis nåværende spill på Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Vis bildefrekvens (FPS)" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Vis bildeteller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Vis Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Vis Tyskland" @@ -10252,23 +10610,23 @@ msgstr "Vis golfmodusoverlegg" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Vis inndataskjerm" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Vis Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Vis lagteller" @@ -10276,19 +10634,19 @@ msgstr "Vis lagteller" msgid "Show Language:" msgstr "Vis språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Vis logg&oppsett" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Vis NetPlay-meldinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Vis NetPlay-ping" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Vis Nederland" @@ -10296,32 +10654,36 @@ msgstr "Vis Nederland" msgid "Show On-Screen Display Messages" msgstr "Vis Skjerm-meldinger" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Vis PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Vis plattformer" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Vis Russland" @@ -10329,72 +10691,72 @@ msgstr "Vis Russland" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Vis Spania" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Vis systemklokke" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Vis ukjent" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Vis verden" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Vis i &minne" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Vis i kode" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10402,65 +10764,71 @@ msgstr "" msgid "Show in server browser" msgstr "Vis i vertsliste" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10470,34 +10838,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Side-ved-side" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Sideveis grep" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Sideveisveksling" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Sideveis Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Signaturdatabase" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10506,7 +10874,7 @@ msgid "Signed Integer" msgstr "Signert heltall" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Forenklet kinesisk" @@ -10523,7 +10891,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." @@ -10531,11 +10899,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Hopp over" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10570,24 +10938,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10595,10 +10963,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10608,7 +10972,7 @@ msgstr "Glidebryter" msgid "Slot A" msgstr "Kortplass A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Kortplass A:" @@ -10616,7 +10980,7 @@ msgstr "Kortplass A:" msgid "Slot B" msgstr "Kortplass B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Kortplass B:" @@ -10624,7 +10988,7 @@ msgstr "Kortplass B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10650,12 +11014,12 @@ msgstr "" "Noen av de angitte verdiene er ugyldige.\n" "Vennligst sjekk de markerte verdiene." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Sorter alfabetisk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Lyd:" @@ -10669,27 +11033,27 @@ msgstr "Spania" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spansk" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Høytaler-lydforskyvelse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Lydstyrke:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Spesifikk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10710,15 +11074,15 @@ msgstr "Hastighet" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10731,25 +11095,28 @@ msgstr "Forvalgt kontroller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Start &NetPlay…" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Start inn&dataopptak" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Start opptak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10765,10 +11132,10 @@ msgstr "" msgid "Started game" msgstr "Startet spill" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Tilstand" @@ -10778,7 +11145,7 @@ msgstr "Ratt" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Steg" @@ -10790,13 +11157,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Stepp over" @@ -10812,7 +11179,7 @@ msgstr "Utstepping tidsutløp!" msgid "Step over in progress..." msgstr "Stepper over..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Stepp vellykket!" @@ -10821,7 +11188,7 @@ msgstr "Stepp vellykket!" msgid "Stepping" msgstr "Stepper" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -10851,18 +11218,14 @@ msgstr "Joystick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Stopp avspilling/opptak av inndata" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Stoppet spill" @@ -10895,7 +11258,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Strekk til Vindu" @@ -10930,8 +11293,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Vellykket" @@ -10958,7 +11321,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Eksportering av lagringsfiler var vellykket" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Ekstrahering av sertifikat fra NAND vellykket" @@ -10970,12 +11333,12 @@ msgstr "Ekstrahering av fil vellykket." msgid "Successfully extracted system data." msgstr "Ekstrahering av systemdata vellykket." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Installering av tittelen til NAND var vellykket." @@ -10986,11 +11349,11 @@ msgstr "Fjerning av tittelen fra NAND var vellykket." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Støtte" @@ -10998,16 +11361,16 @@ msgstr "Støtte" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Suspendert" @@ -11017,12 +11380,12 @@ msgstr "Bytt øyne" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -11033,7 +11396,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Sving" @@ -11047,34 +11410,21 @@ msgid "Switch to B" msgstr "Bytt til B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Symbol (%1) endeadresse:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Symbolnavn:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symboler" @@ -11102,7 +11452,7 @@ msgstr "" "Synkroniserer GPU- og CPU-trådene for å hindre tilfeldige frys i " "dobbelkjernemodus. (PÅ = kompatibel, AV = raskt)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11121,24 +11471,24 @@ msgid "Synchronizing save data..." msgstr "Synkroniserer lagringsdata..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS-verktøy" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Etiketter" @@ -11148,7 +11498,7 @@ msgstr "Etiketter" msgid "Taiko Drum" msgstr "Taiko-tromme" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Hale" @@ -11156,15 +11506,15 @@ msgstr "Hale" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Ta skjermbilde" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11172,7 +11522,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11180,6 +11530,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11189,7 +11545,7 @@ msgstr "Tekstur-hurtiglager" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11201,7 +11557,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Teksturformat-overlegg" @@ -11224,7 +11580,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11238,7 +11594,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "Mesterverk-partisjonene mangler." -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11246,7 +11602,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND er blitt reparert." @@ -11257,11 +11613,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11294,6 +11650,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11311,7 +11674,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Disken som skulle settes inn ble ikke funnet." @@ -11331,17 +11694,17 @@ msgstr "Den emulerte Wii-konsollen er allerede oppdatert." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Innskrevet PID er ugyldig." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Innskrevet VID er ugyldig." @@ -11349,7 +11712,7 @@ msgstr "Innskrevet VID er ugyldig." msgid "The expression contains a syntax error." msgstr "RegEx-uttrykket inneholder en syntaksfeil." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11365,7 +11728,7 @@ msgstr "" "Filen %1 finnes allerede.\n" "Vil du erstatte den?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11381,7 +11744,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11392,7 +11755,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:573 +#: 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 " @@ -11453,9 +11816,9 @@ msgstr "Sjekksummene samsvarer ikke!" msgid "The hashes match!" msgstr "Sjekksummene samsvarer!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11471,11 +11834,11 @@ msgstr "" msgid "The install partition is missing." msgstr "Installeringspartisjonen mangler." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11489,8 +11852,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11520,12 +11883,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Den dekrypterte AR-koden inneholder ingen linjer." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11563,7 +11926,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11578,11 +11941,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11590,15 +11953,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "Typen til partisjonen kunne ikke leses." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11625,7 +11988,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11651,14 +12014,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "Det er for mange partisjoner i den første partisjonstabellen." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Det er ingenting å angre!" @@ -11700,19 +12068,19 @@ msgstr "" "Denne koreanske tittelen er satt til å bruke en IOS som ikke typisk brukes " "på koreanske konsoller. Dette vil sannsynligvis føre til ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "USB-enheten er allerede hvitelistet." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Denne WAD kan ikke startes." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Denne WAD er ikke gyldig." @@ -11847,6 +12215,10 @@ msgstr "" msgid "This is a good dump." msgstr "Dette er en god dump." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Denne økten er passordbeskyttet:" @@ -11863,13 +12235,13 @@ msgstr "" "\n" "Hvis usikker, la innstillingen være deaktivert." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Denne programvaren bør ikke benyttes til å kjøre spill du ikke eier selv " "lovlig." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Denne tittelen kan ikke startes." @@ -11882,7 +12254,7 @@ msgstr "Tittelen er satt til en ugyldig IOS." msgid "This title is set to use an invalid common key." msgstr "Tittelen er satt til å bruke en ugyldig fellesnøkkel." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11890,7 +12262,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11911,6 +12283,13 @@ msgid "" msgstr "" "Denne verdien er multiplisert med dybden som er valgt i grafikkoppsettet." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11927,11 +12306,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Tråder" @@ -11939,12 +12318,12 @@ msgstr "Tråder" msgid "Threshold" msgstr "Terskel" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Vend" @@ -11958,10 +12337,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Tittel" @@ -11975,7 +12354,7 @@ msgstr "Til" msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Bruk &fullskjerm" @@ -12000,7 +12379,7 @@ msgid "Toggle Aspect Ratio" msgstr "Skift bildestørrelse" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Slå av/på stoppunkt" @@ -12052,15 +12431,19 @@ msgstr "Veksle XFB-Kopier" msgid "Toggle XFB Immediate Mode" msgstr "Veksle XFB Øyeblikkelig Modus" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Verktøylinje" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Oppe" @@ -12068,9 +12451,8 @@ msgstr "Oppe" msgid "Top-and-Bottom" msgstr "Topp-og-bunn" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -12107,28 +12489,28 @@ msgstr "Total reiselengde." msgid "Touch" msgstr "Berør" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Tradisjonell kinesisk" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12167,26 +12549,26 @@ msgid "Triggers" msgstr "Triggere" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Type" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "UKJENT" @@ -12198,7 +12580,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12210,20 +12592,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB hviteliste-feil" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12231,7 +12613,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12240,7 +12622,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12252,11 +12634,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12284,7 +12666,7 @@ msgstr "" "\n" "Ønsker du å ignorere denne linjen å fortsette fortolkning?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12307,15 +12689,15 @@ msgstr "Ukomprimerte GC/Wii bildefiler (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Angre åpning av hurtiglagring" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Angre hurtiglagring" @@ -12335,11 +12717,11 @@ 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:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "USA" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12350,12 +12732,13 @@ msgstr "USA" msgid "Unknown" msgstr "Ukjent" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12379,11 +12762,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12391,7 +12774,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12399,7 +12782,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12419,16 +12802,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Ubegrenset" @@ -12461,22 +12846,22 @@ msgid "Unpacking" msgstr "Utpakning" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12540,23 +12925,23 @@ msgstr "" "Oppdaterer tittelen %1...\n" "Dette kan ta litt tid." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Oppreist grep" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Oppreisningsveksling" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Oppreist Wii-kontroll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Innstillinger for rapportering av bruksstatistikk" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12568,15 +12953,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Bruk den innebygde databasen over spillnavn" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Bruk tapsfri kodek (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Bruk PAL60-modus (EuRGB60)" @@ -12584,7 +12969,7 @@ msgstr "Bruk PAL60-modus (EuRGB60)" msgid "Use Panic Handlers" msgstr "Bruk panikkadvarslere" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12602,43 +12987,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "Bruk kun én dybdebuffer for begge øyne. Trengs for noen få spill." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Brukeroppsett" @@ -12670,21 +13030,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Benytter Qt %1" @@ -12692,31 +13052,31 @@ msgstr "Benytter Qt %1" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Verktøyet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Vertikal synkronisering" @@ -12724,11 +13084,11 @@ msgstr "Vertikal synkronisering" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Verdi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12736,17 +13096,17 @@ msgstr "" msgid "Value:" msgstr "Verdi:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12762,16 +13122,16 @@ msgstr "Detaljgrad" msgid "Verify" msgstr "Verifiser" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verifiser integritet" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Verifiser sertifikater" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verifiserer" @@ -12785,7 +13145,7 @@ msgid "Vertex Rounding" msgstr "Punktavrunding" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12799,12 +13159,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Vis &kode" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Vis &minne" @@ -12812,14 +13172,14 @@ msgstr "Vis &minne" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" @@ -12839,31 +13199,31 @@ msgstr "Volum opp" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD-filer (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WAD-installasjon mislyktes: Kunne ikke fullføre flisimport." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "WAD-installasjon mislyktes: Valgt fil er ikke en gyldig WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "VENTER" @@ -12902,12 +13262,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12918,7 +13278,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12940,7 +13300,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Advarsel" @@ -13014,7 +13374,7 @@ msgstr "Overvåk" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -13031,7 +13391,7 @@ msgstr "Vestlig (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13039,7 +13399,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13047,7 +13407,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Hvitelistede USB-gjennomstrømmingsenheter" @@ -13071,7 +13431,7 @@ msgstr "Wii-meny" msgid "Wii NAND Root:" msgstr "Wii NAND-rot:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -13079,7 +13439,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13097,7 +13457,7 @@ msgstr "Wii-kontrollerknapper" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Innstillinger for Wii Remote" @@ -13117,7 +13477,7 @@ msgstr "Wii TAS-inndata %1 - Wii-kontroll" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS-inndata %1 - Wii-kontroll + Nunchuck" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii og Wii-kontroll" @@ -13125,11 +13485,11 @@ msgstr "Wii og Wii-kontroll" msgid "Wii data is not public yet" msgstr "Wii-data er ikke offentlige enda" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-lagringsfiler (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -13139,11 +13499,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Tekstbryting" @@ -13157,10 +13529,14 @@ msgstr "Verden" msgid "Write" msgstr "Skriv" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Bare skriv" @@ -13202,6 +13578,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13210,11 +13594,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF-register " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13249,14 +13633,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13359,7 +13743,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13377,15 +13761,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3-kode støttes ikke" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13393,11 +13781,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13416,21 +13804,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll kunne ikke lastes." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "frakoblet" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13438,31 +13826,35 @@ msgstr "" msgid "fake-completion" msgstr "falsk-utførrelse" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13472,7 +13864,7 @@ msgstr "" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13482,13 +13874,13 @@ msgstr "" msgid "none" msgstr "ingen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "på" @@ -13505,16 +13897,20 @@ msgstr "sek" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw-spilltegnebrett" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13529,11 +13925,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13568,7 +13964,7 @@ msgstr "| Eller" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13579,8 +13975,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/nl.po b/Languages/po/nl.po index f4e9eb45ca91..d4d75582910f 100644 --- a/Languages/po/nl.po +++ b/Languages/po/nl.po @@ -16,7 +16,7 @@ # Marinus Schot , 2013 # Martin Dierikx, 2022 # Mike van der Kuijl , 2019-2020 -# Mike van der Kuijl , 2020-2023 +# Mike van der Kuijl , 2020-2024 # Mike van der Kuijl , 2021-2022 # Appel “Appel Taart” Taart , 2014 # Philip Goto , 2023 @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Marijn Kneppers, 2023\n" +"Last-Translator: Mike van der Kuijl , 2020-2024\n" "Language-Team: Dutch (http://app.transifex.com/delroth/dolphin-emu/language/" "nl/)\n" "Language: nl\n" @@ -88,8 +88,8 @@ msgstr "$ Gebruiker Variabele" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -110,19 +110,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -143,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Standaard)" @@ -161,7 +162,7 @@ msgstr "%1 (langzaam)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 msgid "" @@ -185,6 +186,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: 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." @@ -211,7 +217,7 @@ msgstr "%1 doet nu mee" msgid "%1 has left" msgstr "%1 is vertrokken" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -219,7 +225,7 @@ msgstr "" "%1 heeft %2/%3 prestaties ontgrendeld (%4 hardcore) die %5/%6 punten waard " "zijn (%7 hardcore)" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 heeft %2/%3 prestaties ontgrendeld die %4/%5 punten waard zijn" @@ -233,14 +239,14 @@ msgstr "%1 is nu aan het golfen" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 msgid "%1 is playing %2" -msgstr "" +msgstr "%1 is %2 aan het spelen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -257,7 +263,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%" @@ -265,26 +271,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "%1's waarde is gebruikt" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -315,28 +321,28 @@ msgstr "%1x Native (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "" +msgstr "%1x Native (%2x%3) voor %4" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" "%n adres(sen) kon(den) niet worden benaderd in het geëmuleerde geheugen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n adres(sen) blijft/blijven over." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -346,23 +352,23 @@ msgstr "%n adres(sen) is/zijn verwijderd." msgid "& And" msgstr "& En" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Over" @@ -370,12 +376,12 @@ msgstr "&Over" msgid "&Add Memory Breakpoint" msgstr "&Voeg Geheugen Breekpunt Toe" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Nieuwe Code Toevoegen..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Functie toevoegen" @@ -383,27 +389,27 @@ msgstr "&Functie toevoegen" msgid "&Add..." msgstr "&Toevoegen..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" -msgstr "" +msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Geluidsinstellingen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Automatisch Bijwerken:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Randloos venster" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Breekpunten" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Bug-tracker" @@ -411,15 +417,15 @@ msgstr "&Bug-tracker" msgid "&Cancel" msgstr "&Annuleren" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Controleer op updates..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "Symbolen &wissen" @@ -427,19 +433,24 @@ msgstr "Symbolen &wissen" msgid "&Clone..." msgstr "&Klonen…" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Code" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Verbonden" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Controllerinstellingen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Adres kopiëren" @@ -447,7 +458,7 @@ msgstr "&Adres kopiëren" msgid "&Create..." msgstr "&Aanmaken…" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Verwijderen" @@ -464,9 +475,9 @@ msgstr "&Verwijder Watchvenster" msgid "&Delete Watches" msgstr "&Verwijder Watches" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "Code &bewerken…" @@ -474,23 +485,23 @@ msgstr "Code &bewerken…" msgid "&Edit..." msgstr "&Bewerken…" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "Schijf &uitwerpen" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulatie" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exporteren" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "Game-save &exporteren…" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "State &exporteren…" @@ -498,55 +509,53 @@ msgstr "State &exporteren…" msgid "&Export as .gci..." msgstr "Als .gci exporteren…" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Lettertype..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Frame Voorwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&Vrije-kijk-instellingen" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "Symbolen &genereren van" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub-repository" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Ga naar het begin van de functie" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafische instellingen" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Hulp" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Sneltoetsinstellingen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importeren" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "Save-game &importeren…" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "State &importeren…" @@ -554,19 +563,19 @@ msgstr "State &importeren…" msgid "&Import..." msgstr "&Importeren…" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "Blr …invoegen" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Interframe Menging" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -574,15 +583,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Taal:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "State &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "Symbol-map &laden" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Laad bestand naar huidig adres" @@ -592,23 +605,23 @@ msgstr "&Laad bestand naar huidig adres" msgid "&Lock Watches" msgstr "&Vergrendel Watches" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Vergrendel Widgets op hun Plaats" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Geheugen" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Opname" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Dempen" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Netwerk" @@ -617,23 +630,23 @@ msgid "&No" msgstr "&Nee" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Openen…" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opties" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functies" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Spelen" @@ -641,15 +654,15 @@ msgstr "&Spelen" msgid "&Properties" msgstr "&Eigenschappen" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Alleen-lezen-modus" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "Lijst &verversen" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registers" @@ -657,41 +670,45 @@ msgstr "&Registers" msgid "&Remove" msgstr "&Verwijderen" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Code verwijderen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Symbool hernoemen" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Resetten" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Resource Pack Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Symbol-map opslaan" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "&Scan e-Reader Kaart(en)..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Snelheidslimiet:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Stoppen" @@ -699,15 +716,19 @@ msgstr "&Stoppen" msgid "&Theme:" msgstr "&Thema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Gereedschap" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&ROM ontladen" @@ -717,17 +738,17 @@ msgstr "&ROM ontladen" msgid "&Unlock Watches" msgstr "Watches &ontgrendelen" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Website" @@ -739,17 +760,17 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' niet gevonden, geen symboolnamen gegenereerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 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 msgid "(Dark)" -msgstr "(Donker)" +msgstr "(Dark)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 msgid "(Light)" @@ -759,7 +780,7 @@ msgstr "(Licht)" msgid "(System)" msgstr "(Systeem)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(host)" @@ -767,7 +788,7 @@ msgstr "(host)" msgid "(off)" msgstr "(uit)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -787,15 +808,15 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Aftrekken" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Onbekend--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -806,36 +827,36 @@ msgstr "..." msgid "/ Divide" msgstr "/ Delen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1080p" -msgstr "" +msgstr "1080p" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31 msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blokken)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1440p" -msgstr "" +msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -847,17 +868,17 @@ msgstr "16 Mbit (251 blokken)" msgid "16-bit" msgstr "16-bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16-bit Unsigned Integer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -869,11 +890,11 @@ msgstr "16x Anisotropisch" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -885,7 +906,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x Anisotropisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -897,25 +918,25 @@ msgstr "32 Mbit (507 blokken)" msgid "32-bit" msgstr "32-bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32-bit Float" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -929,11 +950,11 @@ msgstr "3D diepte" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -941,13 +962,13 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokken)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "4K" -msgstr "" +msgstr "4K" #: Source/Core/Core/HotkeyManager.cpp:196 msgid "4x" @@ -957,46 +978,46 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x Anisotropisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "5K" -msgstr "" +msgstr "5K" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30 msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blokken)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64-bit Float" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64-bit Unsigned Integer" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "720p" -msgstr "" +msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -1008,19 +1029,19 @@ msgstr "8 Mbit (123 blokken)" msgid "8-bit" msgstr "8-bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8-bit Signed Integer" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8-bit Unsigned Integer" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:79 msgid "8K" -msgstr "" +msgstr "8K" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116 msgid "8x Anisotropic" @@ -1030,7 +1051,7 @@ msgstr "8x Anisotropisch" msgid "< Less-than" msgstr "< Minder dan" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1040,13 +1061,13 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 msgid "Disabled in Hardcore Mode." -msgstr "" +msgstr "Uitgeschakeld in Hardcore-modus." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1070,23 +1091,27 @@ msgstr "" msgid "" "Error on line %1 col %2" msgstr "" +"Fout op regel %1 kolom " +"%2" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:528 msgid "" "Warning invalid base address, " "defaulting to 0" msgstr "" +"Waarschuwing ongeldig basisadres, " +"standaard op 0" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:289 msgid "> Greater-than" msgstr "> Meer dan" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Er is al een NetPlay sesie bezig!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1102,7 +1127,7 @@ msgstr "" "\n" "Het installeren van deze WAD zal het onherstelbaar vervangen. Doorgaan?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Er ligt al een schijf in de lade." @@ -1114,17 +1139,17 @@ msgstr "" "Een groep functies om de kleuren nauwkeuriger te maken, zodat ze " "overeenkomen met de kleurruimte waar Wii en GC-spellen voor bedoeld zijn." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" msgstr "" -"Er wordt al afgesloten. Niet opgeslagen data kan verloren gaan wanneer u de " +"Er wordt al afgesloten. Niet-opgeslagen data kan verloren gaan wanneer u de " "huidige emulatie stopzet voordat het afsluiten voltooid wordt. Stop forceren?" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:161 @@ -1141,6 +1166,10 @@ msgstr "" "Een synchronisatie kan alleen worden geactiveerd wanneer er een Wii spel " "draait." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1175,7 +1204,7 @@ msgstr "" "Wii-afstandbediening ondersteuning in netplay is experimenteel en " "functioneert mogelijk niet optimaal. Gebruik op eigen risico.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR Code" @@ -1184,8 +1213,8 @@ msgstr "AR Code" msgid "AR Codes" msgstr "AR Codes" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1199,7 +1228,7 @@ msgid "About Dolphin" msgstr "Over Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Versnellingsmeter" @@ -1215,10 +1244,10 @@ msgstr "Nauwkeurigheid:" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "Prestatie-instellingen" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Prestaties" @@ -1227,6 +1256,8 @@ 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" @@ -1251,7 +1282,7 @@ msgid "" "Action Replay Error: Invalid size ({0:08x} : address = {1:08x}) in Add Code " "({2})" msgstr "" -"Action Replay Fout: Onjuiste grootte ({0:08x} : address = {1:08x} ) in Voeg " +"Action Replay Fout: Onjuiste grootte ({0:08x} : adres = {1:08x} ) in Voeg " "Code Toe ({2})" #: Source/Core/Core/ActionReplay.cpp:628 @@ -1259,8 +1290,8 @@ msgid "" "Action Replay Error: Invalid size ({0:08x} : address = {1:08x}) in Fill and " "Slide ({2})" msgstr "" -"Action Replay Fout: Onjuiste grootte ({0:08x} : address = {1:08x} ) in Vul " -"en Shuif({2})" +"Action Replay Fout: Onjuiste grootte ({0:08x} : adres = {1:08x} ) in Vul en " +"Shuif({2})" #: Source/Core/Core/ActionReplay.cpp:409 msgid "" @@ -1321,19 +1352,19 @@ msgstr "Activeer NetPlay Chat" msgid "Active" msgstr "Actief" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Actieve Infinity Figuren:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Actieve thread wachtrij" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Actieve threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adapter" @@ -1341,7 +1372,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter gedetecteerd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1351,7 +1382,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Toevoegen" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Plaats &breekpunt" @@ -1380,51 +1411,48 @@ msgstr "Voeg Een Geheugen Breekpunt Toe" msgid "Add memory &breakpoint" msgstr "Plaats geheugen &breekpunt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Toevoegen aan &watchvenster" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Toevoegen..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adres" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Adresruimte" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Adresruimte per CPU state" @@ -1504,12 +1532,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Geavanceerd" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Geavanceerde instellingen" @@ -1524,15 +1552,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1542,22 +1570,22 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Lucht" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Uitgelijnd naar data type lengte" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Alle" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:585 msgid "All Assembly files" -msgstr "" +msgstr "Alle Assembly-bestanden" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 @@ -1565,11 +1593,11 @@ msgid "All Double" msgstr "Alles Double" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1577,7 +1605,7 @@ msgid "All Files" msgstr "Alle Bestanden" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Alle Bestanden (*)" @@ -1586,7 +1614,7 @@ msgstr "Alle Bestanden (*)" msgid "All Float" msgstr "Alle Float" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alle GC/Wii bestanden" @@ -1595,8 +1623,8 @@ msgstr "Alle GC/Wii bestanden" msgid "All Hexadecimal" msgstr "Alle Hexadecimaal" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Save States (*.sav *.s##);; Alle Bestanden (*)" @@ -1608,7 +1636,7 @@ msgstr "Alles Signed Integer" msgid "All Unsigned Integer" msgstr "Alles Unsigned Integer" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Alle Bestanden (*)" @@ -1620,15 +1648,15 @@ msgstr "Codes van alle spelers gesynchroniseerd." msgid "All players' saves synchronized." msgstr "Saves van alle spelers gesynchroniseerd." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Niet-overeenkomende regio-instellingen toestaan" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken toestaan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Sta Schrijven naar SD-Kaart toe" @@ -1646,7 +1674,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:39 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp:37 msgid "Alternate Input Sources" -msgstr "Alternatieve invoerbronnen" +msgstr "Alternatieve inputbronnen" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Always" @@ -1658,7 +1686,7 @@ msgstr "Altijd" msgid "Always Connected" msgstr "Altijd Verbonden" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "Altijd &Bovenop" @@ -1696,15 +1724,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Elke Regio" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Voeg Signatuur toe aan" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Toevoegen aan &Bestaand Signatuurbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "P&as Signatuur Toe..." @@ -1724,7 +1752,7 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Toepassen" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Pas signatuurbestand toe..." @@ -1754,32 +1782,36 @@ msgstr "Weet u het zeker?" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:142 msgid "Area Sampling" -msgstr "" +msgstr "Gebiedssampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Beeldverhouding" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Beeldverhouding:" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" -msgstr "" +msgstr "Assemble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" -msgstr "" +msgstr "Assemble instructie" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" -msgstr "" +msgstr "Assembler" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" -msgstr "" +msgstr "Assembly Bestand" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Assign Controller Ports" @@ -1796,7 +1828,7 @@ msgstr "" "Minstens twee van de geselecteerde opslagbestanden hebben dezelfde interne " "bestandsnaam." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Koppel MotionPlus" @@ -1804,11 +1836,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" @@ -1820,12 +1852,12 @@ msgstr "Australië" msgid "Author" msgstr "Auteur" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Auteurs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1833,11 +1865,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (veelvoud van 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Instellingen voor automatisch bijwerken" @@ -1853,7 +1881,7 @@ msgstr "" "\n" "Selecteer een specifieke interne resolutie." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Venstergrootte automatisch aanpassen" @@ -1861,15 +1889,15 @@ msgstr "Venstergrootte automatisch aanpassen" msgid "Auto-Hide" msgstr "Automatisch Verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO module?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Automatisch synchroniseren met map" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1877,18 +1905,18 @@ msgstr "" "Past de venster grootte automatisch aan aan de interne resolutie." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" -msgstr "" +msgstr "Automatisch bijwerken van huidige waardes" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Auxiliary" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1896,7 +1924,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT is fout. Dolphin sluit zich nu af" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1906,38 +1934,42 @@ msgstr "" "MAC adres moet worden gebruikt. Genereer een MAC adres dat start met 00:09:" "bf of 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP register " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" #: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:71 msgid "Background Input" -msgstr "Achtergrondinvoer" +msgstr "Achtergrondinput" #: Source/Core/Core/FreeLookManager.cpp:93 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:25 @@ -1946,13 +1978,13 @@ msgstr "Achtergrondinvoer" msgid "Backward" msgstr "Achteruit" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Slechte Waarde Gegeven" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Verkeerd adres opgegeven." @@ -1960,20 +1992,20 @@ msgstr "Verkeerd adres opgegeven." msgid "Bad dump" msgstr "Slechte dump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Slechte offset gegeven." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Verkeerde waarde opgegeven." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1991,17 +2023,17 @@ msgstr "Balk" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:417 msgid "Base Address" -msgstr "" +msgstr "Basis Adres" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Basisprioriteit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Basis" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Basisinstellingen" @@ -2009,15 +2041,15 @@ msgstr "Basisinstellingen" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Batch modus kan niet worden gebruikt zonder een spel te specificeren. " -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batterij" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Bèta (één keer per maand)" @@ -2027,47 +2059,47 @@ msgstr "BetterJoy, DS4Windows, etc." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:134 msgid "Bicubic: B-Spline" -msgstr "" +msgstr "Bicubic: B-Spline" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:138 msgid "Bicubic: Catmull-Rom" -msgstr "" +msgstr "Bicubic: Catmull-Rom" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:136 msgid "Bicubic: Mitchell-Netravali" -msgstr "" +msgstr "Bicubic: Mitchell-Netravali" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:132 msgid "Bilinear" -msgstr "" +msgstr "Bilineair" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Binaire SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Binaire SSL (lees)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Binaire SSL (schrijf)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"Het aanmaken van een leeg figuur is mislukt op:\n" -"%1, probeer opnieuw met een ander karakter" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Blokgrootte" @@ -2076,7 +2108,7 @@ msgstr "Blokgrootte" msgid "Block Size:" msgstr "Blokgrootte:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blokkeren" @@ -2105,32 +2137,143 @@ msgstr "" "Bluetooth passthrough modus staat aan, maar Dolphin is gecompileerd zonder " "libusb. Passthrough mode kan niet gebruikt worden." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Opstarten naar Pauze" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup bestanden (*.bin);;Alle bestanden (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii sleutelbestand (*.bin);;Alle Bestanden (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Randloos volledig scherm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Beneden" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Branches" @@ -2168,11 +2311,11 @@ msgstr "Breedbandadapter (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Breedbandadapter (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "Breedbandadapter-DNS-instelling" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Breedbandadapterfout" @@ -2182,11 +2325,11 @@ msgstr "Breedbandadapterfout" msgid "Broadband Adapter MAC Address" msgstr "Breedbandadapter-MAC-adres" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2221,7 +2364,7 @@ msgstr "Knop" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2237,9 +2380,9 @@ msgstr "Knop" msgid "Buttons" msgstr "Knoppen" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" -msgstr "" +msgstr "Door: %1" #: Source/Core/Core/HW/GCPadEmu.cpp:57 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:31 @@ -2247,11 +2390,11 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "M&aak Signatuurbestand aan..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP register " @@ -2263,7 +2406,7 @@ msgstr "CPU Emulatie Engine:" msgid "CPU Options" msgstr "CPU Opties" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2271,7 +2414,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Gecachete interpreter (trager)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2282,7 +2425,7 @@ msgstr "" "stotteringen op.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Bereken" @@ -2299,11 +2442,11 @@ msgstr "" "grafische problemen.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibreren" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Kalibratie" @@ -2311,19 +2454,19 @@ msgstr "Kalibratie" msgid "Calibration Period" msgstr "Kalibratieperiode" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Roep weergave lijst op bij %1 met grootte %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Callers" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Calls" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Callstack" @@ -2332,66 +2475,78 @@ msgid "Camera 1" msgstr "Camera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Camera gezichtsveld (beïnvloedt gevoeligheid van het wijzen)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "Kan alleen AR code genereren voor waarden in virtueel geheugen." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "Kan nog niet aangepast worden!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "Kan de schurken voor deze trofee niet aanpassen" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Kalibratie Annuleren" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Kan SingleStep niet uitvoeren. Gebruik in plaats hiervan Frame Voorwaarts." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Kan deze WAD niet starten omdat het niet op de NAND kon worden geïnstalleerd." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Kan de GC IPL niet vinden." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Kan geen AR code genereren voor dit adres." @@ -2399,19 +2554,21 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "Kan geheugenkaart niet op een leeg pad zetten." -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Gevangen schurk %1:" @@ -2429,7 +2586,7 @@ msgstr "Middelpunt" msgid "Center Mouse" msgstr "Centreer Muis" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Centreer en Kalibreer" @@ -2437,7 +2594,7 @@ msgstr "Centreer en Kalibreer" msgid "Change &Disc" msgstr "&Schijf wisselen" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "&Schijf wisselen…" @@ -2445,7 +2602,7 @@ msgstr "&Schijf wisselen…" msgid "Change Disc" msgstr "Schijf wisselen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Verwissel Schijven Automatisch" @@ -2453,7 +2610,7 @@ msgstr "Verwissel Schijven Automatisch" msgid "Change the disc to {0}" msgstr "Verander de schijf naar {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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 +2650,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Kanaal Partitie (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "Ingevoerde karakter is ongeldig!" @@ -2505,15 +2662,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Cheat Code Bewerker" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cheat Zoeken" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Controleer NAND..." @@ -2521,7 +2678,7 @@ msgstr "Controleer NAND..." msgid "Check for Game List Changes in the Background" msgstr "Controleer op de achtergrond op spellijstwijzigingen" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Controleer op updates" @@ -2541,27 +2698,27 @@ msgstr "Controlesom" msgid "China" msgstr "China" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Kies" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Kies een bestand om te openen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: 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:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" -msgstr "Kies een invoerbestand met prioriteit" +msgstr "Kies een inputbestand met prioriteit" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" -msgstr "Kies een secundair invoerbestand" +msgstr "Kies een secundair inputbestand" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Selecteer GCI-basismap" @@ -2588,15 +2745,19 @@ msgstr "Klassieke Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Legen" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Cache legen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Slot Legen" @@ -2604,7 +2765,7 @@ msgstr "Slot Legen" msgid "Clock Override" msgstr "Klok Overschrijven" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Clone en &Wijzig Code..." @@ -2613,37 +2774,21 @@ msgstr "Clone en &Wijzig Code..." msgid "Close" msgstr "Sluiten" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Co&nfiguratie" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Code Verschil Hulpmiddel" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Code Verschil Hulpmiddel Hulp" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "Code is niet uitgevoerd" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "Code is uitgevoerd" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2655,7 +2800,7 @@ msgstr "Codes ontvangen!" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 msgid "Color Correction" -msgstr "" +msgstr "Kleur Correctie" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:24 msgid "Color Correction Configuration" @@ -2669,7 +2814,11 @@ msgstr "Kleur Correctie:" msgid "Color Space" msgstr "Kleurruimte" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Combineer &Twee Signatuurbestanden..." @@ -2703,7 +2852,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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compileer Shaders Voor Starten" @@ -2711,9 +2860,9 @@ msgstr "Compileer Shaders Voor Starten" msgid "Compiling Shaders" msgstr "Shaders Compileren" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Compressie" @@ -2726,10 +2875,16 @@ msgstr "Compressieniveau:" msgid "Compression:" msgstr "Compressie:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2851,7 +3006,7 @@ msgstr "" "worden. Er wordt een waarschuwing gegeven als NaN wordt geretourneerd en de " "var die NaN werd, wordt gelogd." -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Config" @@ -2873,24 +3028,24 @@ msgstr "Dolphin Configureren" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242 msgid "Configure Input" -msgstr "Configureer Invoer" +msgstr "Configureer Input" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242 msgid "Configure Output" -msgstr "Configureer Uitvoer" +msgstr "Configureer Output" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bevestigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Backend-wijziging bevestigen" @@ -2898,7 +3053,7 @@ msgstr "Backend-wijziging bevestigen" msgid "Confirm on Stop" msgstr "Bevestiging bij Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2909,15 +3064,15 @@ msgstr "Bevestiging" msgid "Connect" msgstr "Verbind" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Verbind Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB-toetsenbord verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Verbind Wii-afstandsbediening %1" @@ -2937,7 +3092,7 @@ msgstr "Verbind Wii-afstandsbediening 3" msgid "Connect Wii Remote 4" msgstr "Verbind Wii-afstandsbediening 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Verbind Wii-afstandsbedieningen" @@ -2978,7 +3133,7 @@ msgstr "Bedien NetPlay Golf Modus" msgid "Control Stick" msgstr "Controle Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Controllerprofiel" @@ -3002,7 +3157,7 @@ msgstr "Controllerprofiel 4" msgid "Controller Settings" msgstr "Controllerinstellingen" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Controllers" @@ -3082,8 +3237,8 @@ msgstr "Convergentie" msgid "Convergence:" msgstr "Convergentie:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Conversie mislukt." @@ -3091,9 +3246,9 @@ msgstr "Conversie mislukt." msgid "Convert" msgstr "Converteer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3101,9 +3256,9 @@ msgstr "Converteer Bestand Nu naar Map" msgid "Convert File..." msgstr "Converteer Bestand..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3126,8 +3281,8 @@ msgstr "" "converteren naar ISO. Wilt u toch doorgaan?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Converteren..." @@ -3156,8 +3311,8 @@ msgstr "" "standaarden waren en de meeste games deze niet erkenden, dus het is niet " "correct om uit te gaan van een formaat uit de disc-regio van de game. Kies " "het formaat dat er het meest natuurlijk uitziet, of stem het af op de regio " -"waarin de game werd ontwikkeld.

HDR-uitvoer is vereist om alle " -"kleuren van de PAL- en NTSC-J-kleurruimten weer te geven." +"waarin de game werd ontwikkeld.

HDR-output is vereist om alle kleuren " +"van de PAL- en NTSC-J-kleurruimten weer te geven." "

In geval van twijfel leeg laten." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:47 @@ -3178,15 +3333,15 @@ msgstr "" msgid "Copy" msgstr "Kopieer" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopieer &functie" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Kopieer &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Kopieer Adres" @@ -3194,19 +3349,19 @@ msgstr "Kopieer Adres" msgid "Copy Failed" msgstr "Kopie mislukt" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Kopieer Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Kopieer Waarde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Kopieer code &lijn" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Kopieer &doeladres" @@ -3224,6 +3379,11 @@ msgstr "Kopiëren naar B" msgid "Core" msgstr "Core" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Correcte Kleurruimte" @@ -3233,7 +3393,7 @@ msgid "Correct SDR Gamma" msgstr "Correcte SDR Gamma" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Kosten" @@ -3326,7 +3486,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Kon het bestand {0} niet herkennen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Kon de wijzigingen niet opslaan!" @@ -3371,13 +3531,13 @@ msgstr "Kon bestand niet lezen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Creëer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Maak Infinity Bestand aan" @@ -3386,15 +3546,11 @@ msgstr "Maak Infinity Bestand aan" msgid "Create New Memory Card" msgstr "Maak Nieuwe Geheugenkaart" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Maak Skylander Bestand aan" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Maak Skylander Map aan" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Maak koppelingen voor andere apparaten" @@ -3403,22 +3559,8 @@ msgstr "Maak koppelingen voor andere apparaten" msgid "Create..." msgstr "Creëer..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Maakt framedumps en schermafbeeldingen met de interne resolutie van de " -"renderer, in plaats van de grootte van het venster waarin het wordt " -"weergegeven.

Als de beeldverhouding breedbeeld is, wordt de " -"afbeelding horizontaal geschaald om de verticale resolutie te behouden." -"

In geval van twijfel leeg laten." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Maker:" @@ -3426,11 +3568,11 @@ msgstr "Maker:" msgid "Critical" msgstr "Kritiek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Bijsnijden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3442,11 +3584,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: 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:380 +#: 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, " @@ -3456,15 +3598,15 @@ msgstr "" "Kan de prestaties beïnvloeden.

In geval van twijfel " "leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Huidige Regio" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Huidige Waarde" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Huidige context" @@ -3472,29 +3614,33 @@ msgstr "Huidige context" msgid "Current game" msgstr "Huidig spel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Huidige thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" +msgstr "Aangepast" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Aangepaste Adresruimte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "" +msgstr "Aangepaste Beeldverhouding Hoogte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "" +msgstr "Aangepaste Beeldverhouding Breedte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "Aangepaste Beeldverhouding:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3504,13 +3650,13 @@ msgstr "Aangepaste RTC Opties" msgid "Custom:" msgstr "Aangepast:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Aanpassen" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3537,7 +3683,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" @@ -3545,15 +3691,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)" @@ -3568,11 +3714,10 @@ msgid "" "setup instructions, refer to this page." msgstr "" -"DSU-protocol maakt het gebruik van invoer- en bewegingsgegevens van " -"compatibele invoerbronnen, zoals PlayStation, Nintendo Switch en Steam-" -"controllers mogelijk.

Raadpleeg deze pagina voor installatie-instructies." +"DSU-protocol maakt het gebruik van input- en bewegingsdata van compatibele " +"inputbronnen, zoals PlayStation, Nintendo Switch en Steam-controllers " +"mogelijk.

Raadpleeg deze pagina voor installatie-instructies." #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:39 msgid "Dance Mat" @@ -3580,9 +3725,9 @@ msgstr "Dansmat" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" -msgstr "" +msgstr "Dark" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 msgid "Data" @@ -3596,7 +3741,7 @@ msgstr "Data Partitie (%1)" msgid "Data Transfer" msgstr "Data Overdracht" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Data Type" @@ -3629,8 +3774,8 @@ msgstr "Dead Zone" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Debugging" @@ -3639,7 +3784,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:" @@ -3686,7 +3831,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" @@ -3698,11 +3843,11 @@ msgstr "Standaardlettertype" msgid "Default ISO:" msgstr "Standaard-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Standaard-thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB-cache-invalidatie uitschakelen" @@ -3710,7 +3855,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:384 +#: 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 " @@ -3756,26 +3901,53 @@ msgstr "Dieptepercentage:" msgid "Depth:" msgstr "Diepte:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschrijving" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Beschrijving:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" +msgstr "Beschrijving: %1" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Ontkoppeld" @@ -3783,7 +3955,7 @@ msgstr "Ontkoppeld" msgid "Detect" msgstr "Detecteer" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "RSO Module Detecteren" @@ -3791,7 +3963,7 @@ msgstr "RSO Module Detecteren" msgid "Deterministic dual core:" msgstr "Deterministische dual-core:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (meerdere keren per dag)" @@ -3800,7 +3972,7 @@ msgid "Device" msgstr "Apparaat" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Apparaat PID (bijv., 0305)" @@ -3809,11 +3981,11 @@ msgid "Device Settings" msgstr "Apparaatinstellingen" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3821,11 +3993,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Verschil" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Dimt het scherm na vijf minuten inactiviteit." @@ -3837,12 +4005,12 @@ msgstr "Rechtstreekse Verbinding" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "&Verbinding Verbroken" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Uitschakelen" @@ -3854,7 +4022,7 @@ msgstr "Schakel Bounding Box uit" msgid "Disable Copy Filter" msgstr "Schakel Kopieerfilter uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Schakel EFB VRAM Kopieën uit" @@ -3862,25 +4030,25 @@ msgstr "Schakel EFB VRAM Kopieën uit" msgid "Disable Emulation Speed Limit" msgstr "Schakel Emulatie Snelheidslimit uit" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Schakel Fastmem uit" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" -msgstr "" +msgstr "Schakel Fastmem Arena uit" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:154 msgid "Disable Fog" msgstr "Schakel Mist uit" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "JIT-cache uitschakelen" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" -msgstr "" +msgstr "Schakel Large Entry Points Map uit" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:214 msgid "Disabled" @@ -3896,7 +4064,7 @@ msgstr "" "verbeteren, maar breekt sommige spellen.

In geval " "van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4262,7 +4426,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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4280,15 +4444,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nederlands" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "Sl&uiten" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "EFB kopie %1" @@ -4310,7 +4474,7 @@ msgid "" "Suitable for competitive games where fairness and minimal latency are most " "important." msgstr "" -"Elke speler stuurt zijn eigen invoer naar het spel, met dezelfde " +"Elke speler stuurt zijn eigen input naar het spel, met dezelfde " "buffergrootte voor alle spelers, geconfigureerd door de host.\n" "Geschikt voor competitieve spellen waarbij rechtvaardigheid en minimale " "latentie het belangrijkst zijn." @@ -4321,7 +4485,7 @@ msgstr "Vroege Geheugen Updates" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Aarde" @@ -4334,7 +4498,7 @@ msgstr "Oost-Azië" msgid "Edit Breakpoint" msgstr "Bewerk Breekpunt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Bewerk..." @@ -4350,15 +4514,15 @@ msgstr "Effect" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effectief" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Effectieve prioriteit" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4368,7 +4532,7 @@ msgstr "Schijf uitwerpen" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Element" @@ -4376,11 +4540,11 @@ msgstr "Element" msgid "Embedded Frame Buffer (EFB)" msgstr "Embedded Frame Buffer (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Leeg" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emu Thread draait al" @@ -4388,11 +4552,11 @@ msgstr "Emu Thread draait al" msgid "Emulate Disc Speed" msgstr "Emuleer Disc Snelheid" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Emuleer Infinity Base" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Emuleer Skylander Portal" @@ -4408,7 +4572,7 @@ msgstr "" "Emuleert de schijfsnelheid van echte hardware. Uitschakelen kan " "instabiliteit veroorzaken. Staat standaard op Aan" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Geëmuleerde USB Apparaten" @@ -4431,50 +4595,38 @@ msgstr "" msgid "Emulation Speed" msgstr "Emulatiesnelheid" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "Emulatie moet gestart zijn om op te nemen." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Activeer API Validatielagen" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 msgid "Enable Achievement Badges" -msgstr "" +msgstr "Schakel Prestatiebadges in" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 msgid "Enable Achievements" msgstr "Activeer Prestaties" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Activeer Audio Uitrekking" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Activeer Cheats" #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 msgid "Enable Controller Inpu&t" -msgstr "" +msgstr "Schakel Controller Inpu&t in" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:162 msgid "Enable Custom RTC" @@ -4488,7 +4640,7 @@ msgstr "Activeer Degugging UI" msgid "Enable Dual Core" msgstr "Activeer Dual-Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Activeer Dual-Core (snelheidsverhoging)" @@ -4508,13 +4660,13 @@ msgstr "Activeer Encore Prestaties" msgid "Enable FPRF" msgstr "Activeer FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Schakel Grafische Mods in" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "Schakel Hardcore-modus in" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 msgid "" @@ -4534,6 +4686,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Activeer Leaderboard" @@ -4545,9 +4701,9 @@ msgstr "Activeer MMU" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 msgid "Enable Progress Notifications" -msgstr "" +msgstr "Schakel Voortgangsmeldingen in." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activeer Progressieve Scan" @@ -4560,11 +4716,11 @@ msgid "Enable Rich Presence" msgstr "Activeer Rich Presence" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Activeer Trillen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activeer Schermbeveiliger" @@ -4576,15 +4732,15 @@ msgstr "Activeer Speaker Data" msgid "Enable Unofficial Achievements" msgstr "Activeer Onofficiële Prestaties" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken inschakelen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activeer WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activeer Wireframe" @@ -4659,7 +4815,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4694,7 +4850,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4708,7 +4864,7 @@ msgstr "" "

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4728,7 +4884,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 " @@ -4757,8 +4913,11 @@ 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." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4770,7 +4929,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:302 +#: 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 " @@ -4782,7 +4941,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:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4813,7 +4972,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engels" @@ -4822,7 +4981,7 @@ msgstr "Engels" msgid "Enhancements" msgstr "Verbeteringen" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "Voer IP-adres in van het apparaat waarop de XLink Kai Client draait:" @@ -4844,11 +5003,17 @@ msgstr "Voer een nieuw MAC-adres voor de breedbandadapter in:" msgid "Enter password" msgstr "Voer wachtwoord in" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Voer de te gebruiken DNS-server in:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Voer adres van de RSO-module in:" @@ -4857,8 +5022,8 @@ msgstr "Voer adres van de RSO-module in:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4869,45 +5034,51 @@ msgstr "Voer adres van de RSO-module in:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4917,23 +5088,23 @@ msgstr "Voer adres van de RSO-module in:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" -msgstr "Error" +msgstr "Fout" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:456 msgid "Error Log" -msgstr "" +msgstr "Fout Log" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:75 msgid "Error Opening Adapter: %1" @@ -4943,9 +5114,9 @@ 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:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Fout bij het omzetten van de waarde" @@ -4959,7 +5130,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Fout in het verkrijgen van sessie lijst: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "Fout opgetreden bij het laden van sommige texture packs" @@ -4969,7 +5140,7 @@ msgstr "Fout bij verwerking van codes." #: Source/Core/Core/NetPlayClient.cpp:1824 msgid "Error processing data." -msgstr "Fout bij het verwerken van gegevens." +msgstr "Fout bij het verwerken van data." #: Source/Core/Core/NetPlayCommon.cpp:60 msgid "Error reading file: {0}" @@ -5027,7 +5198,7 @@ msgstr "Fout: GBA{0} save in {1} openen mislukt" msgid "Error: This build does not support emulated GBA controllers" msgstr "Fout: Deze versie ondersteunt geen geëmuleerde GBA-controllers" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5036,7 +5207,7 @@ msgstr "" "deze zijn niet geladen. Spellen kunnen wellicht lettertypes niet juist " "weergeven, of crashen." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5058,56 +5229,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Voorbeeld:\n" -"U wilt een functie vinden die uitgevoerd wordt wanneer HP verandert.\n" -"1. Start de opname en speel het spel zonder HP te laten veranderen, druk dan " -"op 'Code is niet uitgevoerd'.\n" -"2. Krijg/verlies onmiddellijk HP en druk op 'Code is uitgevoerd'.\n" -"3. Herhaal 1 of 2 om de hoeveelheid resultaten te verminderen.\n" -"\"Code has been executed\" zouden korte opnames moeten bevatten die focussen " -"op wat je wilt.\n" -"\n" -"Twee keer op 'Code is uitgevoerd' drukken zal alleen de functies behouden " -"die voor beide opnames zijn uitgevoerd. 'Hits' zal het aantal hits van de " -"laatste opname weergeven. 'Totale hits' zal het totaal aantal keren " -"weergeven dat een functie is uitgevoerd totdat de lijsten worden gewist met " -"Reset.\n" -"\n" -"Rechts klik -> 'Stel blr in' zal een blr bovenaan het symbool plaatsen.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Uitgesloten: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Uitgesloten: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Exclusieve Ubershaders" @@ -5115,7 +5242,7 @@ msgstr "Exclusieve Ubershaders" msgid "Exit" msgstr "Sluit" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "+ of haakje sluiten verwacht." @@ -5123,7 +5250,7 @@ msgstr "+ of haakje sluiten verwacht." msgid "Expected arguments: " msgstr "Verwachte argumenten:" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Verwachtte haakje sluiten." @@ -5135,15 +5262,15 @@ msgstr "Verwachte comma." msgid "Expected end of expression." msgstr "Verwachtte eind van uitdrukking." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." -msgstr "Verwachte naam van invoer." +msgstr "Verwachte naam van input." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Verwachte haakje openen." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Verwachte start van de uitdrukking." @@ -5151,11 +5278,11 @@ msgstr "Verwachte start van de uitdrukking." msgid "Expected variable name." msgstr "Verwachtte naam van variabele." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimenteel" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exporteer alle Wii Saves" @@ -5170,7 +5297,7 @@ msgstr "Exporteren Mislukt" msgid "Export Recording" msgstr "Exporteer Opname" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exporteer Opname..." @@ -5198,21 +5325,21 @@ msgstr "Exporteer als .&gcs..." msgid "Export as .&sav..." msgstr "Exporteer als .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n save(s) geëxporteerd" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensie" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.h:121 msgid "Extension Motion Input" -msgstr "Extensie Bewegings-invoer" +msgstr "Extensie Bewegings-input" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.h:122 msgid "Extension Motion Simulation" @@ -5226,7 +5353,7 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externe Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Certificaten uitpakken van NAND" @@ -5259,89 +5386,88 @@ msgid "Extracting Directory..." msgstr "Map Uitpakken..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO Speler" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:150 msgid "Failed loading XML." -msgstr "XML laden mislukt." +msgstr "Mislukt XML te laden." #: Source/Core/DolphinQt/GCMemcardManager.cpp:348 msgid "" "Failed opening memory card:\n" "%1" msgstr "" -"Openen van geheugenkaart mislukt:\n" +"Mislukt geheugenkaart te open:\n" "%1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Failed to add this session to the NetPlay index: %1" -msgstr "Kon deze sessie niet aan de NetPlay index toe voegen: %1" +msgstr "Mislukt om deze sessie aan de NetPlay index toe voegen: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" -msgstr "Kon signatuurbestand niet toevoegen aan bestand '%1'" +msgstr "Mislukt om signatuurbestand toe te voegen aan bestand '%1'" #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:669 msgid "Failed to claim interface for BT passthrough: {0}" -msgstr "Kon geen toegang krijgen tot de interface voor BT passthrough: {0}" +msgstr "" +"Mislukt om toegang te krijgen tot de interface voor BT passthrough: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" -msgstr "Legen van Skylander mislukt!" +msgstr "Mislukt om Skylander te legen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "Legen van Skylander uit slot(%1) mislukt!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" -msgstr "Verbinden met Redump.org mislukt" +msgstr "Mislukt om met Redump.org te verbinden" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 msgid "Failed to connect to server: %1" -msgstr "Kon geen verbinding maken met server: %1" +msgstr "Mislukt om verbinding te maken met server: %1" #: Source/Core/VideoBackends/D3D/D3DMain.cpp:154 #: Source/Core/VideoBackends/D3D12/VideoBackend.cpp:129 msgid "Failed to create D3D swap chain" -msgstr "Kon D3D swap chain niet maken" +msgstr "Mislukt om D3D swap chain te maken" #: Source/Core/VideoBackends/D3D12/VideoBackend.cpp:111 msgid "Failed to create D3D12 context" -msgstr "Creëren van D3D12 context mislukt" +msgstr "Mislukt om D3D12 context te creëren" #: Source/Core/VideoBackends/D3D12/VideoBackend.cpp:120 msgid "Failed to create D3D12 global resources" -msgstr "Creëren van D3D12 global resources mislukt" +msgstr "Mislukt om D3D12 global resources te creëren" #: Source/Core/VideoBackends/D3D/D3DBase.cpp:60 msgid "Failed to create DXGI factory" -msgstr "Kon DXGI factory niet maken" +msgstr "Mislukt om DXGI factory te creëren" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" -msgstr "Maken van Infinity bestand mislukt" +msgstr "Mislukt om Infinity bestand te creëren" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" -msgstr "Maken van Skylander bestand mislukt!" +msgstr "Mislukt om Skylander bestand te creëren!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Maken van Skylander bestand mislukt:\n" -"%1\n" -"(Skylander is mogelijk al op het portal)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5363,15 +5489,15 @@ msgstr "Kon het geselecteerde bestand niet verwijderen." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Kon kernel driver voor BT passthrough niet ontkoppelen: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Kon codes niet downloaden." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Kon %1 niet dumpen: Kon het bestand niet openen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Kon %1 niet dumpen: Kon niet naar het bestand schrijven" @@ -5384,7 +5510,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Kon geen certificaten uitpakken van NAND" @@ -5410,22 +5536,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Kon één of meerdere D3D symbolen niet vinden" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." -msgstr "Kon \"%1\" niet importeren." +msgstr "Mislukt om \"%1\" te importeren." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5433,7 +5555,7 @@ msgstr "" "Save bestand importeren mislukt. Het bestand lijkt beschadigd te zijn of is " "geen geldige Wii-save." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5443,7 +5565,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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Kon core niet initiëren" @@ -5457,7 +5579,7 @@ msgstr "" "Zorg ervoor dat uw videokaart ten minste D3D 10.0 ondersteunt.\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Initialiseren renderer classes mislukt" @@ -5466,11 +5588,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Kon deze titel niet installeren op de NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5478,8 +5600,8 @@ msgstr "" "Luisteren naar poort %1 mislukt. Is er nog een exemplaar van de NetPlay-" "server actief?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Kon RSO-module op %1 niet laden" @@ -5491,19 +5613,21 @@ msgstr "Kon d3d11.dll niet laden" msgid "Failed to load dxgi.dll" msgstr "Kon dxgi.dll niet laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Kon mapbestand'%1' niet laden" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Laden van Skylander bestand mislukt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Laden van Skylander bestand mislukt(%)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Kon het uitvoerbare bestand niet in het geheugen laden." @@ -5515,13 +5639,21 @@ msgstr "" "Laden van {0} mislukt. Als u Windows 7 gebruikt, probeer dan het KB4019990 " "update pakket te installeren." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" +msgstr "Mislukt om Skylander te wijzigen!" + +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +msgid "Failed to open \"{0}\" for writing." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 +#: Source/Core/DolphinQt/MainWindow.cpp:1722 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 msgid "Failed to open '%1'" msgstr "Kon '%1' niet openen" @@ -5529,13 +5661,17 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Kon het configuratiebestand niet openen!" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:731 msgid "Failed to open file" -msgstr "" +msgstr "Mislukt om bestand te open" #: Source/Core/Core/NetPlayCommon.cpp:26 msgid "Failed to open file \"{0}\"." @@ -5557,37 +5693,37 @@ msgstr "" msgid "Failed to open file." msgstr "Openen bestand mislukt." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Kon server niet openen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Openen van Infinity bestand mislukt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Openen van Infinity bestand mislukt(%1)!\n" -"Bestand is mogelijk al in gebruik op de base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Openen van Skylander bestand mislukt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Openen van Skylander bestand mislukt(%1)!\n" -"Bestand is mogelijk al in gebruik op het portaal." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." -msgstr "Kan het invoerbestand \"% 1\" niet openen." +msgstr "Kan het inputbestand \"% 1\" niet openen." #: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58 #: Source/Core/DiscIO/WIABlob.cpp:2043 @@ -5605,7 +5741,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Ontleden van Redump.org data mislukt" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "Kan de gegeven waarde niet verwerken tot het beoogde data type." @@ -5620,42 +5756,41 @@ msgstr "Lezen bestand mislukt." #: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98 #: Source/Core/DiscIO/WIABlob.cpp:2058 msgid "Failed to read from the input file \"{0}\"." -msgstr "Lezen van het invoerbestand \"{0}\" is mislukt." +msgstr "Lezen van het inputbestand \"{0}\" is mislukt." #: Source/Core/DolphinQt/GCMemcardManager.cpp:424 #: Source/Core/DolphinQt/GCMemcardManager.cpp:642 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Lezen van infinity bestand mislukt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Lezen van Infinity bestand mislukt(%1)!\n" -"Het bestand was te klein." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Lezen van Skylander bestand mislukt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Lezen van Skylander bestand mislukt(%1)!\n" -"Het bestand was te klein." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5674,7 +5809,7 @@ msgid "" msgstr "" "Kan junk data niet verwijderen uit bestand \"% 1\".\n" "\n" -"Wilt u het converteren zonder deze ongewenste gegevens te verwijderen?" +"Wilt u het converteren zonder deze ongewenste data te verwijderen?" #: Source/Core/DolphinQt/GameList/GameList.cpp:663 msgid "Failed to remove this title from the NAND." @@ -5692,31 +5827,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 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." -msgstr "Kon FIFO log niet opslaan." +msgstr "Mislukt om FIFO op te slaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Kon code map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Kon signatuurbestand '%1' niet opslaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Kon symbool map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5763,25 +5898,25 @@ msgid "" "Failed to write the output file \"{0}\".\n" "Check that you have enough space available on the target drive." msgstr "" -"Schrijven naar uitvoerbestand \"{0}\" is mislukt.\n" +"Schrijven naar outputbestand \"{0}\" is mislukt.\n" "Controleer of u voldoende ruimte beschikbaar heeft op de doelschijf." #: 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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Gefaald" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 msgid "Fair Input Delay" -msgstr "Redelijke Invoer Vertraging" +msgstr "Eerlijke Input Vertraging" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Terugvalregio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Terugvalregio:" @@ -5794,7 +5929,7 @@ msgstr "Snel" msgid "Fast Depth Calculation" msgstr "Snelle Diepteberekening" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5807,21 +5942,21 @@ msgstr "" msgid "Field of View" msgstr "Gezichtsveld" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "Figuur Nummer:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" -msgstr "" +msgstr "Figuurtype" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:46 msgid "File Details" msgstr "Bestand Details" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Bestandsformaat" @@ -5833,20 +5968,20 @@ msgstr "Bestandsformaat:" msgid "File Info" msgstr "Bestandsinfo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Bestandsnaam" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Bestandspad" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Bestandsgrootte" @@ -5854,7 +5989,7 @@ msgstr "Bestandsgrootte" msgid "File Size:" msgstr "Bestandsgrootte:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Bestand bevat geen codes." @@ -5893,15 +6028,15 @@ msgstr "Bestandssysteem" msgid "Filters" msgstr "Filters" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Vind &Volgende" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Vind &Vorige" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Kalibratie Afronden" @@ -5915,7 +6050,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Vuur" @@ -5931,35 +6066,36 @@ msgstr "Herstel Controlesommen" msgid "Fix Checksums Failed" msgstr "Herstel Controlesom Mislukt" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flags" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Volg &branch" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" -"Stuur voor de beste resultaten uw invoer langzaam naar alle mogelijke " -"regio's." +"Stuur voor de beste resultaten uw input langzaam naar alle mogelijke " +"uithoeken." #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:42 msgid "" @@ -5969,7 +6105,7 @@ msgstr "" "Voor setup instructies, raadpleeg deze pagina." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -5977,7 +6113,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" @@ -5985,7 +6121,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" @@ -6017,11 +6153,11 @@ msgstr "Forceer Luisterpoort:" msgid "Force Nearest" msgstr "Forceer Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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." @@ -6063,17 +6199,17 @@ msgstr "Vooruit" msgid "Forward port (UPnP)" msgstr "Poort forwarden (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "%1 resultaten gevonden voor \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "%n adres(sen) gevonden." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Frame %1" @@ -6094,7 +6230,7 @@ msgstr "Frame Vordering Verhoog Snelheid" msgid "Frame Advance Reset Speed" msgstr "Frame Voorwaarts Reset Snelheid" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Frame Dumping" @@ -6102,7 +6238,7 @@ msgstr "Frame Dumping" msgid "Frame Range" msgstr "Framebereik" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Frame Dump-afbeelding(en) '{0}' bestaan al. Overschrijven?" @@ -6126,7 +6262,7 @@ msgstr "Vrije Bestanden: %1" msgid "Free Look Control Type" msgstr "Vrije-Kijk Bestuur Methode" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Vrije-Kijk Controller %1" @@ -6161,7 +6297,7 @@ msgstr "Vrije-Kijk Schakelaar" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Frans" @@ -6185,7 +6321,7 @@ msgstr "Van" msgid "From:" msgstr "Van:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Volledig scherm" @@ -6217,13 +6353,13 @@ msgstr "GBA Kern" msgid "GBA Port %1" msgstr "GBA Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA-instellingen" #: Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp:27 msgid "GBA TAS Input %1" -msgstr "GBA-TAS-invoer %1" +msgstr "GBA-TAS-input %1" #: Source/Core/Core/HotkeyManager.cpp:359 msgid "GBA Volume" @@ -6356,20 +6492,20 @@ msgstr "" "GPU: Ondersteunt uw videokaart OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Spel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Carts (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6377,7 +6513,7 @@ msgstr "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "Alle Bestanden (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance aan Poort %1" @@ -6405,8 +6541,8 @@ msgstr "Spel Gamma" msgid "Game Gamma:" msgstr "Gamma Spel:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Spel ID" @@ -6469,11 +6605,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube Controller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "GameCube Controller op Poort %1" @@ -6481,11 +6617,11 @@ msgstr "GameCube Controller op Poort %1" msgid "GameCube Controllers" msgstr "GameCube-controllers" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube-toetsenbord" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-toetsenbord op poort %1" @@ -6498,17 +6634,17 @@ msgid "GameCube Memory Cards" msgstr "GameCube Geheugenkaart" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube Geheugenkaarten (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube Microfoon Slot %1" #: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:27 msgid "GameCube TAS Input %1" -msgstr "GameCube-TAS-invoer %1" +msgstr "GameCube-TAS-input %1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:80 msgid "Gamma" @@ -6520,17 +6656,17 @@ msgstr "Stickbereik Grootte" #: 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:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Codes" @@ -6540,35 +6676,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Algemeen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Algemeen en Opties" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Genereer Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Nieuwe statistiekidentiteit genereren" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Gegenereerde AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Duits" @@ -6580,18 +6716,18 @@ msgstr "Duitsland" msgid "GetDeviceList failed: {0}" msgstr "GetDeviceList mislukt: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" -msgstr "" +msgstr "Giant" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Giants" @@ -6604,8 +6740,8 @@ msgid "Good dump" msgstr "Goede dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafisch" @@ -6650,7 +6786,7 @@ msgstr "Groen Links" msgid "Green Right" msgstr "Groen Rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Rasterweergave" @@ -6659,7 +6795,7 @@ msgstr "Rasterweergave" msgid "Guitar" msgstr "Gitaar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Gyroscoop" @@ -6687,36 +6823,35 @@ msgstr "HDR Post-Processing" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Hoofd" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Help" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" -msgstr "" +msgstr "Heldenlevel:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Hex Byte String" @@ -6729,7 +6864,11 @@ msgstr "Hexadecimaal" msgid "Hide" msgstr "Verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Alles verbergen" @@ -6745,12 +6884,12 @@ msgstr "Incompatibele sessies verbergen" msgid "Hide Remote GBAs" msgstr "Externe GBA's verbergen" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6759,14 +6898,8 @@ msgstr "Hoogste" msgid "Hit Strength" msgstr "Slagsterkte " -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Hits" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Horizontaal gezichtsveld" @@ -6781,9 +6914,9 @@ msgstr "Host-code:" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 msgid "Host Input Authority" -msgstr "Invoerautoriteit van host" +msgstr "Host Input Autoriteit" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Hostgrootte" @@ -6794,33 +6927,33 @@ msgid "" "Suitable for casual games with 3+ players, possibly on unstable or high " "latency connections." msgstr "" -"Host heeft controle over het verzenden van alle invoer naar het spel, zoals " +"Host heeft controle over het verzenden van alle input naar het spel, zoals " "die ontvangen wordt van andere spelers, waardoor de host geen latentie heeft " "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 msgid "Host input authority disabled" -msgstr "Invoerautoriteit van host uitgeschakeld" +msgstr "Host Input Autoriteit uitgeschakeld" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 msgid "Host input authority enabled" -msgstr "Invoerautoriteit van host ingeschakeld" +msgstr "Host Input Autoriteit ingeschakeld" #: Source/Core/DolphinQt/GameList/GameList.cpp:527 msgid "Host with NetPlay" msgstr "Host met NetPlay" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Hostnaam" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Sneltoets­instellingen" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Sneltoetsen" @@ -6829,7 +6962,7 @@ msgstr "Sneltoetsen" msgid "Hotkeys Require Window Focus" msgstr "Sneltoetsen vereisen vensterfocus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybride Ubershaders" @@ -6843,16 +6976,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Ik ben me bewust van de risico's en wil doorgaan" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "De ingevoerde ID is ongeldig!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -6893,7 +7026,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR-gevoeligheid:" @@ -6940,15 +7073,15 @@ msgid "" "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -"Hetzelfde als Host Invoer Autoriteit, behalve dat de \"Host\" (die geen " +"Hetzelfde als Host Input Autoriteit, behalve dat de \"Host\" (die geen " "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:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Identiteitsgeneratie" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6960,11 +7093,11 @@ msgid "" "stability issues.\n" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -"Indien toegestaan, kan Dolphin gegevens verzamelen over zijn prestaties, " -"gebruik van functies en configuratie, evenals gegevens over de hardware en " -"het besturingssysteem van uw apparaat.\n" +"Indien toegestaan, kan Dolphin data verzamelen over zijn prestaties, gebruik " +"van functies en configuratie, evenals gegevens over de hardware en het " +"besturingssysteem van uw apparaat.\n" "\n" -"Er worden nooit privégegevens verzameld. Deze informatie helpt ons begrijpen " +"Er worden nooit privégedata verzameld. Deze informatie helpt ons begrijpen " "hoe Dolphin wordt gebruikt, en bij het stellen van onze prioriteiten. Het " "helpt ons ook om zeldzame configuraties te herkennen die bugs en prestatie- " "en stabiliteitsproblemen veroorzaken. \n" @@ -7019,11 +7152,15 @@ msgstr "" msgid "Ignore" msgstr "Negeren" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Formaatwijzigingen negeren" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Negeren voor deze sessie" @@ -7055,7 +7192,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB direct presenteren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7065,11 +7202,11 @@ msgid "" msgstr "" "Gebruikt volledig scherm met randloos venster dat het hele scherm opvult. " "Zorgt voor een snellere schakeling tussen volledig scherm en venstermodus, " -"maar verhoogt de invoervertraging enigszins, maakt bewegingen minder " -"vloeiend en vermindert prestaties enigszins.

In " -"geval van twijfel leeg laten." +"maar verhoogt de inputvertraging enigszins, maakt bewegingen minder vloeiend " +"en vermindert prestaties enigszins.

In geval van " +"twijfel leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-back-up importeren…" @@ -7084,15 +7221,15 @@ msgstr "Importeren mislukt" msgid "Import Save File(s)" msgstr "Save-bestand(en) importeren" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Wii-save importeren…" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "NAND-back-up importeren" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7105,15 +7242,6 @@ msgstr "" msgid "In-Game?" msgstr "In het spel?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Omvat: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Omvat: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7127,29 +7255,29 @@ msgstr "" "load tijd.

In geval van twijfel geselecteerd laten." "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" -msgstr "" +msgstr "Onjuiste heldenlevelwaarde!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" -msgstr "" +msgstr "Onjuiste laatst geplaatste tijd!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" -msgstr "" +msgstr "Onjuiste laatste resettijd!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" -msgstr "" +msgstr "Onjuiste geldwaarde!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" -msgstr "" +msgstr "Onjuiste nickname!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" -msgstr "" +msgstr "Onjuiste speeltijdwaarde!" #: Source/Core/Core/FreeLookManager.cpp:98 msgid "Increase" @@ -7192,15 +7320,16 @@ msgstr "Incrementele Rotatie" msgid "Incremental Rotation (rad/sec)" msgstr "Incrementele Rotatie (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Infinity Figuur Maker" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Infinity Beheer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Infinity Object (*.bin);;" @@ -7222,8 +7351,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informatie" @@ -7233,41 +7362,47 @@ msgstr "Schermbeveiliging blokkeren tijdens emulatie" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:370 msgid "Inject" -msgstr "" +msgstr "Injecteren" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" -msgstr "Invoer" +msgstr "Input" #. i18n: Refers to the "threshold" setting for pressure sensitive gamepad inputs. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/MixedTriggers.cpp:30 msgid "Input strength required for activation." -msgstr "Drempelwaarde voor invoersterkte" +msgstr "Drempelwaarde voor inputsterkte" #. i18n: Refers to the dead-zone setting of gamepad inputs. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:47 msgid "Input strength to ignore and remap." -msgstr "Invoersterkte om te negeren en opnieuw in te stellen" +msgstr "Inputsterkte om te negeren en opnieuw in te stellen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "&Nop invoegen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD-Kaart Invoegen" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Geïnspecteerd" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7279,9 +7414,9 @@ msgstr "Installatiepartitie (%1)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Install Update" -msgstr "Update installeren" +msgstr "Installeer Update" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WAD installeren…" @@ -7289,11 +7424,13 @@ msgstr "WAD installeren…" msgid "Install to the NAND" msgstr "Naar NAND installeren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instructie" @@ -7302,7 +7439,7 @@ msgstr "Instructie" msgid "Instruction Breakpoint" msgstr "Instructiebreekpunt" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instructie:" @@ -7311,7 +7448,7 @@ msgstr "Instructie:" msgid "Instruction: %1" msgstr "Instructie: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7332,21 +7469,21 @@ msgstr "Intensiteit" msgid "Interface" msgstr "Interface" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" -msgstr "" +msgstr "Interne LZ4-fout - Geprobeerd {0} bytes decomprimeren" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" -msgstr "" +msgstr "Interne LZ4-fout - compressie mislukt" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" -msgstr "" +msgstr "Interne LZ4-fout - decompressie mislukt ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" -msgstr "" +msgstr "Interne LZ4-fout - grootte van de data komt niet overeen ({0} / {1}))" #: Source/Core/Core/NetPlayCommon.cpp:67 Source/Core/Core/NetPlayCommon.cpp:151 msgid "Internal LZO Error - compression failed" @@ -7357,22 +7494,28 @@ 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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." 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:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" +"Interne LZO-fout - parsen van gedecomprimeerde versie-string lengte en " +"versie-cookie mislukt ({0})" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" 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:618 @@ -7384,7 +7527,7 @@ msgstr "Interne resolutie" msgid "Internal Resolution:" msgstr "Interne resolutie:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Interne fout bij het genereren van AR code." @@ -7392,11 +7535,11 @@ msgstr "Interne fout bij het genereren van AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (traagst)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreter-kern" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Ongeldige expressie" @@ -7408,7 +7551,7 @@ msgstr "Ongeldige JSON ontvangen van auto-update service: {0}" msgid "Invalid Mixed Code" msgstr "Ongeldige Gemengde Code" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Ongeldige Pakket %1 ingevoerd: %2" @@ -7417,11 +7560,11 @@ msgstr "Ongeldige Pakket %1 ingevoerd: %2" msgid "Invalid Player ID" msgstr "Ongeldige Speler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Ongeldig RSO-moduleadres: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Ongeldige callstack" @@ -7439,18 +7582,18 @@ msgstr "Ongeldige host" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:256 msgid "Invalid input for the field \"%1\"" -msgstr "Ongeldige invoer voor het veld \"%1\"" +msgstr "Ongeldige input voor het veld \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 msgid "Invalid input provided" -msgstr "Ongeldige invoer opgegeven" +msgstr "Ongeldige input opgegeven" #: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:457 msgid "Invalid literal." msgstr "Ongeldige tekst." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Ongeldige parameters gegeven om te zoeken." @@ -7462,20 +7605,20 @@ msgstr "Ongeldig wachtwoord ingevoerd." msgid "Invalid recording file" msgstr "Onjuist opnamebestand" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Ongeldige zoekparameters (geen object geselecteerd)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Ongeldige zoekopdracht (alleen gelijke string lengtes zijn ondersteund)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Ongeldige titel-ID." @@ -7485,7 +7628,7 @@ msgstr "Ongeldig watch adres: 1%" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiaans" @@ -7494,63 +7637,63 @@ msgid "Italy" msgstr "Italië" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" -msgstr "" +msgstr "Voorwerp" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Uit" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT Blokken" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "Jit Branch Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Integer Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Uit (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Paired Uit" @@ -7562,16 +7705,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:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT-registercache uitgeschakld" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT SysteemRegisters Uit" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7580,12 +7723,16 @@ msgstr "" "nooit moeten gebeuren. Meld dit incident alstublieft via de bugtracker. " "Dolphin zal nu afsluiten." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japans" @@ -7596,14 +7743,14 @@ msgstr "Japans" msgid "Japanese (Shift-JIS)" msgstr "Japans (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" "Kaos is de enige vijand voor deze trofee. Er hoeft niets gewijzigd te worden!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Blijf Uitvoeren" @@ -7617,7 +7764,7 @@ msgstr "Venster bovenaan houden" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Bewaar adressen waar de waarde in het geheugen" @@ -7638,7 +7785,7 @@ msgstr "Toetsenbordcontroller" msgid "Keys" msgstr "Toetsen" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7646,12 +7793,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Speler kicken" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreaans" @@ -7662,7 +7809,7 @@ msgstr "Koreaans" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "L&aad ROM..." @@ -7672,7 +7819,7 @@ msgstr "L&aad ROM..." msgid "L-Analog" msgstr "L-Analoog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR Save" @@ -7680,35 +7827,37 @@ msgstr "LR Save" msgid "Label" msgstr "Label" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Laatste Waarde" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" -msgstr "" +msgstr "Laatst geplaatst:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 msgid "Last reset:" -msgstr "" +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" @@ -7718,7 +7867,7 @@ msgstr "Het starten van deze spellen kan de problemen ook verhelpen." #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 msgid "Leaderboards" -msgstr "" +msgstr "Leiderborden" #: Source/Core/Core/FreeLookManager.cpp:90 #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:36 @@ -7767,7 +7916,7 @@ msgid "" "Middle-click to clear.\n" "Right-click for more options." msgstr "" -"Klik met de linkermuisknop om invoer te detecteren.\n" +"Klik met de linkermuisknop om input te detecteren.\n" "Midden-klik om te wissen.\n" "Klik met de rechtermuisknop voor meer opties." @@ -7784,13 +7933,13 @@ msgstr "" msgid "Levers" msgstr "Hendels" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licentie" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Leven" @@ -7804,7 +7953,7 @@ msgstr "Optillen" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Licht" @@ -7812,11 +7961,11 @@ msgstr "Licht" msgid "Limit Chunked Upload Speed:" msgstr "Beperk chunked-uploadsnelheid:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Lijstkolommen" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Lijstweergave" @@ -7827,29 +7976,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Laad &Slechte Mapbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Laad &Ander Mapbestand..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Laad Aangepaste Textures" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Laad Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "GameCube Hoofdmenu Laden" @@ -7870,7 +8026,7 @@ msgstr "Laad-pad:" msgid "Load ROM" msgstr "Laad ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Laad Slot" @@ -7959,19 +8115,19 @@ msgstr "Laad State Slot 8" msgid "Load State Slot 9" msgstr "Laad State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Laad State van Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Laad State van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Laad State van Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Wii-systeemmenu %1 laden" @@ -7983,16 +8139,16 @@ msgstr "Laad en Schrijf Alleen Host Save Data" msgid "Load from Selected Slot" msgstr "Laden van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Laad van Slot Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Laad mapbestand" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Laad vWii Systeem Menu %1" @@ -8000,11 +8156,11 @@ msgstr "Laad vWii Systeem Menu %1" msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Symbolen geladen van '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8014,7 +8170,7 @@ msgstr "" "DynamicInputTextures//.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8036,7 +8192,7 @@ msgid "Locked" msgstr "Vergrendeld" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8046,33 +8202,33 @@ msgstr "Logconfiguratie" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 msgid "Log In" -msgstr "" +msgstr "Aanmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "JIT-instructiedekking loggen" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 msgid "Log Out" -msgstr "" +msgstr "Afmelden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" -msgstr "Rendertijden naar bestand loggen" +msgstr "Log Rendertijden naar Bestand" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:59 msgid "Log Types" -msgstr "Typen loggen" +msgstr "Log Types" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:52 msgid "Logger Outputs" -msgstr "Logger-uitvoer" +msgstr "Logger Outputs" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Login Failed" msgstr "Inloggen Mislukt" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8090,16 +8246,16 @@ msgstr "Loop" msgid "Lost connection to NetPlay server..." msgstr "Verbinding met NetPlay-server verloren..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8107,7 +8263,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -8117,7 +8273,7 @@ msgstr "MadCatz Gameshark bestanden" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Magie" @@ -8125,37 +8281,37 @@ msgstr "Magie" msgid "Main Stick" msgstr "Hoofd Stick" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" -msgstr "" +msgstr "Zorg ervoor dat de heldenlevelwaarde tussen 0 en 100 ligt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" -msgstr "" +msgstr "Zorg ervoor dat de laatst geplaatste datumtijd waarde geldig is!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" -msgstr "" +msgstr "Zorg ervoor dat de laatste geresette datumtijd waarde geldig is!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" -msgstr "" +msgstr "Zorg ervoor dat de geldwaarde tussen 0 en 65000 ligt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" -msgstr "" +msgstr "Zorg ervoor dat de nickname tussen 0 en 15 karakters lang is!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" -msgstr "" +msgstr "Zorg ervoor dat de speeltijdwaarde geldig is!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" -msgstr "" +msgstr "Zorg ervoor dat er een Skylander in slot %1 zit!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Maker" @@ -8176,12 +8332,12 @@ msgstr "" "mist emulatie rekent.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Beheer NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Handmatige Texture Sampling" @@ -8193,7 +8349,7 @@ msgstr "Mapping" msgid "Mask ROM" msgstr "Mask ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Overeenkomst Gevonden" @@ -8210,16 +8366,16 @@ msgstr "Max buffergrootte gewijzigd naar %1" msgid "Maximum tilt angle." msgstr "Maximale kantel hoek." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Medium" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Geheugen" @@ -8231,7 +8387,7 @@ msgstr "Geheugenbreekpunt" msgid "Memory Card" msgstr "Geheugenkaart" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Geheugenkaart Beheer" @@ -8243,7 +8399,7 @@ msgstr "Geheugenkaartpad:" msgid "Memory Override" msgstr "Geheugen overschrijven" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Geheugenbreekpuntopties" @@ -8259,7 +8415,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8271,29 +8427,33 @@ 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:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Microfoon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" -msgstr "" +msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Overig" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Overige instellingen" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8322,12 +8482,16 @@ msgstr "" "- Titel: {3}\n" "- Hash: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " @@ -8337,24 +8501,25 @@ msgstr "" "

Vereist in de meeste gevallen een emulatie reset." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" -msgstr "" +msgstr "Wijzig Slot" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" -msgstr "" +msgstr "Wijzig Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Module gevonden: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" -msgstr "" +msgstr "Geld:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8366,16 +8531,16 @@ msgstr "Monoscopische Schaduwen" msgid "Monospaced Font" msgstr "Niet-proportionele (monospace) Lettertype" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" -msgstr "Bewegings-invoer" +msgstr "Bewegings-input" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Bewegings-simulatie" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -8416,6 +8581,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8425,10 +8594,10 @@ msgstr "Vermenigvuldiger" msgid "N&o to All" msgstr "N&ee op Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-controle" @@ -8437,8 +8606,8 @@ msgstr "NAND-controle" msgid "NKit Warning" msgstr "NKit-waarschuwing" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8447,7 +8616,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8470,25 +8639,25 @@ msgstr "" "

In geval van twijfel op 2.35 laten." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Naam" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Naam voor deze nieuwe tag:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Naam van de te verwijderen tag:" @@ -8497,7 +8666,7 @@ msgid "Name of your session shown in the server browser" msgstr "Naam van uw sessie zoals weergegeven in de server browser" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8562,7 +8731,7 @@ msgstr "" msgid "Network" msgstr "Netwerk" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Netwerk-dump-formaat:" @@ -8572,7 +8741,7 @@ msgstr "Nooit" #: Source/Core/DolphinQt/Updater.cpp:84 msgid "Never Auto-Update" -msgstr "Nooit automatisch bijwerken" +msgstr "Nooit Automatisch Updaten" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 @@ -8586,13 +8755,13 @@ msgstr "Nieuw Breekpunt" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:706 msgid "New File" -msgstr "" +msgstr "Nieuw Bestand" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:708 msgid "New File (%1)" -msgstr "" +msgstr "Nieuw Bestand (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Nieuwe Zoekopdracht" @@ -8600,7 +8769,7 @@ msgstr "Nieuwe Zoekopdracht" msgid "New Tag..." msgstr "Nieuwe Tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Nieuwe identiteit gegenereerd." @@ -8608,7 +8777,7 @@ msgstr "Nieuwe identiteit gegenereerd." msgid "New instruction:" msgstr "Nieuwe instructie:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Nieuwe tag" @@ -8617,7 +8786,7 @@ msgstr "Nieuwe tag" msgid "Next Game Profile" msgstr "Volgend Spel Profiel" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Volgende Overeenkomst" @@ -8631,9 +8800,9 @@ msgid "Nickname is too long." msgstr "Nickname is te lang" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" -msgstr "Bijnaam:" +msgstr "Nickname:" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:105 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:244 @@ -8645,13 +8814,13 @@ msgstr "Nee" msgid "No Adapter Detected" msgstr "Geen adapter gedetecteerd" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "Geen Uitlijning" #: Source/Core/Core/Config/MainSettings.h:17 msgid "No Audio Output" -msgstr "Geen Audio-uitvoer" +msgstr "Geen Audio-output" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:69 #: Source/Core/DolphinQt/ConvertDialog.cpp:217 @@ -8659,7 +8828,7 @@ msgstr "Geen Audio-uitvoer" msgid "No Compression" msgstr "Geen Compressie" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Geen Overeenkomst" @@ -8667,16 +8836,16 @@ msgstr "Geen Overeenkomst" msgid "No Save Data" msgstr "Geen Save Data" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" -msgstr "" - -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +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 msgid "No description available" msgstr "Geen omschrijving beschikbaar" @@ -8692,24 +8861,24 @@ msgstr "Geen extensie geselecteerd." msgid "No file loaded / recorded." msgstr "Geen bestand geladen / opgenomen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Er draait geen spel." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Er draait geen spel." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" -msgstr "" +msgstr "Geen graphics mod geselecteerd" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:59 #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:107 msgid "No input" -msgstr "" +msgstr "Geen input" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Er zijn geen problemen gedetecteerd." @@ -8721,10 +8890,6 @@ msgstr "Geen overeenkomend spel gevonden" msgid "No paths found in the M3U file \"{0}\"" msgstr "Geen mappen gevonden in het M3U-bestand \"{0}\"" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "Geen mogelijke functies meer. Reset." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Er zijn geen problemen gevonden" @@ -8739,11 +8904,11 @@ msgstr "" "is, maar omdat Wii spellen veel verificatie data bevatten betekend het dat " "er waarschijnlijk geen problemen zijn die emulatie beïnvloeden. " -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Geen profielen gevonden voor de spel-instelling '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Geen opname geladen." @@ -8752,7 +8917,7 @@ msgstr "Geen opname geladen." msgid "No save data found." msgstr "Geen save data gevonden." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Geen undo.dtm gevonden, het ongedaan maken van de state laden wordt " @@ -8761,11 +8926,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Geen" @@ -8810,8 +8975,8 @@ msgid "" "Note: motion input may require configuring alternate input sources before " "use." msgstr "" -"Waarschuwing: bewegingsinvoer vereist mogelijk het instellen van " -"alternatieve invoerbronnen voor gebruik." +"Waarschuwing: bewegingsinput vereist mogelijk het instellen van alternatieve " +"inputbronnen voor gebruik." #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:83 msgid "Notes:" @@ -8831,7 +8996,7 @@ msgid "Null" msgstr "Null" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -8866,10 +9031,58 @@ msgstr "Nunchuk Stick" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Object %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Object Bereik" @@ -8883,7 +9096,7 @@ msgstr "Oceanië" msgid "Off" msgstr "Uit" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Offset" @@ -8895,7 +9108,7 @@ msgstr "Aan" msgid "On Movement" msgstr "Bij Beweging" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -8905,7 +9118,22 @@ msgstr "" "voor het uitbreiden van punten en lijnen, selecteert de vertex shader voor " "de taak. Kan de prestatie beïnvloeden.

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online &Documentatie" @@ -8913,7 +9141,7 @@ msgstr "Online &Documentatie" msgid "Only Show Collection" msgstr "Alleen Collectie Tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8921,7 +9149,7 @@ msgstr "" "Alleen symbolen toevoegen die beginnen met:\n" "(Leeg voor alle symbolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8931,7 +9159,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Openen" @@ -8940,18 +9168,18 @@ msgstr "Openen" msgid "Open &Containing Folder" msgstr "&Bijbehorende map openen" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "&Gebruikersmap openen" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: 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:216 msgid "Open FIFO log" -msgstr "FIFO-logboek openen" +msgstr "Open FIFO Log" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -8965,7 +9193,7 @@ msgstr "Open Riivolution XML..." msgid "Open Wii &Save Folder" msgstr "Open Wii &Save Map" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Open dump map" @@ -8998,11 +9226,11 @@ msgid "Operators" msgstr "Operators" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opties" @@ -9015,13 +9243,36 @@ msgstr "Oranje" msgid "Orbital" msgstr "Orbitaal" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Overige" @@ -9034,7 +9285,7 @@ msgstr "Andere Partitie (%1)" msgid "Other State Hotkeys" msgstr "Overige State Sneltoetsen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Overige State Beheer" @@ -9044,26 +9295,26 @@ msgstr "Ander spel..." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:446 msgid "Output" -msgstr "" +msgstr "Output" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 msgid "Output Resampling" -msgstr "" +msgstr "Output Resampling" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:176 msgid "Output Resampling:" -msgstr "" +msgstr "Output Resampling:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Overschrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." -msgstr "O&pname Invoer Afspelen..." +msgstr "Input Opname Af&spelen..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9072,15 +9323,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG Compressie Level" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG Compressie Level:" @@ -9088,11 +9339,11 @@ msgstr "PNG Compressie Level:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG afbeeldingsbestand (*.png);; Alle bestanden (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC Grootte" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9105,11 +9356,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parameters" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Parseer als Hex" @@ -9160,11 +9411,15 @@ msgstr "Pad:" msgid "Paths" msgstr "Paden" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pauzeer aan het Einde van de Opname" @@ -9203,7 +9458,7 @@ msgstr "Top snelheid van buitenwaartse zwaai beweging." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Belichting" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Voer Online Systeemupdate Uit" @@ -9211,33 +9466,33 @@ msgstr "Voer Online Systeemupdate Uit" msgid "Perform System Update" msgstr "Voer Systeemupdate Uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: 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:75 +#: 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:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Prestatiestatistieken" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Fysieke" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Fysieke adresruimte" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Kies een debug-lettertype" @@ -9253,12 +9508,12 @@ msgstr "Stamp Omlaag" msgid "Pitch Up" msgstr "Stamp Omhoog" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Spelen" @@ -9270,7 +9525,7 @@ msgstr "Afspelen / Opnemen" msgid "Play Recording" msgstr "Speel Opname" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" @@ -9282,27 +9537,27 @@ msgstr "Terugspeel Opties" msgid "Player" msgstr "Speler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Speler Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Speler Een Vaardigheid Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Speler Een Vaardigheid Twee" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Tweede Speler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Speler Twee Vaardigheid Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Speler Twee Vaardigheid Twee" @@ -9311,9 +9566,10 @@ msgstr "Speler Twee Vaardigheid Twee" msgid "Players" msgstr "Spelers" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" -msgstr "" +msgstr "Speeltijd:" #. i18n: Please leave SyncOnSkipIdle and True untranslated. #. The user needs to enter these terms as-is in an INI file. @@ -9325,7 +9581,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:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9333,17 +9589,21 @@ msgstr "" "geheugengebieden." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Wijzen" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Poort %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "Port %1 ROM:" @@ -9352,7 +9612,7 @@ msgstr "Port %1 ROM:" msgid "Port:" msgstr "Poort:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Portal Slots" @@ -9374,11 +9634,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Post-Processing Shader Configuratie" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Prefetch Aangepaste Textures" @@ -9386,11 +9646,11 @@ msgstr "Prefetch Aangepaste Textures" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Vroegtijdig opname einde in PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Vroegtijdig opname einde in PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Vroegtijdig opname einde in PlayWiimote. {0} > {1}" @@ -9415,7 +9675,7 @@ msgstr "Druk Op Sync Knop" msgid "Pressure" msgstr "Druk" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9435,7 +9695,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Vorig Spel Profiel" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Vorige Overeenkomst" @@ -9446,7 +9706,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitief %1" @@ -9458,7 +9718,7 @@ msgstr "Privé" msgid "Private and Public" msgstr "Privé en Openbaar" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Probleem" @@ -9498,8 +9758,8 @@ msgstr "Programmateller" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Voortgang" @@ -9507,11 +9767,11 @@ msgstr "Voortgang" msgid "Public" msgstr "Openbaar" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Gamelijstcache opschonen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Zet IPL ROMs in Gebruiker/GC/." @@ -9531,7 +9791,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." @@ -9539,7 +9799,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Vraag" @@ -9560,19 +9820,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analoog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "GEREED" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO autodetectie" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "LOPEND" @@ -9585,23 +9845,27 @@ msgstr "RVZ GC/Wii schijfafbeeldingen (*.rvz)" msgid "Range" msgstr "Afstand" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Bereik Einde:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Bereik Start:" #: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 msgid "Rank %1" -msgstr "" +msgstr "Rang %1" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:409 msgid "Raw" +msgstr "Rauw" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Ver&vang instructie" @@ -9613,14 +9877,14 @@ msgstr "Lezen" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Lezen en schrijven" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Alleen lezen" @@ -9641,10 +9905,15 @@ msgstr "Echt Balance Board" msgid "Real Wii Remote" msgstr "Echte Wii-afstandsbediening" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9656,9 +9925,9 @@ msgstr "Opnemen" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 msgid "Record Inputs" -msgstr "Invoer Opnemen" +msgstr "Input Opnemen" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Opnemen" @@ -9700,7 +9969,7 @@ msgstr "" "

In geval van twijfel \"Geen\" selecteren." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org Status:" @@ -9708,14 +9977,14 @@ msgstr "Redump.org Status:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Verversen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Huidige waarden verversen" @@ -9723,12 +9992,12 @@ msgstr "Huidige waarden verversen" msgid "Refresh Game List" msgstr "Spellijst verversen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" "Verversen mislukt. Laat het spel een tijdje draaien en probeer het opnieuw." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Huidige waarden ververst." @@ -9737,8 +10006,8 @@ msgstr "Huidige waarden ververst." msgid "Refreshing..." msgstr "Verversen..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regio" @@ -9753,11 +10022,11 @@ msgstr "Registers" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:62 msgid "Relative Input" -msgstr "Relatieve Invoer" +msgstr "Relatieve Input" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:33 msgid "Relative Input Hold" -msgstr "Relatieve Invoer Houden" +msgstr "Relatieve Input Vasthouden" #: Source/Core/DolphinQt/Updater.cpp:85 msgid "Remind Me Later" @@ -9767,7 +10036,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Verwijder" @@ -9784,7 +10053,7 @@ msgstr "Verwijder Junk Data (Onomkeerbaar):" msgid "Remove Tag..." msgstr "Tag Verwijderen..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Tag verwijderen" @@ -9798,8 +10067,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Hernoem symbool" @@ -9807,11 +10076,11 @@ msgstr "Hernoem symbool" msgid "Render Window" msgstr "Render-venster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderen naar hoofdvenster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9829,23 +10098,22 @@ msgstr "Verzoek om Lid te Worden van Uw Partij" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reset" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Reset Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Reset Negeer Panic Handler" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Reset Resultaat" @@ -9873,6 +10141,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Resource Pack Beheer" @@ -9889,7 +10161,7 @@ msgstr "Herstarten Vereist" msgid "Restore Defaults" msgstr "Herstel Standaardinstellingen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Herstel instructie" @@ -9906,7 +10178,7 @@ msgstr "Terugkeer Snelheid" msgid "Revision" msgstr "Revisie" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revisie: %1" @@ -9965,7 +10237,7 @@ msgstr "Rol Rechts" msgid "Room ID" msgstr "Kamer ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Rotatie" @@ -9988,26 +10260,52 @@ msgstr "" "interne resolutie wordt gebruikt.

In geval van " "twijfel leeg laten." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Loop &Tot Hier" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Uitvoeren tot" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Uitvoeren tot (negeer breekpunten)" @@ -10023,19 +10321,19 @@ msgstr "Rusland" msgid "SD Card" msgstr "SD-Kaart" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD-Kaart Bestandsgrootte:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-Kaart Pad:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-Kaart-instellingen" @@ -10043,7 +10341,7 @@ msgstr "SD-Kaart-instellingen" msgid "SD Root:" msgstr "SD Root:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD Sync Map:" @@ -10056,7 +10354,7 @@ msgstr "SDR Beeldscherm Gamma Doel" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10064,11 +10362,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1 Digest" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL context" @@ -10078,11 +10376,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Code Op&slaan" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "S&la State Op" @@ -10095,7 +10393,6 @@ msgstr "Veilig" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10105,35 +10402,43 @@ msgstr "Opslaan" msgid "Save All" msgstr "Sla Alles op" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Export Opslaan" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 msgid "Save FIFO log" -msgstr "FIFO log Opslaan" +msgstr "Sla FIFO log op" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Bestand Opslaan in" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Spel Opslag" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Spel Save Bestanden (*.sav);;All Files (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Import Opslaan" @@ -10145,13 +10450,13 @@ msgstr "Sla Oudste State op" msgid "Save Preset" msgstr "Voorinstelling opslaan" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 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/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Save State" @@ -10195,23 +10500,23 @@ msgstr "Save State Slot 8" msgid "Save State Slot 9" msgstr "Save State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Save State naar Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Save State naar Oudste Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Save State naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Save State naar Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Sla Symbol Map Op &Als..." @@ -10219,7 +10524,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Save en Laad State" @@ -10231,11 +10536,11 @@ msgstr "Opslaan als voorinstelling..." msgid "Save as..." msgstr "Opslaan als..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" -msgstr "Gecombineerde uitvoerbestand opslaan als" +msgstr "Gecombineerde outputbestand opslaan als" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10245,15 +10550,15 @@ msgstr "" "maken van de huidige data voordat u het overschrijft.\n" "Nu overschrijven?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Save in de Zelfde Map als de ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Sla mapbestand op" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Sla signatuurbestand op" @@ -10261,7 +10566,7 @@ msgstr "Sla signatuurbestand op" msgid "Save to Selected Slot" msgstr "Opslaan naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Opslaan naar Slot %1 - %2" @@ -10275,7 +10580,7 @@ msgstr "" "Opgeslagen Wii-afstandsbediening koppelingen kunnen alleen gerest worden " "wanneer er een Wii spel draait." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Saves:" @@ -10287,26 +10592,26 @@ msgstr "Savestate opname {0} is corrupt, opname wordt gestopt..." msgid "Scaled EFB Copy" msgstr "Geschaalde EFB Kopie" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Scan gelukt." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Schermafdruk" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Zoeken" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Zoek Adres" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Zoek Huidig Object" @@ -10314,11 +10619,11 @@ msgstr "Zoek Huidig Object" msgid "Search Subfolders" msgstr "Zoeken in submappen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Zoek en Filter" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10326,7 +10631,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:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Zoek naar Instructie" @@ -10334,11 +10639,11 @@ msgstr "Zoek naar Instructie" msgid "Search games..." msgstr "Zoek Spellen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Zoek instructie" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Zoeken:" @@ -10358,7 +10663,7 @@ msgstr "Sectie die alle grafisch gerelateerde instellingen bevat." msgid "Section that contains most CPU and Hardware related settings." msgstr "Sectie die alle CPU en Hardware gerelateerde instellingen bevat." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Veiligheidsopties" @@ -10366,28 +10671,36 @@ msgstr "Veiligheidsopties" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Selecteer Dump Pad" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Selecteer Export Map" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Selecteer Figuur Bestand" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Selecteer GBA BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Selecteer GBA ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Selecteer GBA Saves Pad" @@ -10407,15 +10720,15 @@ msgstr "Selecteer Resource Pack Pad" msgid "Select Riivolution XML file" msgstr "Selecteer Riivolution XML bestand" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Selecteer Skylander Collectie" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Selecteer Skylander Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Selecteer Slot %1 - %2" @@ -10423,7 +10736,7 @@ msgstr "Selecteer Slot %1 - %2" msgid "Select State" msgstr "Selecteer State" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Selecteer State Slot" @@ -10482,15 +10795,15 @@ msgstr "Selecteer een Map" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Selecteer een Bestand" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10498,11 +10811,11 @@ 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:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Selecteer een SD-Kaartafbeelding" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Selecteer een bestand" @@ -10510,19 +10823,19 @@ msgstr "Selecteer een bestand" msgid "Select a game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Selecteer een titel om te installeren op de NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Selecteer e-Reader Kaarten" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Selecteer het RSO module adres:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Selecteer Opnamebestand om Af te Spelen" @@ -10530,12 +10843,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:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Selecteer het sleutelbestand (OTP/SEEPROM dump)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Selecteer het save bestand" @@ -10551,7 +10864,7 @@ msgstr "Selecteer waar u de geconverteerde afbeeldingen wilt opslaan" msgid "Selected Font" msgstr "Selecteer Font" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Geselecteerde controller profiel bestaat niet" @@ -10563,15 +10876,15 @@ msgstr "Geselecteerde controller profiel bestaat niet" msgid "Selected game doesn't exist in game list!" msgstr "Het geselecteerde spel bestaat niet in de spellijst!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Geselecteerde thread callstack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Geselecteerde thread context" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10579,7 +10892,7 @@ msgstr "" "Selecteert een hardware-adapter om te gebruiken.

" "%1 ondersteunt deze functie niet.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10587,6 +10900,25 @@ msgstr "" "Selecteert een hardware-adapter om te gebruiken.

In " "geval van twijfel de eerste selecteren." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10606,18 +10938,29 @@ msgstr "" "dat door sommige tv's wordt gebruikt.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10638,7 +10981,7 @@ msgstr "" msgid "Send" msgstr "Verzend" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensor Bar Positie:" @@ -10667,16 +11010,12 @@ msgstr "Server Poort" msgid "Server rejected traversal attempt" msgstr "Server heeft traversal poging geweigerd" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Stel &Waarde In" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Stel &blr in" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Stel PC In" @@ -10692,23 +11031,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Stel symbool in &eindadres" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Stel symbool in &grootte" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Stel symbool eindadres in" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Stel symboolgrootte (%1) in:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10718,11 +11057,11 @@ msgstr "" "PAL spellen.\n" "Werkt mogelijk niet voor alle spellen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Stelt de Wii-systeemtaal in." -#: 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." @@ -10730,7 +11069,7 @@ msgstr "" "Stelt de vertraging in milliseconden in. Hogere waarden kunnen audio gekraak " "verminderen. Alleen voor bepaalde backends." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10745,27 +11084,27 @@ msgstr "" msgid "Settings" msgstr "Instellingen" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMem: Kan setting.txt niet aanmaken" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Ernst" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Shadercompilatie" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Schudden" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:140 msgid "Sharp Bilinear" -msgstr "" +msgstr "Scherp Bilineair" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:232 msgid "Shinkansen" @@ -10775,16 +11114,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Snelheidspercentage tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" -msgstr "&Log tonen" +msgstr "Toon &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "&Werkbalk tonen" @@ -10792,53 +11131,53 @@ msgstr "&Werkbalk tonen" msgid "Show Active Title in Window Title" msgstr "Actieve game in venstertitel weergeven" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Alles tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Australië tonen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Huidig spel op Discord tonen" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Toon Eerst de Uitgeschakelde Codes" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL tonen" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: 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" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Frameteller tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Frametijden tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Frankrijk tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "GameCube tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Duitsland tonen" @@ -10850,23 +11189,23 @@ msgstr "Golfmodus-overlay tonen" msgid "Show Infinity Base" msgstr "Toon Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" -msgstr "Invoerweergave tonen" +msgstr "Inputweergave tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Italië tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "JPN tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Korea tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Vertragingsteller tonen" @@ -10874,19 +11213,19 @@ msgstr "Vertragingsteller tonen" msgid "Show Language:" msgstr "Taal tonen:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" -msgstr "Log&configuratie tonen" +msgstr "Toon Log &Configuratie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "NetPlay-berichten tonen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay-ping tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Nederland tonen" @@ -10894,32 +11233,36 @@ msgstr "Nederland tonen" msgid "Show On-Screen Display Messages" msgstr "On-screen-berichtgevingen tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC weergeven" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Prestatiegrafieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Platforms tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Regio's tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Heropnameteller tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Rusland tonen" @@ -10927,72 +11270,72 @@ msgstr "Rusland tonen" msgid "Show Skylanders Portal" msgstr "Toon Skylanders Portal" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Spanje tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Snelheidskleuren tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Statistieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Systeemklok tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Taiwan tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "VS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Onbekend tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "VBlank-tijden tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Wereld tonen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "In &geheugen weergeven" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "In Code Weergeven" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "In Geheugen Weergeven" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "In code tonen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "In geheugen weergeven" @@ -11000,11 +11343,11 @@ msgstr "In geheugen weergeven" msgid "Show in server browser" msgstr "Weergeef in server browser" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "Doel in &geheugen tonen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -11013,7 +11356,7 @@ msgstr "" "tijdens NetPlay.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11033,7 +11376,7 @@ msgstr "" "snelheid.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11043,7 +11386,7 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11053,7 +11396,7 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11063,7 +11406,7 @@ msgstr "" "de visuele vloeiendheid.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11081,7 +11424,13 @@ msgstr "" "Toont de maximum ping van de spelers tijdens NetPlay." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11093,34 +11442,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Naast Elkaar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" -msgstr " Houd Zijwaarts" +msgstr "Zijwaarts Vasthouden" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr " Schakel Zijwaarts" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wii-afstandsbediening Zijwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Signatuurdatabase" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Signed 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Signed 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Signed 8" @@ -11129,7 +11478,7 @@ msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Vereenvoudigd Chinees" @@ -11146,7 +11495,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." @@ -11154,11 +11503,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Overslaan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Tekenen Overslaan" @@ -11203,24 +11552,24 @@ msgstr "" "geval van twijfel geselecteerd laten.
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" -msgstr "" +msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Alle Bestanden (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Skylander Collectie Pad:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "Skylander niet gevonden in deze collectie. Nieuw bestand maken?" @@ -11228,10 +11577,6 @@ msgstr "Skylander niet gevonden in deze collectie. Nieuw bestand maken?" msgid "Skylanders Manager" msgstr "Skylanders Beheer" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "Skylanders map niet gevonden voor deze gebruiker. Nieuwe map maken?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11241,7 +11586,7 @@ msgstr "Schuifbalk" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Slot A:" @@ -11249,7 +11594,7 @@ msgstr "Slot A:" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Slot B:" @@ -11257,7 +11602,7 @@ msgstr "Slot B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Plaats de stick positie op de dichtstbijzijnde achthoekige as." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Socket table" @@ -11285,12 +11630,12 @@ msgstr "" "Sommige waarden die u heeft opgegeven zijn ongeldig.\n" "Controleer de gemarkeerde waarden." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Sorteer Alfabetisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Geluid:" @@ -11304,27 +11649,27 @@ msgstr "Spanje" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spaans" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Speaker Pan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Speaker Volume:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Gespecialiseerd (Standaard)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Specifiek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11355,15 +11700,15 @@ msgstr "Snelheid" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Stack eind" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Stack begin" @@ -11376,25 +11721,28 @@ msgstr "Standaardcontroller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Start &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Start Nieuwe Cheat Zoekopdracht" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" -msgstr "Start Invoer Op&name" +msgstr "Start Input &Opname" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Start Opname" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "In volledig scherm starten" @@ -11410,10 +11758,10 @@ msgstr "Start met Riivolution Patches..." msgid "Started game" msgstr "Gestart spel" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Staat" @@ -11423,7 +11771,7 @@ msgstr "Stuurwiel" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Stap" @@ -11435,13 +11783,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Stap Over" @@ -11457,7 +11805,7 @@ msgstr "Uitstappen timed out!" msgid "Step over in progress..." msgstr "Overstappen in voortgang..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Stap succesvol!" @@ -11466,7 +11814,7 @@ msgstr "Stap succesvol!" msgid "Stepping" msgstr "Stappen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11496,17 +11844,13 @@ msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stoppen" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" -msgstr "Afspelen/opnemen van invoer stoppen" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Opname stoppen" +msgstr "Afspelen/opnemen van input stoppen" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" @@ -11550,7 +11894,7 @@ msgstr "" "Texture)

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Uitrekken naar venster" @@ -11570,7 +11914,7 @@ msgstr "Strum" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 msgid "Style:" -msgstr "" +msgstr "Stijl:" #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:29 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:48 @@ -11585,8 +11929,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Geslaagd" @@ -11613,7 +11957,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:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Certificaten succesvol uitgepakt van NAND" @@ -11625,12 +11969,12 @@ msgstr "Bestand succesvol uitgepakt." msgid "Successfully extracted system data." msgstr "Systeemdata succesvol uitgepakt." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Save bestand succesvol geïmporteerd." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Titel succesvol geïnstalleerd op de NAND." @@ -11641,11 +11985,11 @@ msgstr "Titel succesvol verwijderd van de NAND." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Ondersteuning" @@ -11653,16 +11997,16 @@ msgstr "Ondersteuning" msgid "Supported file formats" msgstr "Ondersteunde bestandsformaten" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Onderbroken" @@ -11672,14 +12016,14 @@ msgstr "Wissel Ogen" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Swap Force" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" -msgstr "" +msgstr "Swapper" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 msgid "" @@ -11691,7 +12035,7 @@ msgstr "" "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Zwaaien" @@ -11705,39 +12049,21 @@ msgid "Switch to B" msgstr "Overschakelen naar B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbool" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Symbool (%1) eindadres:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"Symbol map niet gevonden.\n" -"\n" -"Als er geen bestaat, kunt u er een genereren vanuit de Menubalk:\n" -"Symbolen -> Genereer Symbolen Van ->\n" -"Adres | Signatuurdatabase | RSO Modules" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Symboolnaam:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symbolen" @@ -11765,7 +12091,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11786,24 +12112,24 @@ msgid "Synchronizing save data..." msgstr "Synchroniseren van save data..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systeemtaal:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 msgid "TAS Input" -msgstr "TAS-invoer" +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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS-gereedschap" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Tags" @@ -11813,7 +12139,7 @@ msgstr "Tags" msgid "Taiko Drum" msgstr "Taiko Drum" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Staart" @@ -11821,15 +12147,15 @@ msgstr "Staart" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Maak Screenshot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "Doeladresbereik is ongeldig." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11839,7 +12165,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Tech" @@ -11847,6 +12173,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11856,7 +12188,7 @@ msgstr "Textuurcache" msgid "Texture Cache Accuracy" msgstr "Nauwkeurigheid van textuurcache" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texture Dumping" @@ -11868,7 +12200,7 @@ msgstr "Textuurfiltering" msgid "Texture Filtering:" msgstr "Textuurfiltering:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Texture Formaat Overlay" @@ -11898,7 +12230,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "De H3 hashtabel voor de {0} partitie is onjuist." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "Het IPL bestand is geen bekende goede dump. (CRC32: {0:x})" @@ -11912,7 +12244,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11920,7 +12252,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "De NAND is gerepareerd." @@ -11934,11 +12266,11 @@ msgstr "" "verplaatst of kopieert, zal het Wii-systeemmenu niet meer starten en zal het " "ook weigeren om het te kopiëren of terug te zetten naar de NAND." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11965,7 +12297,7 @@ msgid "" "NetPlay with anyone who is using a good dump." msgstr "" "De data partitie is niet op zijn normale positie. Dit zal de geemuleerde " -"laadtijden beinvloeden. U kunt geen invoer opnames delen en niet NetPlay " +"laadtijden beinvloeden. U kunt geen input opnames delen en niet NetPlay " "gebruiken met iemand die een goede dump heeft." #: Source/Core/DiscIO/VolumeVerifier.cpp:614 @@ -11981,6 +12313,13 @@ msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" "De decryptie sleutels moeten bijgevoegd worden aan het NAND backupbestand." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12003,7 +12342,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 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 " @@ -12027,17 +12366,17 @@ msgstr "De geëmuleerde Wii-console is al up-to-date." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "Het ingevoerde MAC adres is ongeldig." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "De ingevoerde PID is ongeldig." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "De ingevoerde VID is ongeldig." @@ -12045,7 +12384,7 @@ msgstr "De ingevoerde VID is ongeldig." msgid "The expression contains a syntax error." msgstr "De uitdrukken bevat een syntax error." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12065,11 +12404,13 @@ msgstr "" "Bestand %1 bestaat al.\n" "Wilt u het vervangen?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" msgstr "" +"Het bestand dat aan dit bestand is gekoppeld, is gesloten! Heeft u het slot " +"leeggemaakt voordat u opsloeg?" #: Source/Core/AudioCommon/WaveFile.cpp:60 msgid "" @@ -12085,7 +12426,7 @@ msgstr "" "Het bestand {0} is al geopend. De bestandsheader zal niet worden " "weggeschreven." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12099,7 +12440,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:573 +#: 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 " @@ -12169,9 +12510,9 @@ msgstr "De hashes komen niet overeen!" msgid "The hashes match!" msgstr "De hashes komen overeen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -12187,15 +12528,17 @@ msgstr "" msgid "The install partition is missing." msgstr "De installatiepartitie ontbreekt." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" -msgstr "" +msgstr "De laatste keer dat het figuur op een portal is geplaatst." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" msgstr "" +"De laatste keer dat het figuur is gereset. Als het figuur nog nooit is " +"gereset, de eerste keer dat het figuur op een portal werd geplaatst." #: Source/Core/Core/HW/EXI/EXI.cpp:50 msgid "" @@ -12209,8 +12552,8 @@ msgstr "" "geplaatst). Om de opname correct te synchroniseren, dient u het " "geselecteerde apparaat te wijzigen in Geheugenkaart of GCI-map." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -12243,14 +12586,14 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "De gedecodeerde AR code bevat geen regels." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" "Hetzelfde bestand kan niet in meerdere slots worden gebruikt; het wordt al " "gebruikt door %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -12292,7 +12635,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Het opgegeven bestand \"{0}\" bestaat niet" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12309,30 +12652,33 @@ msgstr "De doelgeheugenkaart bevat al een bestand \"% 1\"." msgid "The ticket is not correctly signed." msgstr "Het ticket is niet correct ondertekend." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" -msgstr "" +msgstr "De totale tijd dat dit figuur gebruikt is binnen een spel in seconden" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." -msgstr "" +msgstr "De figuur-code voor dit figuur. Alleen beschikbaar voor echte figuren." #: Source/Core/DiscIO/VolumeVerifier.cpp:523 msgid "The type of a partition could not be read." msgstr "Het type van een partitie kon niet worden gelezen." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" +"Het type van deze Skylander heeft geen data die kunnen worden gewijzigd!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" -msgstr "" +msgstr "Het type van deze Skylander is onbekend!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" +"Het type van deze Skylander is onbekend, of kan op dit moment niet worden " +"gewijzigd!" #: Source/Core/DolphinQt/WiiUpdate.cpp:60 msgid "" @@ -12354,7 +12700,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12382,14 +12728,22 @@ msgstr "De {0} partitie is niet goed uitgelijnd." msgid "There are too many partitions in the first partition table." msgstr "Er zijn te veel partities in de eerste partitietabel." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" +"Er zijn niet-opgeslagen wijzigingen in \"%1\".\n" +"\n" +"Wilt u opslaan voordat u afsluit?" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Er is niks om ongedaan te maken!" @@ -12433,19 +12787,19 @@ msgstr "" "Deze Koreaanse titel gebruikt een IOS die meestal niet wordt gebruikt op " "Koreaanse consoles. Dit leidt waarschijnlijk tot ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" -msgstr "" +msgstr "Dit Skylander-type kan nog niet worden gewijzigd!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Dit USB apparaat staat al op de whitelist." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Deze WAD is niet opstartbaar." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Deze WAD is niet geldig." @@ -12486,7 +12840,7 @@ msgid "" "and use NetPlay with anyone who is using a good dump." msgstr "" "De schijfafbeelding heeft een ongebruikelijke grootte. Dit maakt geëmuleerde " -"laadtijden waarschijnlijk langer. U kunt waarschijnlijk geen invoer opnames " +"laadtijden waarschijnlijk langer. U kunt waarschijnlijk geen input opnames " "delen en NetPlay niet gebruiken met iemand die een goede dump heeft." #: Source/Core/DiscIO/VolumeVerifier.cpp:1013 @@ -12541,7 +12895,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:38 msgid "This feature is disabled in hardcore mode." -msgstr "" +msgstr "Deze functie is uitgeschakeld in hardcore modus." #: Source/Core/DiscIO/NANDImporter.cpp:116 msgid "This file does not contain a valid Wii filesystem." @@ -12596,6 +12950,10 @@ msgstr "" msgid "This is a good dump." msgstr "Dit is een goede dump." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Deze sessie heeft een wachtwoord nodig:" @@ -12612,13 +12970,13 @@ msgstr "" "\n" "In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Deze software moet niet worden gebruikt om spellen te spelen die u niet " "legaal bezit." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Deze titel kan niet worden opgestart." @@ -12631,7 +12989,7 @@ msgstr "Dit spel gebruikt een ongeldige IOS." msgid "This title is set to use an invalid common key." msgstr "Dit spel gebruikt een ongeldige gedeelde sleutel." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12643,7 +13001,7 @@ msgstr "" "\n" "DSPHLE: Onbekende ucode (CRC = {0:08x}) - AX wordt geforceerd." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12670,6 +13028,13 @@ msgstr "" "Deze waarde wordt vermenigvuldigd met de gekozen diepte waarde in de " "grafische instellingen." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12690,11 +13055,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Thread context" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Threads" @@ -12702,12 +13067,12 @@ msgstr "Threads" msgid "Threshold" msgstr "Drempelwaarde" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Kantelen" @@ -12716,17 +13081,17 @@ msgstr "Kantelen" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:49 msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -"Tijdsperiode van stabiele invoer om kalibratie te activeren. (nul om uit te " +"Tijdsperiode van stabiele input om kalibratie te activeren. (nul om uit te " "schakelen)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 msgid "Timed Out" msgstr "Timed Out" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titel" @@ -12740,7 +13105,7 @@ msgstr "Naar" msgid "To:" msgstr "Naar:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Volledig scherm omschakelen" @@ -12765,7 +13130,7 @@ msgid "Toggle Aspect Ratio" msgstr "Schakel Beeldverhouding Om" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Schakel Breekpunt Om" @@ -12817,15 +13182,19 @@ msgstr "Schakel XFB Kopieën Om" msgid "Toggle XFB Immediate Mode" msgstr "Schakel XFB Onmiddellijke Modus Om" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Tokeniseren is mislukt." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Toolbar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Boven" @@ -12833,9 +13202,8 @@ msgstr "Boven" msgid "Top-and-Bottom" msgstr "Boven en Beneden" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Totale Hits" @@ -12872,28 +13240,28 @@ msgstr "Totale reisafstand." msgid "Touch" msgstr "Aanraking" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" -msgstr "" +msgstr "Figuur-code:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinees (Traditioneel)" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" -msgstr "" +msgstr "Trap" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" -msgstr "" +msgstr "Trap Master" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -12932,26 +13300,26 @@ msgid "Triggers" msgstr "Trekkers" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" -msgstr "" +msgstr "Trofee" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Type" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Type gebaseerde Uitlijning" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Typische GameCube/Wii Adresruimte" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "ONBEKEND" @@ -12963,7 +13331,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB Apparaat Emulatie" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB Emulatie" @@ -12975,13 +13343,13 @@ msgstr "USB Emulatie Apparaat" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB Whitelist Fout" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -12992,7 +13360,7 @@ msgstr "" "low-end hardware.

In geval van twijfel deze modus " "selecteren." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13004,7 +13372,7 @@ msgstr "" "

Alleen aanbevolen als u stotteringen ondervindt " "met Hybride Ubershaders en u een krachtige GPU heeft." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -13018,7 +13386,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:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Kan RSO-module niet automatisch detecteren" @@ -13030,11 +13398,11 @@ msgstr "Kan geen contact maken met update server." msgid "Unable to create updater copy." msgstr "Kan geen updater kopie maken." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" -msgstr "" +msgstr "Kan Skylander niet wijzigen!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Niet in staat bestand te openen." @@ -13063,7 +13431,7 @@ msgstr "" "\n" "Wilt u deze regel negeren en verder gaan met verwerken?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Niet in staat bestand te lezen." @@ -13086,15 +13454,15 @@ msgstr "Ongecomprimeerde GC/Wii-afbeeldingen (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Ondood" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Laad State Ongedaan Maken" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Save State Ongedaan Maken" @@ -13115,11 +13483,11 @@ msgstr "" "van deze titel uit de NAND, zonder dat zijn save data wordt verwijderd. " "Doorgaan?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Verenigde Staten" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13130,12 +13498,13 @@ msgstr "Verenigde Staten" msgid "Unknown" msgstr "Onbekend" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Onbekend (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Onbekend DVD commando {0:08x} - fatale fout" @@ -13163,11 +13532,11 @@ msgstr "" "Onbekend SYNC_SAVE_DATA-bericht met id:{0} ontvangen van speler:{1} Speler " "wordt gekickt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" -msgstr "" +msgstr "Onbekend Skylander type!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Onbekende adresruimte" @@ -13175,7 +13544,7 @@ msgstr "Onbekende adresruimte" msgid "Unknown author" msgstr "Onbekende auteur" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Onbekend data type" @@ -13183,7 +13552,7 @@ msgstr "Onbekend data type" msgid "Unknown disc" msgstr "Onbekende disc" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Onbekende fout opgetreden." @@ -13205,16 +13574,18 @@ msgstr "" "Onbekend bericht ontvangen met id: {0} ontvangen van speler: {1} Speler " "wordt gekickt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Onbekend(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Onbekend(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Onbeperkt" @@ -13247,22 +13618,22 @@ msgid "Unpacking" msgstr "Uitpakken" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" -msgstr "" +msgstr "Niet-opgeslagen wijzigingen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Unsigned 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Unsigned 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Unsigned 8" @@ -13326,23 +13697,23 @@ msgstr "" "Titel %1 wordt bijgewerkt...\n" "Dit kan even duren." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" -msgstr "Houd Rechtop" +msgstr "Rechtop Vasthouden" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Schakel Rechtop" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wii-afstandsbediening Rechtop" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Instellingen voor rapportage van gebruiksstatistieken" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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" @@ -13354,15 +13725,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Gebruik Lossless Codec (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" -msgstr "" +msgstr "Gebruik Muis Gestuurd Wijzen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Gebruik PAL60 Modus (EuRGB60)" @@ -13370,7 +13741,7 @@ msgstr "Gebruik PAL60 Modus (EuRGB60)" msgid "Use Panic Handlers" msgstr "Gebruik Panic Handlers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13399,43 +13770,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "Gebruik één dieptebuffer voor beide ogen. Nodig voor een paar spellen." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "Gebruik geheugen mapper configuratie tijdens scan" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Gebruik fysiek adres" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Gebruik virtuele adressen waar mogelijk" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Gebruikersconfiguratie" @@ -13456,7 +13802,7 @@ msgid "" msgstr "" "Door de gebruiker gedefinieerde variabelen die bruikbaar zijn in de " "besturingsuitdrukking. U kunt ze gebruiken om waarden op te slaan of te " -"verkrijgen tussen invoer en uitvoer van dezelfde controller." +"verkrijgen tussen input en output van dezelfde controller." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 msgid "Username" @@ -13475,7 +13821,7 @@ msgstr "" "

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13485,7 +13831,7 @@ msgstr "" "zal er een render venster worden aangemaakt.

In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Gebruikt Qt %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1044 msgid "Using TTL %1 for probe packet" -msgstr "" +msgstr "Gebruik TTL %1 voor probe packet" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Meestal gebruikt voor licht objecten" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Meestal gebruikt voor normaal-matrices" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Meestal gebruikt voor positiematrices" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Meestal gebruikt voor texture-coördinatenmatrices" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Hulpprogramma" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Verticale synchronisatie" @@ -13535,11 +13881,11 @@ msgstr "Verticale synchronisatie" msgid "VBI Skip" msgstr "VBI overslaan" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Waarde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Waarde getraceerd naar huidige instructie." @@ -13547,19 +13893,19 @@ msgstr "Waarde getraceerd naar huidige instructie." msgid "Value:" msgstr "Waarde:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "Ingevoerde variant is ongeldig!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Variant:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" -msgstr "" +msgstr "Voertuig" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:36 msgid "Velocity" @@ -13573,16 +13919,16 @@ msgstr "Breedsprakigheid" msgid "Verify" msgstr "Verifieer" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verifieer Integriteit" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Controleer certificaten" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verifiëren" @@ -13596,7 +13942,7 @@ msgid "Vertex Rounding" msgstr "Vertex-afronding" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Verticale FOV" @@ -13610,12 +13956,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Bekijk &code" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Bekijk &geheugen" @@ -13623,14 +13969,14 @@ msgstr "Bekijk &geheugen" msgid "Virtual Notches" msgstr "Virtuele Inkepingen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Virtuele adresruimte" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" @@ -13650,33 +13996,33 @@ msgstr "Volume Omhoog" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD bestanden (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "WAD installatie mislukt: Kon Wii Shop Log bestand niet creëren." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WAD installatie mislukt: Kon titelimport niet voltooien." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "WAD installatie mislukt: Kon inhoud niet importeren {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "WAD installatie mislukt: Kon titelimport niet initialiseren (fout {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "WAD installatie mislukt: Het geselecteerde bestand is geen geldige WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "WACHTEN" @@ -13700,7 +14046,7 @@ msgstr "" "Waarschuwing: De bediening van Accelerometer en Gyroscoop is ontworpen om " "rechtstreeks te worden gekoppeld aan bewegingssensors. Het is niet bedoeld " "om te koppelen met traditionele knoppen, trekkers of sticks. Mogelijk moet u " -"alternatieve invoerbronnen configureren voordat u deze besturing kan " +"alternatieve inputbronnen configureren voordat u deze besturing kan " "gebruiken." #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:35 @@ -13713,7 +14059,7 @@ msgstr "" "Waarschuwing: Deze bediening is ontworpen om rechtstreeks te worden " "gekoppeld aan bewegingssensors. Het is niet bedoeld om te koppelen met " "traditionele knoppen, trekkers of sticks. Mogelijk moet u alternatieve " -"invoerbronnen configureren voordat u deze besturing kan gebruiken." +"inputbronnen configureren voordat u deze besturing kan gebruiken." #: Source/Core/Core/Config/MainSettings.h:23 msgid "WASAPI (Exclusive Mode)" @@ -13727,12 +14073,12 @@ msgstr "WFS-pad:" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA GC/Wii schijfafbeeldingen (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Wachten op de eerste scan.." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13750,7 +14096,7 @@ msgstr "" "shader-wachtrij de framerate kan verminderen.

In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13781,7 +14127,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Waarschuwing" @@ -13799,7 +14145,7 @@ msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." msgstr "" -"Waarschuwing: Analoge invoer kan willekeurig worden gereset naar " +"Waarschuwing: Analoge input kan willekeurig worden gereset naar " "controllerwaarden. In sommige gevallen kan dit worden opgelost door een dode " "zone toe te voegen." @@ -13818,7 +14164,7 @@ msgid "" "continuing, or load this state with read-only mode off." msgstr "" "Waarschuwing: U hebt een save geladen die zich na het einde van de huidige " -"opname bevindt. (byte {0} > {1}) (invoer {2} > {3}). U moet een andere save " +"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 @@ -13887,7 +14233,7 @@ msgstr "Watch" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Water" @@ -13904,7 +14250,7 @@ msgstr "Westers (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13916,7 +14262,7 @@ msgstr "" "Mipmapdetectie' is ingeschakeld in Verbeteringen." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13928,7 +14274,7 @@ msgstr "" "Mipmapdetectie' is ingeschakeld in Verbeteringen." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Whitelist van USB Passthrough Apparaten" @@ -13952,7 +14298,7 @@ msgstr "Wii-menu" msgid "Wii NAND Root:" msgstr "NAND-basismap van Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii-afstandsbediening" @@ -13960,7 +14306,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13978,7 +14324,7 @@ msgstr "Wii-afstandbedieningsknoppen" msgid "Wii Remote Gyroscope" msgstr "Gyroscoop van Wii-afstandbediening" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii-afstandsbedienings-instellingen" @@ -13988,17 +14334,17 @@ msgstr "Wii-afstandsbedieningen" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 msgid "Wii TAS Input %1 - Classic Controller" -msgstr "Wii-TAS-invoer %1 - Klassieke controller" +msgstr "Wii-TAS-input %1 - Klassieke controller" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 msgid "Wii TAS Input %1 - Wii Remote" -msgstr "Wii-TAS-invoer %1 - Wii-afstandsbediening" +msgstr "Wii-TAS-input %1 - Wii-afstandsbediening" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" -msgstr "Wii-TAS-invoer %1 - Wii-afstandsbediening + Nunchuk" +msgstr "Wii-TAS-input %1 - Wii-afstandsbediening + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii en Wii-afstandsbediening" @@ -14006,11 +14352,11 @@ msgstr "Wii en Wii-afstandsbediening" msgid "Wii data is not public yet" msgstr "Wii data is nog niet publiek" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii save bestanden (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools Signatuur MEGA Bestand" @@ -14022,11 +14368,23 @@ 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 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Venstergrootte" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Regelafbreking" @@ -14040,10 +14398,14 @@ msgstr "Wereld" msgid "Write" msgstr "Schrijven" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Alleen schrijven" @@ -14085,6 +14447,14 @@ msgstr "Verkeerde regio" msgid "Wrong revision" msgstr "Verkeerde revisie" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14093,11 +14463,11 @@ msgstr "Verkeerde revisie" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF register " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA Bestemmings Adres" @@ -14132,7 +14502,7 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja op &Alles" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14142,7 +14512,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:272 +#: 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 " @@ -14175,7 +14545,7 @@ msgstr "" "schijfafbeeldingen. Deze problemen zijn onder meer:\n" "• De geëmuleerde laadtijden zijn langer\n" "• U kunt NetPlay niet gebruiken met mensen met normale schijfkopieën\n" -"• Invoeropnamen zijn niet compatibel tussen NKit-schijfafbeeldingen en " +"• Input opnamen zijn niet compatibel tussen NKit-schijfafbeeldingen en " "normale schijfafbeeldingen\n" "• Savestates zijn niet compatibel tussen NKit-schijfafbeeldingen en normale " "schijfafbeeldingen\n" @@ -14242,6 +14612,9 @@ msgid "" "\n" "Do you want to save all and exit?" msgstr "" +"U heeft %1 niet-opgeslagen assembly-tabbladen openstaan\n" +"\n" +"Wilt u alles opslaan en afsluiten?" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229 msgid "You have to enter a name." @@ -14283,7 +14656,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:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14303,15 +14676,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 code niet ondersteund" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Zero code onbekend voor Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] en [%3, %4]" @@ -14319,11 +14696,11 @@ msgstr "[%1, %2] en [%3, %4]" msgid "^ Xor" msgstr "^ Exclusieve Of" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "uitgelijnd" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "elke waarde" @@ -14342,21 +14719,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll kan niet worden geladen." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "standaard" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "verbinding verbroken" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader Kaarten (*.raw);;Alle Bestanden (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14364,31 +14741,35 @@ msgstr "errno" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "is gelijk aan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "is meer dan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "is meer dan of gelijk aan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "is minder dan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "is minder dan of gelijk aan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "is niet gelijk aan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "laatste waarde" @@ -14398,7 +14779,7 @@ msgstr "laatste waarde" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14410,13 +14791,13 @@ msgstr "" msgid "none" msgstr "geen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "uit" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "aan" @@ -14433,16 +14814,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "deze waarde:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "niet-uitgelijnd" @@ -14457,11 +14842,11 @@ msgstr "niet-uitgelijnd" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{0} IPL gevonden in {1} map. Het is mogelijk dat de schijf niet herkend wordt" @@ -14500,7 +14885,7 @@ msgstr "| Of" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14512,8 +14897,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/pl.po b/Languages/po/pl.po index a45bd1801c9b..7040c6f6b0d4 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -83,8 +83,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -105,19 +105,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -138,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -177,6 +178,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 nie wspiera tej funkcji na twoim systemie." @@ -203,13 +209,13 @@ msgstr "%1 dołączył(a)" msgid "%1 has left" msgstr "%1 wyszedł" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -225,12 +231,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +253,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 "" @@ -255,26 +261,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "%1's wartość jest używana" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -312,20 +318,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "Nie można było uzyskać dostępu do %n adresów w emulowanej pamięci." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n adres(ów) został(o)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -335,23 +341,23 @@ msgstr "%n adres(ów) został(o) usunięty(ch)." msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&O programie" @@ -359,12 +365,12 @@ msgstr "&O programie" msgid "&Add Memory Breakpoint" msgstr "&Dodaj punkt przerwania pamięci" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Dodaj nowy kod..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Dodaj funkcję" @@ -372,27 +378,27 @@ msgstr "&Dodaj funkcję" msgid "&Add..." msgstr "&Dodaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Ustawienia &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Automatyczna aktualizacja:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Punkty przerwania" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -400,15 +406,15 @@ msgstr "" msgid "&Cancel" msgstr "&Anuluj" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Sprawdź aktualizacje..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "Wy&czyść Symbole" @@ -416,19 +422,24 @@ msgstr "Wy&czyść Symbole" msgid "&Clone..." msgstr "&Klonuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Ustawienia &kontrolerów" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Kopiuj adres" @@ -436,7 +447,7 @@ msgstr "&Kopiuj adres" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Usuń" @@ -453,9 +464,9 @@ msgstr "&Usuń obejrzenie" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Edytuj kod..." @@ -463,23 +474,23 @@ msgstr "&Edytuj kod..." msgid "&Edit..." msgstr "&Edytuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulacja" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Eksportuj zapisaną grę..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Eksportuj Stan..." @@ -487,55 +498,53 @@ msgstr "&Eksportuj Stan..." msgid "&Export as .gci..." msgstr "&Eksportuj jako .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Plik" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Czcionka..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "Wyprzedzanie &klatek" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Generuj Symbole Z" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&Repozytorium GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Ustawienia &graficzne" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "Po&moc" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Ustawienia &skrótów klawiaturowych" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Importuj Zapisaną grę..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importuj Stan..." @@ -543,19 +552,19 @@ msgstr "&Importuj Stan..." msgid "&Import..." msgstr "&Importuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -563,15 +572,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Język:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Wczytaj stan" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -581,23 +594,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "Pa&mięć" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Film" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Wycisz" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Sieć" @@ -606,23 +619,23 @@ msgid "&No" msgstr "&Nie" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Otwórz..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opcje" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "W&strzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Graj" @@ -630,15 +643,15 @@ msgstr "&Graj" msgid "&Properties" msgstr "&Właściwości" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Tryb tylko do odczytu" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Odśwież listę" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Rejestry" @@ -646,41 +659,45 @@ msgstr "&Rejestry" msgid "&Remove" msgstr "&Usuń" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Usuń kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "Z&resetuj" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "Limit &szybkości:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Zatrzymaj" @@ -688,15 +705,19 @@ msgstr "&Zatrzymaj" msgid "&Theme:" msgstr "&Motyw:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Wątków" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Narzędzia" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -706,17 +727,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Obejrz" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Strona internetowa" @@ -728,11 +749,11 @@ msgstr "Wi&ki" msgid "&Yes" msgstr "&Tak" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -748,7 +769,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -756,7 +777,7 @@ msgstr "" msgid "(off)" msgstr "(wyłączony)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -776,15 +797,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -795,12 +816,12 @@ msgstr "..." msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -812,7 +833,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -820,11 +841,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bajtów" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -836,17 +857,17 @@ msgstr "" msgid "16-bit" msgstr "16-bitowa" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -858,11 +879,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -874,7 +895,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -886,25 +907,25 @@ msgstr "" msgid "32-bit" msgstr "32-bitowa" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -918,11 +939,11 @@ msgstr "Głębia 3D" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 Bajty" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -930,7 +951,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -946,7 +967,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -958,22 +979,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -981,11 +1002,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 Bajtów" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -997,13 +1018,13 @@ msgstr "" msgid "8-bit" msgstr "8-bitowa" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -1019,7 +1040,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1031,13 +1052,13 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Jeśli nie jesteś pewien, pozostaw to pole niezaznaczone." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1070,12 +1091,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Sesja NetPlay jest już rozpoczęta!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1085,7 +1106,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Dysk już jest gotowy do włożenia." @@ -1095,12 +1116,12 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1118,6 +1139,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1139,7 +1164,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1148,8 +1173,8 @@ msgstr "" msgid "AR Codes" msgstr "Kody AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1163,7 +1188,7 @@ msgid "About Dolphin" msgstr "O programie Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1182,7 +1207,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1268,19 +1293,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1288,7 +1313,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter wykryty" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1298,7 +1323,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Dodaj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1327,51 +1352,48 @@ msgstr "Dodaj punkt przerwania pamięci" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Dodaj do &oglądania" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Dodaj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adres" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1443,12 +1465,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Zaawansowane" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" @@ -1463,15 +1485,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1481,16 +1503,16 @@ msgstr "Afryka" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1504,11 +1526,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1516,7 +1538,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1525,7 +1547,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1534,8 +1556,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Wszystkie stany zapisu (*.sav *.s##);; wszystkie pliki (*)" @@ -1547,7 +1569,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1559,15 +1581,15 @@ msgstr "Kody wszystkich graczy zsynchronizowane." msgid "All players' saves synchronized." msgstr "Zapisy wszystkich graczy zsynchronizowane." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Zezwalaj na niedopasowane ustawienia regionalne" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1595,7 +1617,7 @@ msgstr "" msgid "Always Connected" msgstr "Zawsze połączony" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1633,15 +1655,15 @@ msgstr "Antyaliasing:" msgid "Any Region" msgstr "Jakikolwiek region" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1659,7 +1681,7 @@ msgstr "Data Apploadera:" msgid "Apply" msgstr "Zastosuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1691,12 +1713,16 @@ msgstr "Czy jesteś pewien?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Proporcje obrazu:" @@ -1704,7 +1730,7 @@ msgstr "Proporcje obrazu:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1712,7 +1738,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1729,7 +1755,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1737,11 +1763,11 @@ msgstr "" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Silnik audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Ustawienia rozciągania dźwięku" @@ -1753,12 +1779,12 @@ msgstr "Australia" msgid "Author" msgstr "Twórca" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autorzy" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatyczne" @@ -1766,11 +1792,7 @@ msgstr "Automatyczne" msgid "Auto (Multiple of 640x528)" msgstr "Automatyczna (wielokrotność 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Ustawienia automatycznej aktualizacji" @@ -1782,7 +1804,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Automatycznie dopasuj rozmiar okna" @@ -1790,32 +1812,32 @@ msgstr "Automatycznie dopasuj rozmiar okna" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Pomocnicza" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1823,38 +1845,42 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "Nieprawidłowy BAT. Dolphin teraz zakończy działanie" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Rejestr BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Silnik:" @@ -1870,13 +1896,13 @@ msgstr "Wejście w tle" msgid "Backward" msgstr "W tył" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1884,20 +1910,20 @@ msgstr "" msgid "Bad dump" msgstr "Zły dump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Baner" @@ -1917,15 +1943,15 @@ msgstr "Wajcha" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Podstawowe" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Ustawienia podstawowe" @@ -1933,15 +1959,15 @@ msgstr "Ustawienia podstawowe" msgid "Bass" msgstr "Bas" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Bateria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (raz w miesiącu)" @@ -1965,31 +1991,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1998,7 +2026,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -2025,32 +2053,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Pełny ekran bez ramek" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Dół" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2088,11 +2227,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2102,11 +2241,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2138,7 +2277,7 @@ msgstr "Przycisk" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2154,7 +2293,7 @@ msgstr "Przycisk" msgid "Buttons" msgstr "Przyciski" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2164,11 +2303,11 @@ msgstr "" msgid "C Stick" msgstr "C Gałka" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Rejestr CP" @@ -2180,7 +2319,7 @@ msgstr "" msgid "CPU Options" msgstr "Opcje CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2188,14 +2327,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Buforowany Interpreter (wolniejszy)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2207,11 +2346,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2219,19 +2358,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2240,65 +2379,77 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2306,19 +2457,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2336,7 +2489,7 @@ msgstr "Środek" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2344,7 +2497,7 @@ msgstr "" msgid "Change &Disc" msgstr "Zmień &dysk" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Zmień &dysk..." @@ -2352,7 +2505,7 @@ msgstr "Zmień &dysk..." msgid "Change Disc" msgstr "Zmień dysk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Zmieniaj dyski automatycznie" @@ -2360,7 +2513,7 @@ msgstr "Zmieniaj dyski automatycznie" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2388,7 +2541,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2400,15 +2553,15 @@ msgstr "Rozmówki" msgid "Cheat Code Editor" msgstr "Edytor kodów cheatowania" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Szukaj cheatów" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Menadżer cheatów" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2416,7 +2569,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Sprawdź aktualizacje" @@ -2434,27 +2587,27 @@ msgstr "Suma kontrolna" msgid "China" msgstr "Chiny" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Wybierz plik do otwarcia" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: 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:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2481,15 +2634,19 @@ msgstr "Kontroler Klasyczny" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Wyczyść" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Wyczyść pamięć podręczną" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2497,7 +2654,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Sklonuj i &edytuj kod..." @@ -2506,36 +2663,20 @@ msgstr "Sklonuj i &edytuj kod..." msgid "Close" msgstr "Zamknij" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ko&nfiguracja" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2562,7 +2703,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2589,7 +2734,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2597,9 +2742,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "Kompilowanie shaderów" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2612,10 +2757,16 @@ msgstr "Poziom kompresji:" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2688,7 +2839,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Konfiguracja" @@ -2721,13 +2872,13 @@ msgstr "Skonfiguruj wyjście" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Potwierdź" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2735,7 +2886,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Potwierdź przy zatrzymaniu" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2746,15 +2897,15 @@ msgstr "Potwierdzenie" msgid "Connect" msgstr "Połącz" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Podłącz Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Podłącz klawiaturę USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2774,7 +2925,7 @@ msgstr "Połącz Wiilot 3" msgid "Connect Wii Remote 4" msgstr "Połącz Wiilot 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Połącz Wiiloty" @@ -2815,7 +2966,7 @@ msgstr "" msgid "Control Stick" msgstr "Gałka sterująca" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Profil kontrolera" @@ -2839,7 +2990,7 @@ msgstr "Profil kontrolera 4" msgid "Controller Settings" msgstr "Ustawienia kontrolera" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Kontrolery" @@ -2902,8 +3053,8 @@ msgstr "" msgid "Convergence:" msgstr "Konwergencja:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2911,9 +3062,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2921,9 +3072,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2943,8 +3094,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2980,15 +3131,15 @@ msgstr "" msgid "Copy" msgstr "Kopiuj" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopiuj &funkcję" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Kopiuj &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Kopiuj adres" @@ -2996,19 +3147,19 @@ msgstr "Kopiuj adres" msgid "Copy Failed" msgstr "Kopiowanie nie powiodło się" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Kopiuj Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -3026,6 +3177,11 @@ msgstr "" msgid "Core" msgstr "Rdzeń" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3035,7 +3191,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Koszt" @@ -3112,7 +3268,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3149,13 +3305,13 @@ msgstr "" msgid "Country:" msgstr "Kraj:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3164,15 +3320,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3181,17 +3333,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Twórca:" @@ -3199,11 +3342,11 @@ msgstr "Twórca:" msgid "Critical" msgstr "Krytyczny" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Przycinanie obrazu" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3215,26 +3358,26 @@ msgstr "" msgid "Crossfade" msgstr "Suwak" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Aktualny region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3242,27 +3385,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3274,13 +3421,13 @@ msgstr "Opcje dostosowanego RTC" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3305,7 +3452,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" @@ -3313,15 +3460,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 "" @@ -3343,7 +3490,7 @@ msgstr "Mata do tańczenia" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3359,7 +3506,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Typ danych" @@ -3392,8 +3539,8 @@ msgstr "Dead Zone" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Debugowanie" @@ -3402,7 +3549,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 "" @@ -3449,7 +3596,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 "" @@ -3461,11 +3608,11 @@ msgstr "Domyślna czcionka" msgid "Default ISO:" msgstr "Domyślne ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3473,7 +3620,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3513,26 +3660,53 @@ msgstr "" msgid "Depth:" msgstr "Głębia:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Opis:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3540,7 +3714,7 @@ msgstr "" msgid "Detect" msgstr "Wykryj" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3548,7 +3722,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministyczna dwurdzeniowość:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Deweloperska (wiele razy w ciągu dnia)" @@ -3557,7 +3731,7 @@ msgid "Device" msgstr "Urządzenie" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "PID urządzenia (np. 0305)" @@ -3566,11 +3740,11 @@ msgid "Device Settings" msgstr "Ustawienia urządzenia" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "" @@ -3578,11 +3752,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3594,12 +3764,12 @@ msgstr "Bezpośrednie połączenie" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3611,7 +3781,7 @@ msgstr "Wyłącz prostokąt ograniczający" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3619,11 +3789,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Wyłącz limit szybkości emulacji" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3631,11 +3801,11 @@ msgstr "" msgid "Disable Fog" msgstr "Wyłącz mgłę" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3650,7 +3820,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3999,15 +4165,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holenderski" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Wyjście" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4033,7 +4199,7 @@ msgstr "Wczesne aktualizacje pamięci" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4046,7 +4212,7 @@ msgstr "Azja Wschodnia" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4062,15 +4228,15 @@ msgstr "Efekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4080,7 +4246,7 @@ msgstr "Wysuń dysk" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4088,11 +4254,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Wbudowany bufor klatki (Embedded Frame Buffer - EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Pusty" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Wątek emulacji jest już uruchomiony" @@ -4100,11 +4266,11 @@ msgstr "Wątek emulacji jest już uruchomiony" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4118,7 +4284,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4138,28 +4304,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Szybkość emulacji" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Włącz weryfikację warstw API" @@ -4171,11 +4325,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: 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" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Włącz cheaty" @@ -4195,7 +4349,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Włącz dwa rdzenie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Włącz dwa rdzenie (przyspieszenie)" @@ -4215,7 +4369,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Włącz FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4241,6 +4395,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4254,7 +4412,7 @@ msgstr "Włącz MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Włącz skanowanie progresywne" @@ -4267,11 +4425,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Włącz wygaszacz ekranu" @@ -4283,15 +4441,15 @@ msgstr "Włącz dane głosu" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Włącz raportowanie statystyk użytkowania" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Włącz przedstawienie szkieletowe" @@ -4361,7 +4519,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4396,7 +4554,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4404,7 +4562,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4421,7 +4579,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 "" @@ -4449,7 +4607,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4457,7 +4615,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4465,7 +4623,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4490,7 +4648,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Angielski" @@ -4499,7 +4657,7 @@ msgstr "Angielski" msgid "Enhancements" msgstr "Ulepszenia" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4521,11 +4679,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4534,8 +4698,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4546,45 +4710,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4594,16 +4764,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Błąd" @@ -4620,9 +4790,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4635,7 +4805,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4701,7 +4871,7 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4709,7 +4879,7 @@ msgstr "" "Błąd: Próba uzyskania dostępu do czcionek Shift JIS, choć nie są one " "wczytane. Gry mogą nie pokazywać czcionek poprawnie lub zawieszać się." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4730,40 +4900,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4771,7 +4913,7 @@ msgstr "" msgid "Exit" msgstr "Wyjdź" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4779,7 +4921,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4791,15 +4933,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4807,11 +4949,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Eksportuj wszystkie zapisy Wii" @@ -4826,7 +4968,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksportuj nagranie" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Eksportuj nagranie..." @@ -4854,14 +4996,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Rozszerzenie" @@ -4882,7 +5024,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Zewnętrzny bufor klatki (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Wypakuj certyfikaty z NAND" @@ -4915,12 +5057,12 @@ msgid "Extracting Directory..." msgstr "Wypakowywanie folderu..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Odtwarzacz FIFO" @@ -4938,7 +5080,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4946,12 +5088,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4979,19 +5121,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -5011,15 +5154,15 @@ msgstr "Nie udało się usunąć wybranego pliku." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Nie udało się pobrać kodów." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -5032,7 +5175,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5055,33 +5198,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5092,7 +5231,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5101,11 +5240,11 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5113,8 +5252,8 @@ msgstr "" "Nasłuch na porcie %1 zakończony niepowodzeniem. Czy jest uruchomiony jakiś " "inny serwer NetPlay?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5126,19 +5265,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5148,13 +5289,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Nie udało się otworzyć '%1'" @@ -5162,6 +5311,10 @@ msgstr "Nie udało się otworzyć '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5188,28 +5341,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5229,7 +5386,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5251,31 +5408,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5309,31 +5469,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Nie udało się zapisać log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5384,7 +5544,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5392,11 +5552,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5409,7 +5569,7 @@ msgstr "Szybki" msgid "Fast Depth Calculation" msgstr "Szybkie obliczanie głębi" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5420,11 +5580,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5432,9 +5592,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5446,20 +5606,20 @@ msgstr "" msgid "File Info" msgstr "Informacje o pliku" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nazwa pliku" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Rozmiar pliku" @@ -5467,7 +5627,7 @@ msgstr "Rozmiar pliku" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Plik nie zawierał kodów." @@ -5501,15 +5661,15 @@ msgstr "System plików" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5521,7 +5681,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5537,31 +5697,32 @@ msgstr "Napraw sumy kontrolne" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flagi" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5571,13 +5732,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page
." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5585,7 +5746,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" @@ -5617,11 +5778,11 @@ msgstr "Wymuszaj nasłuch na porcie:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5658,17 +5819,17 @@ msgstr "W przód" msgid "Forward port (UPnP)" msgstr "Przekieruj port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5689,7 +5850,7 @@ msgstr "Zwiększ szybkość wyprzedzania klatek" msgid "Frame Advance Reset Speed" msgstr "Zresetuj szybkość wyprzedzania klatek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Zrzucanie klatek" @@ -5697,7 +5858,7 @@ msgstr "Zrzucanie klatek" msgid "Frame Range" msgstr "Zasięg klatki" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5721,7 +5882,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5752,7 +5913,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francuski" @@ -5776,7 +5937,7 @@ msgstr "Z" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Pełny ekran" @@ -5808,7 +5969,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5924,26 +6085,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartridże GBA (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5971,8 +6132,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID gry" @@ -6032,11 +6193,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Kontroler GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Kontroler GameCube w porcie %1" @@ -6044,11 +6205,11 @@ msgstr "Kontroler GameCube w porcie %1" msgid "GameCube Controllers" msgstr "Kontrolery GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Klawiatura GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Klawiatura GameCube w porcie %1" @@ -6061,11 +6222,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6093,7 +6254,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kody Gecko" @@ -6103,35 +6264,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Główne" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Ogóły i opcje" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Generuj nową tożsamość" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Niemiecki" @@ -6143,18 +6304,18 @@ msgstr "Niemcy" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6167,8 +6328,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6207,7 +6368,7 @@ msgstr "Zielony lewo" msgid "Green Right" msgstr "Zielony prawo" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Widok kafelków" @@ -6216,7 +6377,7 @@ msgstr "Widok kafelków" msgid "Guitar" msgstr "Gitara" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6244,36 +6405,35 @@ msgstr "" msgid "Hacks" msgstr "Hacki" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6286,7 +6446,11 @@ msgstr "Heksadecymalne" msgid "Hide" msgstr "Ukryj" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6302,12 +6466,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6316,14 +6480,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6340,7 +6498,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6364,16 +6522,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Ustawienia skrótów klawiaturowych" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Skróty klawiaturowe" @@ -6382,7 +6540,7 @@ msgstr "Skróty klawiaturowe" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6396,16 +6554,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6440,7 +6598,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Czułość IR" @@ -6473,11 +6631,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Generacja tożsamości" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6532,11 +6690,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignoruj zmiany formatu" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6560,7 +6722,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Natychmiastowo obecny XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6569,7 +6731,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6584,15 +6746,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importuj zapis Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6603,15 +6765,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6620,27 +6773,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6685,15 +6838,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6713,8 +6867,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informacja" @@ -6728,10 +6882,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Wejście" @@ -6745,20 +6899,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Włóż kartę SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6772,7 +6932,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Zainstaluj WAD..." @@ -6780,11 +6940,13 @@ msgstr "Zainstaluj WAD..." msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6793,7 +6955,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6802,7 +6964,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6819,19 +6981,19 @@ msgstr "" msgid "Interface" msgstr "Interfejs" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6844,19 +7006,19 @@ msgstr "Wewnętrzny błąd LZO - kompresja nie powiodła się" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6871,7 +7033,7 @@ msgstr "Rozdzielczość wewnętrzna" msgid "Internal Resolution:" msgstr "Rozdzielczość wewnętrzna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6879,11 +7041,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (najwolniejszy)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6895,7 +7057,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6904,11 +7066,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6937,7 +7099,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6949,21 +7111,21 @@ msgstr "" msgid "Invalid recording file" msgstr "Newłaściwy plik nagrania" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Niewłaściwy parametr przeszukiwania (nie wybrano obiektu)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Niewłaściwy łańcuch przeszukiwania (wspierane są tylko równe długości " "łańcucha)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6973,7 +7135,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Włoski" @@ -6982,63 +7144,63 @@ msgid "Italy" msgstr "Włochy" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -7050,27 +7212,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japonia" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japoński" @@ -7081,13 +7247,13 @@ msgstr "Japoński" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7101,7 +7267,7 @@ msgstr "Trzymaj okno zawsze na wierzchu" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7122,7 +7288,7 @@ msgstr "" msgid "Keys" msgstr "Klawisze" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7130,12 +7296,12 @@ msgstr "" msgid "Kick Player" msgstr "Wyrzuć gracza" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreański" @@ -7146,7 +7312,7 @@ msgstr "Koreański" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7156,7 +7322,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7164,35 +7330,37 @@ msgstr "" msgid "Label" msgstr "Etykieta" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7262,13 +7430,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licencja" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7282,7 +7450,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7290,11 +7458,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Pokaż kolumny" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Widok listy" @@ -7305,29 +7473,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Wczytaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Wczytuj dostosowane tekstury" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7348,7 +7523,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7437,19 +7612,19 @@ msgstr "Wczytaj stan Slot 8" msgid "Load State Slot 9" msgstr "Wczytaj stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Wczytaj stan z pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Wczytaj stan z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Wczytaj stan ze slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7461,16 +7636,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Wczytaj z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Wczytaj ze slotu Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Wczytaj plik map" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7478,18 +7653,18 @@ msgstr "" msgid "Load..." msgstr "Wczytaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7509,7 +7684,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7521,7 +7696,7 @@ msgstr "Konfiguracja logu" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7529,7 +7704,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Loguj czas renderowania do pliku" @@ -7545,7 +7720,7 @@ msgstr "Logger Outputs" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7560,16 +7735,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7577,7 +7752,7 @@ msgstr "" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7587,7 +7762,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7595,37 +7770,37 @@ msgstr "" msgid "Main Stick" msgstr "Główna gałka" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Producent" @@ -7642,12 +7817,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7659,7 +7834,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Trafienie znalezione" @@ -7676,16 +7851,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Umiarkowany" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Pamięć" @@ -7697,7 +7872,7 @@ msgstr "" msgid "Memory Card" msgstr "Karta pamięci" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7709,7 +7884,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7725,7 +7900,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7733,29 +7908,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Różne" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Ustawienia różne" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7775,36 +7954,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Zmiennik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7816,16 +8000,16 @@ msgstr "Monoskopowe cienie" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7862,6 +8046,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7871,10 +8059,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7883,8 +8071,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -7893,7 +8081,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7910,25 +8098,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7937,7 +8125,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7994,7 +8182,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -8024,7 +8212,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -8032,7 +8220,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Nowa tożsamość została wygenerowana." @@ -8040,7 +8228,7 @@ msgstr "Nowa tożsamość została wygenerowana." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -8049,7 +8237,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8063,7 +8251,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Pseudonim:" @@ -8077,7 +8265,7 @@ msgstr "Nie" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8091,7 +8279,7 @@ msgstr "Bez wyjścia audio" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Brak trafień" @@ -8099,16 +8287,16 @@ msgstr "Brak trafień" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Brak opisu" @@ -8124,15 +8312,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8141,7 +8329,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Nie wykryto żadnych problemów" @@ -8153,10 +8341,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Nie znaleziono żadnych problemów." @@ -8168,11 +8352,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8181,18 +8365,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Brak" @@ -8252,7 +8436,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8287,10 +8471,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Zasięg objektu" @@ -8304,7 +8536,7 @@ msgstr "Oceania" msgid "Off" msgstr "Wyłączone" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8316,14 +8548,29 @@ msgstr "Włączone" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Dokumentacja online" @@ -8331,13 +8578,13 @@ msgstr "&Dokumentacja online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8347,7 +8594,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Otwórz" @@ -8356,11 +8603,11 @@ msgstr "Otwórz" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8381,7 +8628,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8414,11 +8661,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opcje" @@ -8431,13 +8678,36 @@ msgstr "Pomarańczowy" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Pozostałe" @@ -8450,7 +8720,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Inne skróty klawiaturowe stanów" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Inne zarządzanie stanami" @@ -8470,16 +8740,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Odtwórz nagranie wejścia..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8488,15 +8758,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8504,11 +8774,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "Plik graficzny PNG (*.png);; All Files (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Rozmiar PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8521,11 +8791,11 @@ msgstr "Pad" msgid "Pads" msgstr "Pady" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8576,11 +8846,15 @@ msgstr "" msgid "Paths" msgstr "Ścieżki" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Wstrzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Wstrzymaj na końcu filmu" @@ -8619,7 +8893,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Oświetlenie na piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8627,33 +8901,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8669,12 +8943,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platforma" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Graj" @@ -8686,7 +8960,7 @@ msgstr "" msgid "Play Recording" msgstr "Odtwórz nagranie" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8698,27 +8972,27 @@ msgstr "Opcje odtwarzania" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8727,7 +9001,8 @@ msgstr "" msgid "Players" msgstr "Gracze" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8739,23 +9014,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Port %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8764,7 +9043,7 @@ msgstr "" msgid "Port:" msgstr "Port:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8785,11 +9064,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Wstępnie pobieraj dostosowane tekstury" @@ -8797,11 +9076,11 @@ msgstr "Wstępnie pobieraj dostosowane tekstury" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8826,7 +9105,7 @@ msgstr "Naciśnij przycisk Sync" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8841,7 +9120,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8852,7 +9131,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8864,7 +9143,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8898,8 +9177,8 @@ msgstr "Licznik programu" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8907,11 +9186,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8931,14 +9210,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Pytanie" @@ -8959,19 +9238,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8984,11 +9263,11 @@ msgstr "" msgid "Range" msgstr "Zasięg" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -9000,7 +9279,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -9012,14 +9295,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Odczyt i zapis" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -9040,10 +9323,15 @@ msgstr "Prawdziwy Balance Board" msgid "Real Wii Remote" msgstr "Prawdziwy Wiilot" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9057,7 +9345,7 @@ msgstr "Nagranie" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9092,7 +9380,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9100,14 +9388,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Odśwież" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9115,11 +9403,11 @@ msgstr "" msgid "Refresh Game List" msgstr "Odśwież listę gier" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9128,8 +9416,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9158,7 +9446,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Usuń" @@ -9175,7 +9463,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9186,8 +9474,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9195,11 +9483,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9215,23 +9503,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Zresetuj" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9259,6 +9546,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Zresetuj wszystkie zapisane sparowania Wiilotów" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9275,7 +9566,7 @@ msgstr "Wymagane ponowne uruchomienie" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9292,7 +9583,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9351,7 +9642,7 @@ msgstr "" msgid "Room ID" msgstr "ID pokoju" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9369,26 +9660,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Wibracje" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9404,19 +9721,19 @@ msgstr "Rosja" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Ścieżka karty SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9424,7 +9741,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9437,7 +9754,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9445,11 +9762,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9459,11 +9776,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Z&apisz stan" @@ -9476,7 +9793,6 @@ msgstr "Bezpieczny" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9486,9 +9802,17 @@ msgstr "Zapisz" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9497,24 +9821,24 @@ msgid "Save FIFO log" msgstr "Zapisz log FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Zapisz plik do" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9526,13 +9850,13 @@ msgstr "Zapisz najstarszy stan" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Zapisz stan" @@ -9576,23 +9900,23 @@ msgstr "Zapisz stan Slot 8" msgid "Save State Slot 9" msgstr "Zapisz stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Zapisz stan do pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Zapisz stan w najstarszym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Zapisz stan we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Zapisz stan w slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9600,7 +9924,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Zapisz i wczytaj stan" @@ -9612,26 +9936,26 @@ msgstr "" msgid "Save as..." msgstr "Zapisz jako..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9639,7 +9963,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "Zapisz we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Zapisz w slocie %1 - %2" @@ -9651,7 +9975,7 @@ msgstr "Zapisz..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9663,26 +9987,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Skalowana kopia EFB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Zrzut ekranu" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Szukaj" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Szukaj adresu" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Przeszukaj aktualny obiekt" @@ -9690,17 +10014,17 @@ msgstr "Przeszukaj aktualny obiekt" msgid "Search Subfolders" msgstr "Przeszukuj podfoldery" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9708,11 +10032,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9732,7 +10056,7 @@ msgstr "Sekcja zawierająca wszystkie ustawienia dotyczące grafiki." msgid "Section that contains most CPU and Hardware related settings." msgstr "Sekcja zawierająca większość ustawień dotyczących procesora i sprzętu." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9740,28 +10064,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Wybierz ścieżkę zrzutu" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9781,15 +10113,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Wybierz slot %1 - %2" @@ -9797,7 +10129,7 @@ msgstr "Wybierz slot %1 - %2" msgid "Select State" msgstr "Wybierz stan" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Wybierz slot stanu" @@ -9856,15 +10188,15 @@ msgstr "Wybierz ścieżkę" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Wybierz plik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9872,11 +10204,11 @@ msgstr "" msgid "Select a Game" msgstr "Wybierz grę" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9884,19 +10216,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9904,12 +10236,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Wybierz plik do zapisu" @@ -9925,7 +10257,7 @@ msgstr "" msgid "Selected Font" msgstr "Wybierz czcionkę" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Wybrany profil kontrolera nie istnieje" @@ -9937,26 +10269,45 @@ msgstr "Wybrany profil kontrolera nie istnieje" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9968,18 +10319,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9993,7 +10355,7 @@ msgstr "" msgid "Send" msgstr "Wyślij" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Pozycja Sensor Baru:" @@ -10017,16 +10379,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Ustaw PC" @@ -10042,23 +10400,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10068,17 +10426,17 @@ msgstr "" "gier PAL.\n" "Może nie działać z niektórymi grami." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Ustawia język systemu Wii." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10090,20 +10448,20 @@ msgstr "" msgid "Settings" msgstr "Ustawienia" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMem: Nie można utworzyć pliku setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Wstrząs" @@ -10120,16 +10478,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Pokaż &log" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Pokaż pasek &narzędzi" @@ -10137,53 +10495,53 @@ msgstr "Pokaż pasek &narzędzi" msgid "Show Active Title in Window Title" msgstr "Pokazuj aktywny tytuł w tytule okna" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Pokaż Australię" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Pokazuj aktualną grę w programie Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Pokaż ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Pokazuj kl./s" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Pokazuj licznik klatek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Pokaż Francję" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Pokaż GameCube'a" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Pokaż Niemcy" @@ -10195,23 +10553,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Pokaż wejścia ekranu" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Pokaż Włochy" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Pokaż Koreę" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Pokaż licznik lagów" @@ -10219,19 +10577,19 @@ msgstr "Pokaż licznik lagów" msgid "Show Language:" msgstr "Pokaż język:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Pokaż &konfigurację logu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Pokazuj wiadomości NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Pokazuj ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Pokaż Holandię" @@ -10239,32 +10597,36 @@ msgstr "Pokaż Holandię" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Pokaż PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Pokaż platformy" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Pokaż regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Pokaż Rosję" @@ -10272,72 +10634,72 @@ msgstr "Pokaż Rosję" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Pokaż Hiszpanię" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Pokazuj statystyki" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Pokaż zegar systemowy" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Pokaż Tajwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Pokaż USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Pokaż nieznane" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Pokaż WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Pokaż Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Pokaż świat" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10345,65 +10707,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10413,34 +10781,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Obok siebie" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wiilot trzymany poziomo" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10449,7 +10817,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chiński uproszczony" @@ -10466,17 +10834,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Pomiń" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10511,24 +10879,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10536,10 +10904,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10549,7 +10913,7 @@ msgstr "" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10557,7 +10921,7 @@ msgstr "" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10565,7 +10929,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10591,12 +10955,12 @@ msgstr "" "Niektóre wartości, które podałeś są nieprawidłowe.\n" "Sprawdź proszę zaznaczone wartości." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10610,27 +10974,27 @@ msgstr "Hiszpania" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Hiszpański" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Poziom głośnika:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10651,15 +11015,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10672,25 +11036,28 @@ msgstr "Standardowy kontroler" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Uruchom &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Rozpocznij nagrywanie wejścia" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Rozpocznij nagrywanie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10706,10 +11073,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10719,7 +11086,7 @@ msgstr "Kierownica" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Krok" @@ -10731,13 +11098,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10753,7 +11120,7 @@ msgstr "Wyjście przekroczyło czas oczekiwania!" msgid "Step over in progress..." msgstr "Przekraczanie w toku..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Krok wykonany!" @@ -10762,7 +11129,7 @@ msgstr "Krok wykonany!" msgid "Stepping" msgstr "Kroki" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10792,18 +11159,14 @@ msgstr "Gałka" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zatrzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Zatrzymana gra" @@ -10836,7 +11199,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Rozciągnij do okna" @@ -10871,8 +11234,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Powodzenie" @@ -10899,7 +11262,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Pliki zapisów zostały pomyślnie wyeksportowane" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Certyfikaty z NAND zostały pomyślnie wyodrębnione" @@ -10911,12 +11274,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:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Ten tytuł został pomyślnie zainstalowany do NAND." @@ -10927,11 +11290,11 @@ msgstr "Usunięcie tego tytułu z NAND zakończono pomyślnie." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Wsparcie" @@ -10939,16 +11302,16 @@ msgstr "Wsparcie" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10958,12 +11321,12 @@ msgstr "Zamień oczy" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10974,7 +11337,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Zamach" @@ -10988,34 +11351,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symbole" @@ -11041,7 +11391,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11060,24 +11410,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Język systemu:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Narzędzia TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11087,7 +11437,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11095,15 +11445,15 @@ msgstr "" msgid "Taiwan" msgstr "Tajwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Zrób zrzut ekranu" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11111,7 +11461,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11119,6 +11469,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11128,7 +11484,7 @@ msgstr "Bufor tekstur" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11140,7 +11496,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Nakładka formatu tekstur" @@ -11163,7 +11519,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11177,13 +11533,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND został naprawiony." @@ -11194,11 +11550,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11231,6 +11587,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11248,7 +11611,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 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." @@ -11268,17 +11631,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Wprowadzony PID jest nieprawidłowy." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Wprowadzony VID jest nieprawidłowy." @@ -11286,7 +11649,7 @@ msgstr "Wprowadzony VID jest nieprawidłowy." msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11300,7 +11663,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11316,7 +11679,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11327,7 +11690,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11384,9 +11747,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11400,11 +11763,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11418,8 +11781,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11446,12 +11809,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Wynikowy odszyfrowany kod AR nie zawiera żadnych linii." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11485,7 +11848,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11500,11 +11863,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11512,15 +11875,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11543,7 +11906,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11569,14 +11932,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Nie ma nic do cofnięcia!" @@ -11612,19 +11980,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "To urządzenie USB jest już na białej liście." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11741,6 +12109,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11757,13 +12129,13 @@ msgstr "" "\n" "W razie wątpliwości, pozostaw odznaczone." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "To oprogramowanie nie powinno być używane do grania w tytuły, których nie " "posiadasz." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11776,7 +12148,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11784,7 +12156,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11806,6 +12178,13 @@ msgid "" msgstr "" "Ta wartość zwielokrotnia się z głębią ustawioną w konfiguracji graficznej." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11820,11 +12199,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11832,12 +12211,12 @@ msgstr "" msgid "Threshold" msgstr "Próg nacisku" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Przechylenie" @@ -11851,10 +12230,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Tytuł" @@ -11868,7 +12247,7 @@ msgstr "Do" msgid "To:" msgstr "Do:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Przełącz pełny &ekran" @@ -11893,7 +12272,7 @@ msgid "Toggle Aspect Ratio" msgstr "Przełącz proporcje obrazu" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Przełącz punkt przerwania" @@ -11945,15 +12324,19 @@ msgstr "Przełącz kopie XFB" msgid "Toggle XFB Immediate Mode" msgstr "Przełącz tryb natychmiastowy XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Góra" @@ -11961,9 +12344,8 @@ msgstr "Góra" msgid "Top-and-Bottom" msgstr "Góra-i-dół" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -12000,28 +12382,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chiński tradycyjny" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12058,26 +12440,26 @@ msgid "Triggers" msgstr "Spusty" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Typ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -12089,7 +12471,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12101,20 +12483,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12122,7 +12504,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12131,7 +12513,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12143,11 +12525,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12167,7 +12549,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12190,15 +12572,15 @@ msgstr "Nieskompresowane obrazy gier GC/Wii (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Cofnij wczytywanie stanu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Cofnij zapisywanie stanu" @@ -12216,11 +12598,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Stany Zjednoczone" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12231,12 +12613,13 @@ msgstr "Stany Zjednoczone" msgid "Unknown" msgstr "Nieznany" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12260,11 +12643,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12272,7 +12655,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12280,7 +12663,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12300,16 +12683,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Nieograniczona szybkość" @@ -12342,22 +12727,22 @@ msgid "Unpacking" msgstr "Rozpakowywanie" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12419,23 +12804,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wiilot trzymany pionowo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Ustawienia raportowania statystyk użytkowania" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12447,15 +12832,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Użyj wbudowanej bazy danych nazw gier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Użyj trybu PAL60 (EuRGB60)" @@ -12463,7 +12848,7 @@ msgstr "Użyj trybu PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Użyj Panic Handlers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12481,43 +12866,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "Użyj jednego buforu głębi dla obu oczu. Wymagane dla niektórych gier." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12549,21 +12909,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12571,31 +12931,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Narzędzia" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Synchronizacja pionowa" @@ -12603,11 +12963,11 @@ msgstr "Synchronizacja pionowa" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Wartość" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12615,17 +12975,17 @@ msgstr "" msgid "Value:" msgstr "Wartość:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12641,16 +13001,16 @@ msgstr "Szczegółowość" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12664,7 +13024,7 @@ msgid "Vertex Rounding" msgstr "Zaokrąglanie wierzchołków" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12678,12 +13038,12 @@ msgid "Video" msgstr "Wideo" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Wyświetl &kod" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Wyświetl &pamięć" @@ -12691,14 +13051,14 @@ msgstr "Wyświetl &pamięć" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Głośność" @@ -12718,31 +13078,31 @@ msgstr "Zwiększ głośność" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "Pliki WAD (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12781,12 +13141,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12797,7 +13157,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12819,7 +13179,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Ostrzeżenie" @@ -12891,7 +13251,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12908,7 +13268,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12916,7 +13276,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12924,7 +13284,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Zezwolone urządzenia przejściowe USB" @@ -12948,7 +13308,7 @@ msgstr "Menu Wii" msgid "Wii NAND Root:" msgstr "Źródło Wii NAND:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wiilot" @@ -12956,7 +13316,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12974,7 +13334,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Ustawienia Wii Pilota" @@ -12994,7 +13354,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii i Wiilot" @@ -13002,11 +13362,11 @@ msgstr "Wii i Wiilot" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Pliki zapisu Wii (*.bin);Wszystkie pliki (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -13016,11 +13376,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Zawijanie wierszy" @@ -13034,10 +13406,14 @@ msgstr "Świat" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -13079,6 +13455,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13087,11 +13471,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Rejestr XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13126,14 +13510,14 @@ msgstr "Tak" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13230,7 +13614,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13248,15 +13632,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Kod 3 zero niewspierany" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13264,11 +13652,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13287,21 +13675,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13309,31 +13697,35 @@ msgstr "" msgid "fake-completion" msgstr "fałszywe-ukończenie‭‭" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13343,7 +13735,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13353,13 +13745,13 @@ msgstr "" msgid "none" msgstr "żadna" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13376,16 +13768,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "ta wartość:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13400,11 +13796,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13439,7 +13835,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13451,8 +13847,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/pt.po b/Languages/po/pt.po index fbc670ead2f4..bde3fc99aa39 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -60,8 +60,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -80,19 +80,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -113,7 +114,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -152,6 +153,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -175,13 +181,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -197,12 +203,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +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 "" @@ -227,26 +233,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -284,20 +290,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -307,23 +313,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -331,12 +337,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -344,27 +350,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Pontos de partida" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -372,15 +378,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -388,19 +394,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -408,7 +419,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -425,9 +436,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -435,23 +446,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulação" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -459,55 +470,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Ficheiro" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Avançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Definições Gráficas" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Definições de Teclas de Atalho" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -515,19 +524,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -535,15 +544,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Carregar Estado" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -553,23 +566,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -578,23 +591,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Começar" @@ -602,15 +615,15 @@ msgstr "&Começar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registos" @@ -618,41 +631,45 @@ msgstr "&Registos" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Parar" @@ -660,15 +677,19 @@ msgstr "&Parar" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Ferramentas" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -678,17 +699,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -700,11 +721,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -720,7 +741,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -728,7 +749,7 @@ msgstr "" msgid "(off)" msgstr "(desligado)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -748,15 +769,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -767,12 +788,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -784,7 +805,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -792,11 +813,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -808,17 +829,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -830,11 +851,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -846,7 +867,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -858,25 +879,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -890,11 +911,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -902,7 +923,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -918,7 +939,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -930,22 +951,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -953,11 +974,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -969,13 +990,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -991,7 +1012,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1003,11 +1024,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1037,12 +1058,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1052,7 +1073,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1062,11 +1083,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1082,6 +1103,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1103,7 +1128,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1112,8 +1137,8 @@ msgstr "" msgid "AR Codes" msgstr "Códigos AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1127,7 +1152,7 @@ msgid "About Dolphin" msgstr "Sobre o Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1146,7 +1171,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1232,19 +1257,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1252,7 +1277,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptador:" @@ -1262,7 +1287,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Adicionar" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1291,51 +1316,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Adicionar..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1396,12 +1418,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avançadas" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1416,15 +1438,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1434,16 +1456,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1457,11 +1479,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1469,7 +1491,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1478,7 +1500,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1487,8 +1509,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1500,7 +1522,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1512,15 +1534,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1548,7 +1570,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1586,15 +1608,15 @@ msgstr "Anti-Serrilhamento" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1612,7 +1634,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1644,12 +1666,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Proporção de ecrã:" @@ -1657,7 +1683,7 @@ msgstr "Proporção de ecrã:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1665,7 +1691,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1682,7 +1708,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1690,11 +1716,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 "" @@ -1706,12 +1732,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automático" @@ -1719,11 +1745,7 @@ msgstr "Automático" msgid "Auto (Multiple of 640x528)" msgstr "Automático (Multiplo de 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1735,7 +1757,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1743,32 +1765,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1776,38 +1798,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1823,13 +1849,13 @@ msgstr "Introdução em segundo plano" msgid "Backward" msgstr "Retroceder" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1837,20 +1863,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1870,15 +1896,15 @@ msgstr "Barra" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Definições Básicas" @@ -1886,15 +1912,15 @@ msgstr "Definições Básicas" msgid "Bass" msgstr "Baixo" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1918,31 +1944,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1951,7 +1979,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1978,32 +2006,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Inferior" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2041,11 +2180,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2055,11 +2194,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2091,7 +2230,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2107,7 +2246,7 @@ msgstr "" msgid "Buttons" msgstr "Botões" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2117,11 +2256,11 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2133,7 +2272,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2141,14 +2280,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2160,11 +2299,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2172,19 +2311,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2193,64 +2332,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2258,19 +2409,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2288,7 +2441,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2296,7 +2449,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Mudar &Disco..." @@ -2304,7 +2457,7 @@ msgstr "Mudar &Disco..." msgid "Change Disc" msgstr "Mudar Disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2312,7 +2465,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2338,7 +2491,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2350,15 +2503,15 @@ msgstr "Conversa" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Procura de Cheats" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2366,7 +2519,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2384,27 +2537,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Escolha um ficheiro para abrir" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2431,15 +2584,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Limpar" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2447,7 +2604,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2456,36 +2613,20 @@ msgstr "" msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2512,7 +2653,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2539,7 +2684,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2547,9 +2692,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2562,10 +2707,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2638,7 +2789,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Configurar" @@ -2671,13 +2822,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2685,7 +2836,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmar Ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2696,15 +2847,15 @@ msgstr "" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2724,7 +2875,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2765,7 +2916,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2789,7 +2940,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2852,8 +3003,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2861,9 +3012,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2871,9 +3022,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2893,8 +3044,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2930,15 +3081,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2946,19 +3097,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2976,6 +3127,11 @@ msgstr "" msgid "Core" msgstr "Core" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2985,7 +3141,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3058,7 +3214,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3095,13 +3251,13 @@ msgstr "" msgid "Country:" msgstr "País" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3110,15 +3266,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3127,17 +3279,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3145,11 +3288,11 @@ msgstr "" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Recortar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3161,26 +3304,26 @@ msgstr "" msgid "Crossfade" msgstr "Desvanecimento cruzado" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3188,27 +3331,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3220,13 +3367,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3251,7 +3398,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 "" @@ -3259,15 +3406,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 "" @@ -3289,7 +3436,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3305,7 +3452,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3338,8 +3485,8 @@ msgstr "Zona morta" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Depuração" @@ -3348,7 +3495,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 "" @@ -3395,7 +3542,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 "" @@ -3407,11 +3554,11 @@ msgstr "" msgid "Default ISO:" msgstr "ISO Padrão:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3419,7 +3566,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3459,26 +3606,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3486,7 +3660,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3494,7 +3668,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3503,7 +3677,7 @@ msgid "Device" msgstr "Dispositivo" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3512,11 +3686,11 @@ msgid "Device Settings" msgstr "Definições de Dispositivo" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3524,11 +3698,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3540,12 +3710,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3557,7 +3727,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3565,11 +3735,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3577,11 +3747,11 @@ msgstr "" msgid "Disable Fog" msgstr "Desactivar Nevoeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3596,7 +3766,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3942,15 +4108,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandês" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "S&air" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3976,7 +4142,7 @@ msgstr "Actualizações de Memória Inicial" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3989,7 +4155,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4005,15 +4171,15 @@ msgstr "Efeito" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4023,7 +4189,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4031,11 +4197,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread de Emulador já em execução" @@ -4043,11 +4209,11 @@ msgstr "Thread de Emulador já em execução" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4061,7 +4227,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4081,28 +4247,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4114,11 +4268,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Activar Cheats" @@ -4138,7 +4292,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Activar Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Activar Dual Core (aumento de desempenho)" @@ -4158,7 +4312,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4184,6 +4338,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4197,7 +4355,7 @@ msgstr "Activar MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activar Progressive Scan" @@ -4210,11 +4368,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activar Protector de Ecrã" @@ -4226,15 +4384,15 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activar Wireframe" @@ -4304,7 +4462,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4335,7 +4493,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4343,7 +4501,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4360,7 +4518,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 "" @@ -4388,7 +4546,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4396,7 +4554,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4404,7 +4562,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4429,7 +4587,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglês" @@ -4438,7 +4596,7 @@ msgstr "Inglês" msgid "Enhancements" msgstr "Melhorias" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4460,11 +4618,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4473,8 +4637,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4485,45 +4649,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4533,16 +4703,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Erro" @@ -4559,9 +4729,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4575,7 +4745,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4641,13 +4811,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4666,40 +4836,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4707,7 +4849,7 @@ msgstr "" msgid "Exit" msgstr "Sair" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4715,7 +4857,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4727,15 +4869,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4743,11 +4885,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportar Todos os Jogos Guardados Wii" @@ -4762,7 +4904,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -4790,14 +4932,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensão" @@ -4818,7 +4960,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4851,12 +4993,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Reprodutor FIFO" @@ -4874,7 +5016,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4882,12 +5024,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4915,19 +5057,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4947,15 +5090,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Falha ao descarregar códigos" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4968,7 +5111,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4991,33 +5134,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5028,7 +5167,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5037,18 +5176,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5060,19 +5199,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5082,13 +5223,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5096,6 +5245,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5122,28 +5275,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5163,7 +5320,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5185,31 +5342,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5243,31 +5403,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5318,7 +5478,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5326,11 +5486,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5343,7 +5503,7 @@ msgstr "Rápido" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5354,11 +5514,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5366,9 +5526,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5380,20 +5540,20 @@ msgstr "" msgid "File Info" msgstr "Informação de Ficheiro" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5401,7 +5561,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "O ficheiro não continha códigos." @@ -5435,15 +5595,15 @@ msgstr "Sistema de ficheiros" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5455,7 +5615,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5471,31 +5631,32 @@ msgstr "Corrigir Checksums" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5505,13 +5666,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5519,7 +5680,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" @@ -5551,11 +5712,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5592,17 +5753,17 @@ msgstr "Frente" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5623,7 +5784,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5631,7 +5792,7 @@ msgstr "" msgid "Frame Range" msgstr "Alcance de Quadros" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5655,7 +5816,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5686,7 +5847,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francês" @@ -5710,7 +5871,7 @@ msgstr "De" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Ecrã Inteiro" @@ -5742,7 +5903,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5858,26 +6019,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5905,8 +6066,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5966,11 +6127,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5978,11 +6139,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5995,11 +6156,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6027,7 +6188,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6037,35 +6198,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Geral" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemão" @@ -6077,18 +6238,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6101,8 +6262,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gráficos" @@ -6141,7 +6302,7 @@ msgstr "Verde Esquerda" msgid "Green Right" msgstr "Verde Direita" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6150,7 +6311,7 @@ msgstr "" msgid "Guitar" msgstr "Guitarra" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6178,36 +6339,35 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6220,7 +6380,11 @@ msgstr "" msgid "Hide" msgstr "Esconder" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6236,12 +6400,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6250,14 +6414,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6274,7 +6432,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6298,16 +6456,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Teclas de Atalho" @@ -6316,7 +6474,7 @@ msgstr "Teclas de Atalho" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6330,16 +6488,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6374,7 +6532,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilidade de Infra Vermelhos" @@ -6407,11 +6565,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6457,11 +6615,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorar Mudanças de Formato" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6485,7 +6647,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6494,7 +6656,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6509,15 +6671,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6528,15 +6690,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6545,27 +6698,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6610,15 +6763,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6638,8 +6792,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informação" @@ -6653,10 +6807,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Entrada" @@ -6670,20 +6824,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir Cartão SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6697,7 +6857,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6705,11 +6865,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6718,7 +6880,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6727,7 +6889,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6744,19 +6906,19 @@ msgstr "" msgid "Interface" msgstr "Iinterface" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6769,19 +6931,19 @@ msgstr "Erro interno de LZO - compressão falhou" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6796,7 +6958,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Resolução Interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6804,11 +6966,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6820,7 +6982,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6829,11 +6991,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6862,7 +7024,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6874,19 +7036,19 @@ msgstr "" msgid "Invalid recording file" msgstr "Ficheiro de Gravação inválido" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6896,7 +7058,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -6905,63 +7067,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6973,27 +7135,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonês" @@ -7004,13 +7170,13 @@ msgstr "Japonês" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7024,7 +7190,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7045,7 +7211,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7053,12 +7219,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -7069,7 +7235,7 @@ msgstr "Coreano" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7079,7 +7245,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7087,35 +7253,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7185,13 +7353,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7205,7 +7373,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7213,11 +7381,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7228,29 +7396,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carregar Texturas Personalizadas" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7271,7 +7446,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7360,19 +7535,19 @@ msgstr "Carregar Estado Slot 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7384,16 +7559,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7401,18 +7576,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7432,7 +7607,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Relatório" @@ -7444,7 +7619,7 @@ msgstr "Configuração de Relatório" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7452,7 +7627,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7468,7 +7643,7 @@ msgstr "Saídas de Gerador de Relatórios" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7483,16 +7658,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7500,7 +7675,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7510,7 +7685,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7518,37 +7693,37 @@ msgstr "" msgid "Main Stick" msgstr "Stick Principal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7565,12 +7740,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7582,7 +7757,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7599,16 +7774,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7620,7 +7795,7 @@ msgstr "" msgid "Memory Card" msgstr "Cartão de memória" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7632,7 +7807,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7648,7 +7823,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7656,29 +7831,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diversos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configurações Diversas" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7698,36 +7877,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7739,16 +7923,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7785,6 +7969,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7794,10 +7982,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7806,8 +7994,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7816,7 +8004,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7833,25 +8021,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7860,7 +8048,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7917,7 +8105,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7947,7 +8135,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7955,7 +8143,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7963,7 +8151,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7972,7 +8160,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7986,7 +8174,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -8000,7 +8188,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8014,7 +8202,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8022,16 +8210,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Nenhuma descrição disponível" @@ -8047,15 +8235,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8064,7 +8252,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8076,10 +8264,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8091,11 +8275,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8104,18 +8288,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Nenhum" @@ -8175,7 +8359,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8210,10 +8394,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Alcance de Objecto" @@ -8227,7 +8459,7 @@ msgstr "" msgid "Off" msgstr "Desligado" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8239,14 +8471,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Online e documentação" @@ -8254,13 +8501,13 @@ msgstr "Online e documentação" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8268,7 +8515,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Abrir" @@ -8277,11 +8524,11 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8302,7 +8549,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8335,11 +8582,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opções" @@ -8352,13 +8599,36 @@ msgstr "Laranja" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Outro" @@ -8371,7 +8641,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8391,16 +8661,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8409,15 +8679,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8425,11 +8695,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8442,11 +8712,11 @@ msgstr "Comando" msgid "Pads" msgstr "Comandos" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8497,11 +8767,15 @@ msgstr "" msgid "Paths" msgstr "Caminhos" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8540,7 +8814,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminação por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8548,33 +8822,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8590,12 +8864,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Começar" @@ -8607,7 +8881,7 @@ msgstr "" msgid "Play Recording" msgstr "Tocar Gravação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8619,27 +8893,27 @@ msgstr "Opções de Reprodução" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8648,7 +8922,8 @@ msgstr "" msgid "Players" msgstr "Jogadores" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8660,23 +8935,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8685,7 +8964,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8706,11 +8985,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8718,11 +8997,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8745,7 +9024,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8760,7 +9039,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8771,7 +9050,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8783,7 +9062,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8817,8 +9096,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8826,11 +9105,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8850,14 +9129,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Questão" @@ -8878,19 +9157,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8903,11 +9182,11 @@ msgstr "" msgid "Range" msgstr "Alcance" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8919,7 +9198,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8931,14 +9214,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8959,10 +9242,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8976,7 +9264,7 @@ msgstr "Gravar" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9011,7 +9299,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9019,14 +9307,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Actualizar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9034,11 +9322,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9047,8 +9335,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9077,7 +9365,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Remover" @@ -9094,7 +9382,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9105,8 +9393,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9114,11 +9402,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9134,23 +9422,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reset" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9178,6 +9465,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9194,7 +9485,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9211,7 +9502,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9270,7 +9561,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9288,26 +9579,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibração" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9323,19 +9640,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9343,7 +9660,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9356,7 +9673,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9364,11 +9681,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9378,11 +9695,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Gua&rdar Estado" @@ -9395,7 +9712,6 @@ msgstr "Seguro" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9405,9 +9721,17 @@ msgstr "Guardar" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9416,24 +9740,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9445,13 +9769,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" @@ -9495,23 +9819,23 @@ msgstr "Guardar Estado Slot 8" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9519,7 +9843,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9531,26 +9855,26 @@ msgstr "" msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9558,7 +9882,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9570,7 +9894,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9582,26 +9906,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Cópia EFB Escalada" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "ScrShot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9609,17 +9933,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Procurar em Sub-Pastas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9627,11 +9951,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9651,7 +9975,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9659,28 +9983,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9700,15 +10032,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9716,7 +10048,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9775,15 +10107,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9791,11 +10123,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9803,19 +10135,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9823,12 +10155,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Seleccione o ficheiro de jogo guardado" @@ -9844,7 +10176,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "" @@ -9856,26 +10188,45 @@ msgstr "" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9887,18 +10238,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9912,7 +10274,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posição da Barra de Sensor:" @@ -9936,16 +10298,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9961,40 +10319,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10006,20 +10364,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Abanar" @@ -10036,16 +10394,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Mostrar &Relatório" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Mostrar Barra de Ferramen&tas" @@ -10053,53 +10411,53 @@ msgstr "Mostrar Barra de Ferramen&tas" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10111,23 +10469,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Mostrar visualização de Entradas" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Mostrar Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Mostrar Coreia" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10135,19 +10493,19 @@ msgstr "" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Mostrar &Configuração de Relatório" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10155,32 +10513,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Mostrar Plataformas" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10188,72 +10550,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostrar Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10261,65 +10623,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10329,34 +10697,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10365,7 +10733,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinês Simplificado" @@ -10382,17 +10750,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10427,24 +10795,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10452,10 +10820,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10465,7 +10829,7 @@ msgstr "" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10473,7 +10837,7 @@ msgstr "" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10481,7 +10845,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10505,12 +10869,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10524,27 +10888,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanhol" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume do Altifalante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10565,15 +10929,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10586,25 +10950,28 @@ msgstr "Comando padrão" msgid "Start" msgstr "Começar" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Começar Gravação" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10620,10 +10987,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10633,7 +11000,7 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10645,13 +11012,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10667,7 +11034,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10676,7 +11043,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10706,18 +11073,14 @@ msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10750,7 +11113,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Ajustar à janela" @@ -10785,8 +11148,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10813,7 +11176,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10825,12 +11188,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10841,11 +11204,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10853,16 +11216,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10872,12 +11235,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10888,7 +11251,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Balanço" @@ -10902,34 +11265,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10955,7 +11305,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10974,24 +11324,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma do sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11001,7 +11351,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11009,15 +11359,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Tirar Screenshot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11025,7 +11375,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11033,6 +11383,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11042,7 +11398,7 @@ msgstr "Cache de Textura" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11054,7 +11410,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Formato da textura" @@ -11077,7 +11433,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11091,13 +11447,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11108,11 +11464,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11145,6 +11501,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11162,7 +11525,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11182,17 +11545,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11200,7 +11563,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11214,7 +11577,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11230,7 +11593,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11241,7 +11604,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11298,9 +11661,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11314,11 +11677,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11332,8 +11695,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11360,12 +11723,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "O resultado do código AR desencriptado não contém quaisquer linhas." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11399,7 +11762,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11414,11 +11777,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11426,15 +11789,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11457,7 +11820,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11483,14 +11846,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11526,19 +11894,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11655,6 +12023,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11667,11 +12039,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11684,7 +12056,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11692,7 +12064,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11711,6 +12083,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11725,11 +12104,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11737,12 +12116,12 @@ msgstr "" msgid "Threshold" msgstr "Limite" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Tilt" @@ -11756,10 +12135,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Título" @@ -11773,7 +12152,7 @@ msgstr "Para" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11798,7 +12177,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11850,15 +12229,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Topo" @@ -11866,9 +12249,8 @@ msgstr "Topo" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11905,28 +12287,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinês Tradicional" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11963,26 +12345,26 @@ msgid "Triggers" msgstr "Gatilhos" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tipo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11994,7 +12376,7 @@ msgstr "EUA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12006,20 +12388,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12027,7 +12409,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12036,7 +12418,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12048,11 +12430,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12072,7 +12454,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12095,15 +12477,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Retroceder Carregamento de Estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "" @@ -12121,11 +12503,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12136,12 +12518,13 @@ msgstr "" msgid "Unknown" msgstr "Desconhecido" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12165,11 +12548,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12177,7 +12560,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12185,7 +12568,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12205,16 +12588,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12247,22 +12632,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12324,23 +12709,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12352,15 +12737,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12368,7 +12753,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "Usar Manipuladores de Pânico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12386,43 +12771,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12454,21 +12814,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12476,31 +12836,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utilidade" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync" @@ -12508,11 +12868,11 @@ msgstr "V-Sync" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12520,17 +12880,17 @@ msgstr "" msgid "Value:" msgstr "Valor:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12546,16 +12906,16 @@ msgstr "Verbosidade" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12569,7 +12929,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12583,12 +12943,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12596,14 +12956,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" @@ -12623,31 +12983,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12686,12 +13046,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12702,7 +13062,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12724,7 +13084,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Aviso" @@ -12796,7 +13156,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12813,7 +13173,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12821,7 +13181,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12829,7 +13189,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12853,7 +13213,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "Raiz de NAND Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12861,7 +13221,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12879,7 +13239,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12899,7 +13259,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12907,11 +13267,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12921,11 +13281,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Moldar o texto" @@ -12939,10 +13311,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12984,6 +13360,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12992,11 +13376,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13031,14 +13415,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13135,7 +13519,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13153,15 +13537,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "Código Zero 3 não é suportado" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13169,11 +13557,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13192,21 +13580,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13214,31 +13602,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13248,7 +13640,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13258,13 +13650,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13281,16 +13673,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13305,11 +13701,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13344,7 +13740,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13353,8 +13749,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index 73992db65ff9..7f8d1cdff7d3 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Runo , 2013\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/delroth/dolphin-" @@ -106,8 +106,8 @@ msgstr "$ Variável do Usuário" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -128,19 +128,20 @@ 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%" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -161,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Padrão)" @@ -203,6 +204,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "O backend %1 não é compatível com esse recurso no seu sistema." @@ -229,7 +235,7 @@ msgstr "%1 entrou" msgid "%1 has left" msgstr "%1 saiu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -237,7 +243,7 @@ msgstr "" "%1 desbloqueou %2 de %3 conquistas (%4 hardcore) valendo %5 de %6 pontos (%7 " "hardcore)" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 desbloqueou %2 de %3 conquistas valendo %4 de %5 pontos" @@ -253,12 +259,12 @@ msgstr "%1 assumiu controle do golfe" msgid "%1 is playing %2" msgstr "%1 está jogando %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -275,7 +281,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%" @@ -283,26 +289,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "O valor do %1 é usado" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -340,20 +346,20 @@ msgstr "%1x Nativa (%2x%3) [%4]" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n endereço(s) não puderam ser acessados na memória emulada." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n endereço(s) restante(s)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -363,23 +369,23 @@ msgstr "%n endereço(s) removido(s)." msgid "& And" msgstr "& E" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Sobre" @@ -387,12 +393,12 @@ msgstr "&Sobre" msgid "&Add Memory Breakpoint" msgstr "&Adicionar Ponto de Interrupção de Memória" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Adicionar Novo Código..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Adicionar função" @@ -400,27 +406,27 @@ msgstr "&Adicionar função" msgid "&Add..." msgstr "&Adicionar..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Configurações de &Som" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "C&anal:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "Janela Sem &Bordas" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Pontos de Interrupção" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -428,15 +434,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Cancelar" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "Gerenciador de &Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "Verificar &Atualizações..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Limpar Símbolos" @@ -444,19 +450,24 @@ msgstr "&Limpar Símbolos" msgid "&Clone..." msgstr "&Duplicar..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Código" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Configurações de &Controles" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Copiar endereço" @@ -464,7 +475,7 @@ msgstr "&Copiar endereço" msgid "&Create..." msgstr "&Criar..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "E&xcluir" @@ -481,9 +492,9 @@ msgstr "&Apagar Observação" msgid "&Delete Watches" msgstr "&Apagar Relógios" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Editar Código..." @@ -491,23 +502,23 @@ msgstr "&Editar Código..." msgid "&Edit..." msgstr "&Editar..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Ejetar Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulação" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exportar" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Exportar Jogo Salvo..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Exportar Estado Salvo..." @@ -515,55 +526,53 @@ msgstr "&Exportar Estado Salvo..." msgid "&Export as .gci..." msgstr "&Exportar como .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Fonte..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "A&vançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&Configurações do Olhar Livre" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Gerar Símbolos De" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Repositório no &GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Ir pro início da função" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Configurações de &Gráficos" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "Aj&uda" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Configurações das &Teclas de Atalho" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importar" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Importar Jogo Salvo..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importar Estado Salvo..." @@ -571,19 +580,19 @@ msgstr "&Importar Estado Salvo..." msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "Base &Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Inserir blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Mistura do Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -591,15 +600,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "Carregar Estado Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Carregar o Mapa dos Símbolos" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Carregar o arquivo no endereço atual" @@ -609,23 +622,23 @@ msgstr "&Carregar o arquivo no endereço atual" msgid "&Lock Watches" msgstr "&Trancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "B&loquear Widgets" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Gravação" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "Ativar &Mudo" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Rede" @@ -634,23 +647,23 @@ msgid "&No" msgstr "&Não" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "A&brir..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Funções HLE do Patch" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "P&ausar" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "Inici&ar" @@ -658,15 +671,15 @@ msgstr "Inici&ar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "Modo &Somente Leitura" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Atualizar Lista" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registradores" @@ -674,41 +687,45 @@ msgstr "&Registradores" msgid "&Remove" msgstr "&Remover" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Remover Código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Renomear Símbolo" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reiniciar" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "Gerenciador de Pacotes de &Recursos" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Salvar Mapa de Símbolos" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "&Escanear Cartões do e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "Portal &Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Limite de Velocidade:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Parar" @@ -716,15 +733,19 @@ msgstr "&Parar" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Ferramentas" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&Fechar ROM" @@ -734,17 +755,17 @@ msgstr "&Fechar ROM" msgid "&Unlock Watches" msgstr "&Destrancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "A&ssistir" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Website" @@ -756,11 +777,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sim" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 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:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' não foi encontrado, ao invés disto escaneando por funções comuns" @@ -776,7 +797,7 @@ msgstr "(Claro)" msgid "(System)" msgstr "(Sistema)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(host)" @@ -784,7 +805,7 @@ msgstr "(host)" msgid "(off)" msgstr "(desligado)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -804,15 +825,15 @@ msgstr ", Vírgula" msgid "- Subtract" msgstr "- Subtrair" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Desconhecido--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -823,12 +844,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Dividir" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -840,7 +861,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbits (2043 blocos)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -848,11 +869,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -864,17 +885,17 @@ msgstr "16 Mbits (251 blocos)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "Inteiro de 16 bits (Com Sinal)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "Inteiro de 16 bits (Sem Sinal)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -886,11 +907,11 @@ msgstr "16x Anisotrópico" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -902,7 +923,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x Anisotrópico" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -914,25 +935,25 @@ msgstr "32 Mbits (507 blocos)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "Float de 32 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "Inteiro de 32 bits (Com Sinal)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -946,11 +967,11 @@ msgstr "Profundidade 3D" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -958,7 +979,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbits (59 blocos)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -974,7 +995,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x Anisotrópico" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -986,22 +1007,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbits (1019 blocos)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "Float de 64 bits" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "Inteiro de 64 bits (Com Sinal)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "Inteiro de 64 bits (Sem Sinal)" @@ -1009,11 +1030,11 @@ msgstr "Inteiro de 64 bits (Sem Sinal)" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 Bytes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -1025,13 +1046,13 @@ msgstr "8 Mbits (123 blocos)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "Inteiro de 8 bits (Com Sinal)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "Inteiro de 8 bits (Sem Sinal)" @@ -1047,7 +1068,7 @@ msgstr "8x Anisotrópico" msgid "< Less-than" msgstr "< Menor que" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1059,13 +1080,13 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "Desativado no Modo Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1103,12 +1124,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Maior que" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Uma sessão do NetPlay já está em progresso!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1124,7 +1145,7 @@ msgstr "" "\n" "Instalar este WAD substituirá permanentemente a versão anterior. Continuar?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Um disco já está prestes a ser inserido." @@ -1137,13 +1158,13 @@ msgstr "" "espaço de cores para qual os jogos de GameCube e Wii foram desenvolvidos " "originalmente." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Não é possível carregar um estado salvo sem especificar um jogo para " "executar." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1165,6 +1186,10 @@ msgstr "" "Uma sincronização só pode ser acionada quando um jogo de Wii está em " "execução." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1197,7 +1222,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:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Códigos AR" @@ -1206,8 +1231,8 @@ msgstr "Códigos AR" msgid "AR Codes" msgstr "Códigos AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1221,7 +1246,7 @@ msgid "About Dolphin" msgstr "Sobre o Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Acelerômetro" @@ -1240,7 +1265,7 @@ msgid "Achievement Settings" msgstr "Configurações das Conquistas" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Conquistas" @@ -1348,19 +1373,19 @@ msgstr "Ativar Chat do NetPlay" msgid "Active" msgstr "Ativo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Figuras Infinity Ativas" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Fila do thread ativo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Threads ativas" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adaptador" @@ -1368,7 +1393,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador Detectado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptador:" @@ -1378,7 +1403,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Adicionar" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Adicionar &ponto de interrupção" @@ -1407,51 +1432,48 @@ msgstr "Adicionar Ponto de Interrupção de Memória" msgid "Add memory &breakpoint" msgstr "Adicionar ponto de interrupção da &memória" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Adicionar a &observação" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Adicionar..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Endereço" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Espaço do Endereço" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Espaço do endereço pelo state da CPU" @@ -1540,12 +1562,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avançado" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Configurações Avançadas" @@ -1560,38 +1582,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"Afeta como a saída do jogo é ampliada para a resolução da janela.
A " -"performance na maior parte depende do número de amostras que cada método usa." -"
Comparado com o SSAA, a reamostragem é útil caso a resolução da janela " -"de saída
não seja um multiplicador da resolução de emulação nativa." -"

Padrão - [mais rápido]
Amostrador bilinear interno da GPU " -"o qual não é corrigido pelo gamma.
Esta configuração pode ser ignorada se " -"a correção de gamma é forçada.

Bilinear - [4 " -"amostras]
Interpolação linear entre pixels corrigida pelo gamma." -"

Bi-cúbica - [16 amostras]
Interpolação cúbica entre pixels " -"corrigida pelo gamma.
Boa quando redimensionar entre resoluções próximas, " -"ex: 1080p e 1440p.
Vem em vários sabores:

B-Spline
: Borrado, " -"mas evita todos os artefatos de lóbulos
Mitchell-Netravali: Bom " -"meio termo entre borrado e com lóbulos
Catmull-Rom: Mais nítido, " -"mas pode causar artefatos de lóbulos

Sharp Bilinear - [1-4 " -"amostras]
Similar ao \"Nearest Neighbor\", mantém uma aparência nítida," -"
mas também faz algumas misturas pra evitar brilhos.
Funciona melhor " -"com jogos 2D em baixas resoluções.

Amostragem da Área - [até " -"324 amostras]
Pesa os pixels pela porcentagem de área que eles ocupam. " -"Corrigido pelo gamma.
Melhor pra reduzir a escala em mais de 2x." -"

Se não tiver certeza, selecione 'Padrão'." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1599,16 +1600,16 @@ msgstr "África" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Ar" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Alinhado ao comprimento do tipo de dados" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Todos" @@ -1622,11 +1623,11 @@ msgid "All Double" msgstr "Tudo Duplo" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1634,7 +1635,7 @@ msgid "All Files" msgstr "Todos os arquivos" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Todos os arquivos (*)" @@ -1643,7 +1644,7 @@ msgstr "Todos os arquivos (*)" msgid "All Float" msgstr "Todos Flutuantes" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Todos os arquivos do GC/Wii" @@ -1652,8 +1653,8 @@ msgstr "Todos os arquivos do GC/Wii" msgid "All Hexadecimal" msgstr "Tudo Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos os Estados Salvos (*.sav *.s##);;Todos os arquivos (*)" @@ -1665,7 +1666,7 @@ msgstr "Todos os Inteiros Assinados" msgid "All Unsigned Integer" msgstr "Todos os Inteiros Não Assinados" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Todos os arquivos (*)" @@ -1677,15 +1678,15 @@ 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:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Permitir Configurações de Região Incompatíveis" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Permitir Envio de Estatísticas de Uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Permitir Gravações no Cartão SD" @@ -1715,7 +1716,7 @@ msgstr "Sempre" msgid "Always Connected" msgstr "Sempre Conectado" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "Sempre &Visível" @@ -1753,15 +1754,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualquer Região" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Anexar assinatura a" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Anexar ao &Arquivo de Assinatura Existente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Apl&icar Arquivo de Assinatura..." @@ -1781,7 +1782,7 @@ msgstr "Data do Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Aplicar arquivo de assinatura" @@ -1813,12 +1814,16 @@ msgstr "Tem certeza?" msgid "Area Sampling" msgstr "Amostragem da Área" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Proporção de Tela" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Proporção de Tela:" @@ -1826,7 +1831,7 @@ msgstr "Proporção de Tela:" msgid "Assemble" msgstr "Assemble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "Instruções do Assembly" @@ -1834,7 +1839,7 @@ msgstr "Instruções do Assembly" msgid "Assembler" msgstr "Assembler" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "Arquivo Assembly" @@ -1853,7 +1858,7 @@ msgstr "" "Pelos menos dois dos arquivos de salvamento selecionados tem o mesmo nome de " "arquivo interno." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Conectar o Motion Plus" @@ -1861,11 +1866,11 @@ msgstr "Conectar o Motion Plus" msgid "Audio" msgstr "Áudio" -#: 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 "Configurações do Alongamento de Áudio" @@ -1877,12 +1882,12 @@ msgstr "Austrália" msgid "Author" msgstr "Autor" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Autores" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automática" @@ -1890,11 +1895,7 @@ msgstr "Automática" msgid "Auto (Multiple of 640x528)" msgstr "Automática (Múltipla de 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "Auto-Salvar" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Configurações de Atualização Automática" @@ -1910,7 +1911,7 @@ msgstr "" "\n" "Por favor selecione uma resolução interna específica." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Auto-Ajustar o Tamanho da Janela" @@ -1918,15 +1919,15 @@ msgstr "Auto-Ajustar o Tamanho da Janela" msgid "Auto-Hide" msgstr "Ocultar Automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Auto-detectar os módulos do RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Sincronizar Automaticamente com a Pasta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1935,18 +1936,18 @@ msgstr "" "interna.

Na dúvida, mantenha essa opção desativada." "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Atualizar automaticamente os Valores Atuais" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Auxiliar" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1954,7 +1955,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT Incorreto, Dolphin vai fechar agora" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1964,31 +1965,35 @@ msgstr "" "válido do Nintendo GameCube deve ser usado. Gere um novo endereço MAC " "iniciando com 00:09:bf ou 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Registrador BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Cadeia Traseira" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -2004,13 +2009,13 @@ msgstr "Entrada de Dados em Segundo Plano" msgid "Backward" msgstr "Para trás" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Valor Ruim Dado" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Endereço ruim fornecido." @@ -2018,20 +2023,20 @@ msgstr "Endereço ruim fornecido." msgid "Bad dump" msgstr "Cópia com erros" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Deslocamento ruim fornecido." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Valor ruim fornecido." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -2051,15 +2056,15 @@ msgstr "Barra" msgid "Base Address" msgstr "Endereço Base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Prioridade base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Configurações Básicas" @@ -2067,17 +2072,17 @@ msgstr "Configurações Básicas" msgid "Bass" msgstr "Baixo" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" "O modo linha de comando não pode ser usado sem especificar um jogo para " "executar." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Bateria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (mensalmente)" @@ -2101,33 +2106,33 @@ msgstr "Bi-cúbico: Mitchell-Netravali" msgid "Bilinear" msgstr "Bilinear" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "SSL Binário" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "SSL Binário (leitura)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "SSL Binário (gravação)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Taxa de Bits (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"Falha ao criar figura em branco em\n" -"%1, tente novamente com um personagem diferente" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Tamanho do Bloco" @@ -2136,7 +2141,7 @@ msgstr "Tamanho do Bloco" msgid "Block Size:" msgstr "Tamanho do Bloco:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Bloqueio" @@ -2166,32 +2171,143 @@ msgstr "" "foi compilada sem o libusb. O modo de redirecionamento não pode ser " "utilizado." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Do Início até a Pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 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:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Arquivo de chaves do BootMii (*.bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Tela Cheia Sem Bordas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Embaixo" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Vertentes" @@ -2229,11 +2345,11 @@ msgstr "Adaptador de Banda Larga (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Adaptador de Banda Larga (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "Configuração DNS do Adaptador de Banda Larga" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Erro no Adaptador de Banda Larga" @@ -2243,11 +2359,11 @@ 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:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2282,7 +2398,7 @@ msgstr "Botão" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2298,7 +2414,7 @@ msgstr "Botão" msgid "Buttons" msgstr "Botões" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "Por: %1" @@ -2308,11 +2424,11 @@ msgstr "Por: %1" msgid "C Stick" msgstr "Eixo C" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "C&riar Arquivo de Assinatura..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "Registrador CP" @@ -2324,7 +2440,7 @@ msgstr "Mecanismo de Emulação da CPU:" msgid "CPU Options" msgstr "Opções da CPU" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2332,7 +2448,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Interpretador com Cache (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2343,7 +2459,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Calcular" @@ -2360,11 +2476,11 @@ msgstr "" "no desempenho ou problemas gráficos.

Na dúvida, " "mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Calibrar" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Calibração" @@ -2372,19 +2488,19 @@ msgstr "Calibração" msgid "Calibration Period" msgstr "Período de Calibração" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Lista de exibição de chamadas em %1 com tamanho %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Chamadores" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Chamadas" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Callstack" @@ -2393,69 +2509,81 @@ msgid "Camera 1" msgstr "Câmera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 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:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "Ainda não pode ser modificado!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "Não consegue editar os vilões pra esse troféu!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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 " "execução!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Cancelar Calibração" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Não foi possível executar SingleStep no FIFO. Use Avançar Quadro no lugar." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Não foi possível iniciar esse WAD porque ele não pôde ser instalado na NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Não foi possível encontrar o IPL do GameCube." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Não é possível gerar um código AR para este endereço." @@ -2463,20 +2591,22 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 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:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Vilão capturado %1:" @@ -2494,7 +2624,7 @@ msgstr "Centro" msgid "Center Mouse" msgstr "Centralizar Mouse" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Centralizar e Calibrar" @@ -2502,7 +2632,7 @@ msgstr "Centralizar e Calibrar" msgid "Change &Disc" msgstr "Trocar &Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "&Trocar Disco..." @@ -2510,7 +2640,7 @@ msgstr "&Trocar Disco..." msgid "Change Disc" msgstr "Trocar Disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Trocar Discos Automaticamente" @@ -2518,7 +2648,7 @@ msgstr "Trocar Discos Automaticamente" msgid "Change the disc to {0}" msgstr "Trocar o disco para {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2556,7 +2686,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:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "O personagem informado é inválido!" @@ -2568,15 +2698,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editor de Código de Cheat" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Pesquisa de Cheats" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Gerenciador de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Verificar NAND..." @@ -2584,7 +2714,7 @@ msgstr "Verificar NAND..." msgid "Check for Game List Changes in the Background" msgstr "Monitorar Alterações na Lista de Jogos em Segundo Plano" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Verificar atualizações" @@ -2604,27 +2734,27 @@ msgstr "Checksum" msgid "China" msgstr "China" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "..." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Abrir" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: 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:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Escolha a prioridade do arquivo de entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Escolha o arquivo secundário de entrada dos dados" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Escolher a pasta base do GCI" @@ -2651,15 +2781,19 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Limpar" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Limpar Cache" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Limpar Slot" @@ -2667,7 +2801,7 @@ msgstr "Limpar Slot" msgid "Clock Override" msgstr "Velocidade de Clock" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Duplicar e &Editar Código..." @@ -2676,37 +2810,21 @@ msgstr "Duplicar e &Editar Código..." msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Co&nfigurações" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Código" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Ferramenta de Diferenciação do Código" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Ajuda da Ferramenta de Diferenciação do Código" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "O código não foi executado" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "O código foi executado" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2732,7 +2850,11 @@ msgstr "Correção de Cores:" msgid "Color Space" msgstr "Espaço de Cores" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Combinar &Dois Arquivos de Assinatura..." @@ -2766,7 +2888,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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compilar Shaders Antes de Iniciar" @@ -2774,9 +2896,9 @@ msgstr "Compilar Shaders Antes de Iniciar" msgid "Compiling Shaders" msgstr "Compilando Shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Compressão" @@ -2789,10 +2911,16 @@ msgstr "Nível da Compressão:" msgid "Compression:" msgstr "Compressão:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2913,7 +3041,7 @@ msgstr "" "será dado se for retornado um NaN e a variável que se tornou NaN será " "registrada." -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Configurar" @@ -2946,13 +3074,13 @@ msgstr "Configurar a Saída dos Dados" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Confirmar mudança de backend" @@ -2960,7 +3088,7 @@ msgstr "Confirmar mudança de backend" msgid "Confirm on Stop" msgstr "Confirmar ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2971,15 +3099,15 @@ msgstr "Confirmação" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Conectar/Desconectar Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Wii Remote %1" @@ -2999,7 +3127,7 @@ msgstr "Conectar/Desconectar Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Conectar/Desconectar Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Conectar Wii Remotes" @@ -3040,7 +3168,7 @@ msgstr "Controlar Modo Golfe do NetPlay" msgid "Control Stick" msgstr "Eixo Principal" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Perfil do Controle" @@ -3064,7 +3192,7 @@ msgstr "Perfil do Controle 4" msgid "Controller Settings" msgstr "Configuração dos Controles" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Controles" @@ -3150,8 +3278,8 @@ msgstr "Convergência" msgid "Convergence:" msgstr "Convergência:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Falha na conversão." @@ -3159,9 +3287,9 @@ msgstr "Falha na conversão." msgid "Convert" msgstr "Converter" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3169,9 +3297,9 @@ msgstr "Converter Arquivo para Pasta Agora" msgid "Convert File..." msgstr "Converter Arquivo..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3194,8 +3322,8 @@ msgstr "" "a conversão para ISO. Deseja continuar assim mesmo?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Convertendo..." @@ -3248,15 +3376,15 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Copiar &função" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Copiar &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Copiar Endereço" @@ -3264,19 +3392,19 @@ msgstr "Copiar Endereço" msgid "Copy Failed" msgstr "Falha ao Copiar" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Copiar Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Copiar Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Copiar &linha de código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "Copiar o end&ereço do alvo" @@ -3294,6 +3422,11 @@ msgstr "Copiar para B" msgid "Core" msgstr "Core" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Corrigir Espaço de Cores" @@ -3303,7 +3436,7 @@ msgid "Correct SDR Gamma" msgstr "Corrigir Gama SDR" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Custo" @@ -3401,7 +3534,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Não foi possível reconhecer o arquivo {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Não pôde salvar suas mudanças!" @@ -3446,13 +3579,13 @@ msgstr "Não foi possível ler o arquivo." msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Criar" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Criar Arquivo do Infinity" @@ -3461,15 +3594,11 @@ msgstr "Criar Arquivo do Infinity" msgid "Create New Memory Card" msgstr "Criar Novo Memory Card" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Criar Arquivo do Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Criar Pasta do Skylander" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Criar mapeamentos pra outros dispositivos" @@ -3478,23 +3607,8 @@ msgstr "Criar mapeamentos pra outros dispositivos" msgid "Create..." msgstr "Criar..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Exporta quadros e salva capturas de tela na resolução interna do " -"renderizador ao invés do tamanho da janela de renderização.

Se a " -"proporção de tela for widescreen, a imagem de saída será redimensionada " -"horizontalmente para preservar a resolução vertical." -"

Na dúvida, mantenha essa opção desativada." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Autor:" @@ -3502,11 +3616,11 @@ msgstr "Autor:" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Cortar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3522,11 +3636,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: 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:380 +#: 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, " @@ -3537,15 +3651,15 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Região Atual" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Valor atual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Contexto atual" @@ -3553,27 +3667,31 @@ msgstr "Contexto atual" msgid "Current game" msgstr "Jogo atual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Thread atual" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personalizar" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Espaço do Endereço Personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Altura da Proporção do Aspecto Personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Largura da Proporção do Aspecto Personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Proporção do Aspecto Personalizada:" @@ -3585,13 +3703,13 @@ msgstr "Opções do RTC Personalizado" msgid "Custom:" msgstr "Personalizado:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Personalizar" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3616,7 +3734,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" @@ -3624,15 +3742,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)" @@ -3658,7 +3776,7 @@ msgstr "Tapete de Dança" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Trevas" @@ -3674,7 +3792,7 @@ msgstr "Partição de Dados (%1)" msgid "Data Transfer" msgstr "Sincronizando Dados" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Tipo dos Dados" @@ -3707,8 +3825,8 @@ msgstr "Zona Morta" msgid "Debug" msgstr "Depuração" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Depuração" @@ -3717,7 +3835,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:" @@ -3764,7 +3882,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" @@ -3776,11 +3894,11 @@ msgstr "Fonte Padrão" msgid "Default ISO:" msgstr "ISO padrão:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Thread padrão" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Adiar Invalidação do Cache do EFB" @@ -3788,7 +3906,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:384 +#: 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 " @@ -3834,26 +3952,53 @@ msgstr "Porcentagem da Profundidade:" msgid "Depth:" msgstr "Profundidade:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Descrição:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "Descrição: %1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Separado" @@ -3861,7 +4006,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Detectando os Módulos do RSO" @@ -3869,7 +4014,7 @@ msgstr "Detectando os Módulos do RSO" msgid "Deterministic dual core:" msgstr "Dual core determinístico:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Dev (todos os dias)" @@ -3878,7 +4023,7 @@ msgid "Device" msgstr "Dispositivo" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "PID do Dispositivo (ex.: 0305)" @@ -3887,11 +4032,11 @@ msgid "Device Settings" msgstr "Configurações do Dispositivo" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3899,11 +4044,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Diferença" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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 " @@ -3917,12 +4058,12 @@ msgstr "Conexão Direta" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "Des&conectado" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Desativar" @@ -3934,7 +4075,7 @@ msgstr "Desativar Bounding Box" msgid "Disable Copy Filter" msgstr "Desativar Filtro de Cópia" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Desativar Cópias VRAM do EFB" @@ -3942,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:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Desativar Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "Desativar Arena do Fastmem" @@ -3954,11 +4095,11 @@ msgstr "Desativar Arena do Fastmem" msgid "Disable Fog" msgstr "Desativar Névoa" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Desativar Cache do JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "Desativar o Mapa dos Pontos de Entrada Grandes" @@ -3977,7 +4118,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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.
Na " "dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4344,7 +4481,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: 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,15 +4500,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandês" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "S&air" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "Cópia do EFB %1" @@ -4405,7 +4542,7 @@ msgstr "Atualizações Prévias de Memória" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Terra" @@ -4418,7 +4555,7 @@ msgstr "Ásia Oriental" msgid "Edit Breakpoint" msgstr "Editar Ponto de Interrupção" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Editar..." @@ -4434,15 +4571,15 @@ msgstr "Efeito" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Efetivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Prioridade efetiva" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4452,7 +4589,7 @@ msgstr "Ejetar Disco" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Elemento" @@ -4460,11 +4597,11 @@ msgstr "Elemento" msgid "Embedded Frame Buffer (EFB)" msgstr "Frame Buffer Embutido (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Vazio" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread de Emulação já está em execução" @@ -4472,11 +4609,11 @@ 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:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Emular Base Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Emular Portal Skylander" @@ -4492,7 +4629,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:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Dispositivos USB Emulados" @@ -4515,28 +4652,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Velocidade de Emulação" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "A emulação deve ser iniciada antes de gravar um arquivo." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "A emulação deve ser iniciada antes de salvar um arquivo." - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "A emulação deve ser iniciada pra gravar." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Ativar Camadas de Validação da API" @@ -4548,11 +4673,11 @@ msgstr "Ativar Ícones de Conquistas" msgid "Enable Achievements" msgstr "Ativar Conquistas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Ativar Alongamento de Áudio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Ativar Cheats" @@ -4572,7 +4697,7 @@ msgstr "Ativar Interface de Depuração" msgid "Enable Dual Core" msgstr "Ativar Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Ativar Dual Core (aumento na velocidade)" @@ -4592,7 +4717,7 @@ msgstr "Ativar Conquistas Encore" msgid "Enable FPRF" msgstr "Ativar FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Ativar Mods Gráficos" @@ -4634,6 +4759,10 @@ msgstr "" "atual antes de ativar.
Fique ciente que desligar o Modo Hardcore enquanto " "um jogo está em execução requer que o jogo seja fechado antes de reativá-lo." +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "Ativar Placar de Líderes" @@ -4647,7 +4776,7 @@ msgstr "Ativar MMU" msgid "Enable Progress Notifications" msgstr "Ativar Notificações de Progresso" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Ativar Varredura Progressiva" @@ -4660,11 +4789,11 @@ msgid "Enable Rich Presence" msgstr "Ativar Status de Atividade" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Ativar Vibração" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ativar Proteção de Tela" @@ -4676,15 +4805,15 @@ msgstr "Ativar Dados do Auto-Falante" msgid "Enable Unofficial Achievements" msgstr "Ativar Conquistas Não Oficiais" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Ativar Envio de Estatísticas de Uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Ativar WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ativar Wireframe" @@ -4782,7 +4911,7 @@ msgstr "" "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:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4829,7 +4958,7 @@ msgstr "" "absolutamente necessária.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4842,7 +4971,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4870,7 +4999,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 " @@ -4908,7 +5037,7 @@ msgstr "" "(ON = Compatível, OFF = Rápido)

Na dúvida, mantenha " "essa opção desativada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4920,7 +5049,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:302 +#: 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 " @@ -4933,7 +5062,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4964,7 +5093,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:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglês" @@ -4973,7 +5102,7 @@ msgstr "Inglês" msgid "Enhancements" msgstr "Melhorias" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "Informe o endereço IP do dispositivo executando o cliente XLink Kai:" @@ -4995,11 +5124,17 @@ msgstr "Informe o endereço MAC do Adaptador de Banda Larga:" msgid "Enter password" msgstr "Inserir senha" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Informe o endereço do servidor DNS:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Insira o endereço do módulo do RSO:" @@ -5008,8 +5143,8 @@ msgstr "Insira o endereço do módulo do RSO:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -5020,45 +5155,51 @@ msgstr "Insira o endereço do módulo do RSO:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -5068,16 +5209,16 @@ msgstr "Insira o endereço do módulo do RSO:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Erro" @@ -5094,9 +5235,9 @@ 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:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Erro ao converter valor" @@ -5108,7 +5249,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:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "Um erro ocorreu enquanto carregava alguns pacotes de texturas" @@ -5176,7 +5317,7 @@ msgstr "Erro: GBA{0} - falha ao abrir os dados salvos em {1}" msgid "Error: This build does not support emulated GBA controllers" msgstr "Erro: essa compilação não é compatível com controles GBA emulados" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -5184,7 +5325,7 @@ msgstr "" "ERRO: Tentando acessar as fontes Shift JIS, mas elas não foram carregadas. " "Os jogos podem não mostrar as fontes corretamente, ou travarem." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -5205,57 +5346,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"Exemplo:\n" -"Você quer achar uma função que execute quando o HP é modificado.\n" -"1. Comece a gravar e reproduza o jogo sem deixar que o HP ser modificado, " -"então pressione 'O código não foi executado'.\n" -"2. Ganhe/perca imediatamente o HP e pressione 'O código foi executado'.\n" -"3. Repita o 1 ou 2 pra reduzir os resultados.\n" -"Inclui (O código foi executado) deve ter gravações curtas focando no que " -"você quer.\n" -"\n" -"Pressionar 'O código foi executado' duas vezes só manterá as funções que " -"executaram em ambas as gravações. Os acertos serão atualizados pra refletir " -"o número de acertos da última gravação. O total de acertos refletirá o " -"número total de vezes que uma função foi executada até que as listas sejam " -"limpas com o Reset.\n" -"\n" -"Clicar com o botão direito em-> 'Definir blr' colocará um blr no topo do " -"símbolo.\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Excluído: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Excluído: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershaders Exclusivos" @@ -5263,7 +5359,7 @@ msgstr "Ubershaders Exclusivos" msgid "Exit" msgstr "Sair" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Esperado + ou parênteses fechados." @@ -5271,7 +5367,7 @@ msgstr "Esperado + ou parênteses fechados." msgid "Expected arguments: " msgstr "Argumentos esperados: " -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Esperava parêntese fechado." @@ -5283,15 +5379,15 @@ msgstr "Esperava vírgula." msgid "Expected end of expression." msgstr "Fim esperado da expressão." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Nome esperado da entrada dos dados." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Parêntese esperado da abertura." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Início esperado da expressão." @@ -5299,11 +5395,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:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportar Todos os Dados Salvos do Wii" @@ -5318,7 +5414,7 @@ msgstr "Falha ao Exportar" msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -5346,14 +5442,14 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n dado(s) salvo(s) exportado(s)" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Acessório" @@ -5374,7 +5470,7 @@ msgstr "IP Externo" msgid "External Frame Buffer (XFB)" msgstr "Frame Buffer Externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Extrair Certificados da NAND" @@ -5407,12 +5503,12 @@ msgid "Extracting Directory..." msgstr "Extraindo Diretório..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO Player" @@ -5432,7 +5528,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Falha ao anexar ao arquivo de assinatura '%1'" @@ -5441,13 +5537,13 @@ msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" "Falha ao solicitar acesso à interface para o redirecionamento Bluetooth: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Falha ao remover Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "Falha ao remover o Skylander do slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5474,23 +5570,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Falha ao criar arquivo do Infinity!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Falha ao criar arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Falha ao criar arquivo do Skylander:\n" -"%1\n" -"(Skylander pode já estar inserido no portal)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5515,15 +5609,15 @@ msgstr "" "Falha ao descarregar o driver do kernel para o redirecionamento Bluetooth: " "{0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Falha ao baixar os códigos." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Falha no despejo de %1: Não foi possível abrir o arquivo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Falha no despejo de %1: Falha ao escrever no arquivo" @@ -5536,7 +5630,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Falha ao extrair os certificados da NAND" @@ -5562,22 +5656,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Falha ao localizar um ou mais símbolos do Direct3D" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "Falhou em achar ou abrir o arquivo: %1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Falha ao importar \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5585,7 +5675,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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5596,7 +5686,7 @@ msgstr "" "NAND (Ferramentas -> Gerenciar NAND -> Verificar NAND...) , então importe os " "dados salvos novamente." -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Falha ao inicializar o núcleo" @@ -5610,7 +5700,7 @@ msgstr "" "Certifique-se de que sua GPU suporta pelo menos a versão 10.0 do Direct3D.\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Falha ao inicializar as classes do renderizador" @@ -5619,11 +5709,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Falha ao instalar esse software na NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5631,8 +5721,8 @@ msgstr "" "Falha ao acessar a porta %1. Existe outra instância do servidor NetPlay em " "execução?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Falha ao carregar o módulo RSO em %1" @@ -5644,19 +5734,21 @@ msgstr "Falha ao carregar d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Falha ao carregar dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Falha ao carregar o arquivo de mapa '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Falha ao carregar arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Falha ao carregar arquivo do Skylander (%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Falha ao carregar o executável para a memória." @@ -5668,13 +5760,21 @@ msgstr "" "Falha ao carregar {0}. Se você estiver usando o Windows 7, tente instalar o " "pacote de atualização KB4019990." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Falha ao modificar o Skylander!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Falha ao abrir '%1'" @@ -5682,6 +5782,10 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Falha ao abrir o arquivo de configuração!" @@ -5711,33 +5815,33 @@ msgstr "" msgid "Failed to open file." msgstr "Falha ao abrir o arquivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Falha ao abrir o servidor" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Falha ao abrir arquivo do Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Falha ao carregar arquivo do Infinity (%1)!\n" -"O arquivo pode já estar sendo utilizado na base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Falha ao abrir arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Falha ao carregar arquivo do Skylander (%1)!\n" -"O arquivo pode já estar sendo utilizado no portal." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5759,7 +5863,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Falha ao processar dados do Redump.org" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "Falha ao converter o valor fornecido no tipo de dados de destino." @@ -5783,39 +5887,35 @@ msgstr "" "Falha ao ler o(s) arquivo(s) de jogo(s) salvo(s) selecionado(s) do Memory " "Card." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Falha ao ler arquivo do Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Falha ao ler arquivo do Infinity (%1)!\n" -"O arquivo é muito pequeno." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Falha ao ler arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Falha ao ler arquivo do Skylander (%1)!\n" -"O arquivo é muito pequeno." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"Falhou em ler o conteúdo do arquivo\n" -"\n" -"\"%1\"" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5857,31 +5957,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 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Falha ao salvar o log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Falha ao salvar o mapa de códigos no local '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "Falhou em salvar o arquivo em: %1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Falha ao salvar o arquivo de assinatura '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 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:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5938,7 +6038,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Falha" @@ -5946,11 +6046,11 @@ msgstr "Falha" msgid "Fair Input Delay" msgstr "Host Imparcial" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Configurações de Região" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Região Padrão:" @@ -5963,7 +6063,7 @@ msgstr "Rápido" msgid "Fast Depth Calculation" msgstr "Cálculo Rápido de Profundidade" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5976,11 +6076,11 @@ msgstr "" msgid "Field of View" msgstr "Campo de Visualização" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "Número da Figura:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "Tipo de Figura" @@ -5988,9 +6088,9 @@ msgstr "Tipo de Figura" msgid "File Details" msgstr "Detalhes do Arquivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Formato" @@ -6002,20 +6102,20 @@ msgstr "Formato do Arquivo:" msgid "File Info" msgstr "Informações do Arquivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Nome do Arquivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Local" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Tamanho" @@ -6023,7 +6123,7 @@ msgstr "Tamanho" msgid "File Size:" msgstr "Tamanho do Arquivo:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "O arquivo não continha códigos." @@ -6063,15 +6163,15 @@ msgstr "Sistema de Arquivos" msgid "Filters" msgstr "Filtros" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Achar o &Próximo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Achar o &Anterior" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Concluir Calibração" @@ -6085,7 +6185,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Fogo" @@ -6101,31 +6201,32 @@ msgstr "Corrigir checksums" msgid "Fix Checksums Failed" msgstr "Falha ao Corrigir Checksums" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bandeiras" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Flutuação" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Seguir &vertente" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Para melhores resultados, mova lentamente o eixo correspondente para todas " @@ -6139,7 +6240,7 @@ msgstr "" "Para instruções de configuração, consulte essa página." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -6147,7 +6248,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" @@ -6155,7 +6256,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" @@ -6187,13 +6288,13 @@ msgstr "Forçar Porta de Escuta:" msgid "Force Nearest" msgstr "Forçar Pelo Mais Próximo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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 " @@ -6244,17 +6345,17 @@ msgstr "Para frente" msgid "Forward port (UPnP)" msgstr "Abrir porta (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "%1 resultados encontrados para \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "%n endereço(s) encontrado(s)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Quadro %1" @@ -6275,7 +6376,7 @@ msgstr "Aumentar Velocidade" msgid "Frame Advance Reset Speed" msgstr "Redefinir Velocidade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Exportação de Quadros" @@ -6283,7 +6384,7 @@ msgstr "Exportação de Quadros" msgid "Frame Range" msgstr "Intervalo de Quadros" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Imagem(ns) da exportação de quadros '{0}' já existe(m). Substituir?" @@ -6307,7 +6408,7 @@ msgstr "Arquivos Livres: %1" msgid "Free Look Control Type" msgstr "Tipo de Controle do Olhar Livre" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Controle de Olhar Livre %1" @@ -6342,7 +6443,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:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francês" @@ -6366,7 +6467,7 @@ msgstr "De" msgid "From:" msgstr "De:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Tela Cheia" @@ -6398,7 +6499,7 @@ msgstr "Núcleo do GBA" msgid "GBA Port %1" msgstr "Porta do GBA %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "Configurações do GBA" @@ -6539,20 +6640,20 @@ msgstr "" "GPU: Sua placa de vídeo é compatível com o OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Jogo" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartuchos do Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6560,7 +6661,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:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance na Porta %1" @@ -6588,8 +6689,8 @@ msgstr "Gama do Jogo" msgid "Game Gamma:" msgstr "Gama do Jogo:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID do Jogo" @@ -6654,11 +6755,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Controle de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Controle de GameCube na Porta %1" @@ -6666,11 +6767,11 @@ msgstr "Controle de GameCube na Porta %1" msgid "GameCube Controllers" msgstr "Controles do GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Teclado de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Teclado de GameCube na Porta %1" @@ -6683,11 +6784,11 @@ msgid "GameCube Memory Cards" msgstr "Memory Cards do GameCube" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Memory Cards do GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "Microfone de GameCube no Slot %1" @@ -6715,7 +6816,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6725,35 +6826,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Geral" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Geral e Opções" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Gerar Código do Action Replay" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Gerar uma Nova ID de Estatísticas " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Código AR gerado com sucesso." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemão" @@ -6765,18 +6866,18 @@ msgstr "Alemanha" msgid "GetDeviceList failed: {0}" msgstr "Falha no GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "Gigante" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Gigantes" @@ -6789,8 +6890,8 @@ msgid "Good dump" msgstr "Cópia válida" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gráficos" @@ -6834,7 +6935,7 @@ msgstr "Verde Esquerdo" msgid "Green Right" msgstr "Verde Direito" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Exibição em Grade" @@ -6843,7 +6944,7 @@ msgstr "Exibição em Grade" msgid "Guitar" msgstr "Guitarra" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Giroscópio" @@ -6871,36 +6972,35 @@ msgstr "Pós-Processamento HDR" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Cabeça" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Ajuda" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Nível do herói:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "String do Byte Hexadecimal" @@ -6913,7 +7013,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Ocultar" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Ocultar Tudo" @@ -6929,12 +7033,12 @@ msgstr "Esconder Sessões Incompatíveis" msgid "Hide Remote GBAs" msgstr "Ocultar GBAs Remotos" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6943,14 +7047,8 @@ msgstr "Muito Alto" msgid "Hit Strength" msgstr "Força da Batida" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Acertos" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Campo de Visão Horizontal" @@ -6967,7 +7065,7 @@ msgstr "Código da Sala:" msgid "Host Input Authority" msgstr "Host Autoritário" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Tamanho do Hospedeiro" @@ -6996,16 +7094,16 @@ msgstr "Host autoritário ativado" msgid "Host with NetPlay" msgstr "Hospedar no NetPlay" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Nome do Hospedeiro" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Configurações das Teclas de Atalho" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Teclas de Atalho" @@ -7014,7 +7112,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:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershaders Híbridos" @@ -7028,16 +7126,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Estou ciente dos riscos e quero continuar" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr " A ID informada é inválida!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -7078,7 +7176,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilidade do Ponteiro:" @@ -7131,11 +7229,11 @@ msgstr "" "Adequado para jogos baseados em turnos com controles sensíveis ao tempo, " "como golfe." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "ID de Estatísticas" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -7208,11 +7306,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorar" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorar Mudanças de Formato" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Ignorar nesta sessão" @@ -7245,7 +7347,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Exibir o XFB Imediatamente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -7260,7 +7362,7 @@ msgstr "" "levemente o desempenho.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Importar Backup da NAND do BootMii..." @@ -7275,15 +7377,15 @@ msgstr "Falha ao Importar" msgid "Import Save File(s)" msgstr "Importar Arquivo(s) de Jogo Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importar Dados Salvos do Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importando backup da NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7296,15 +7398,6 @@ msgstr "" msgid "In-Game?" msgstr "Dentro do Jogo?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Incluído: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Incluído: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7318,27 +7411,27 @@ msgstr "" "salvar ou carregar um estado salvo.

Na dúvida, " "mantenha essa opção ativada." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "Valor incorreto do nível do herói!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "Hora incorreta da última colocação!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "Hora incorreta da último reset!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "Valor do dinheiro incorreto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "Apelido incorreto!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "Valor do tempo de jogo incorreto!" @@ -7383,15 +7476,16 @@ msgstr "Rotação Incremental" msgid "Incremental Rotation (rad/sec)" msgstr "Rotação Incremental (rad/seg)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Criador de Figura Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Gerenciador do Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Objeto Infinity (*.bin);;" @@ -7413,8 +7507,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informação" @@ -7428,10 +7522,10 @@ msgstr "Injetar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Entrada de Dados" @@ -7445,20 +7539,26 @@ 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/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Inserir &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir Cartão SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Inspecionado" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7472,7 +7572,7 @@ msgstr "Partição de Instalação (%1)" msgid "Install Update" msgstr "Instalar Atualização" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7480,11 +7580,13 @@ msgstr "Instalar WAD..." msgid "Install to the NAND" msgstr "Instalar na NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instruções." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instrução" @@ -7493,7 +7595,7 @@ msgstr "Instrução" msgid "Instruction Breakpoint" msgstr "Ponto de Interrupção da Instrução" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instrução:" @@ -7502,7 +7604,7 @@ msgstr "Instrução:" msgid "Instruction: %1" msgstr "Instrução: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7523,19 +7625,19 @@ msgstr "Intensidade" msgid "Interface" msgstr "Interface" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Erro Interno do LZ4 - falha ao extrair {0} bytes" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Erro Interno do LZ4 - falha na compressão" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 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:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Erro Interno do LZ4 - discrepância no tamanho do payload ({0} / {1})) " @@ -7548,7 +7650,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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7556,7 +7658,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:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7564,7 +7666,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:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7580,7 +7682,7 @@ msgstr "Resolução Interna" msgid "Internal Resolution:" msgstr "Resolução Interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Erro interno enquanto gera o código AR." @@ -7588,11 +7690,11 @@ msgstr "Erro interno enquanto gera o código AR." msgid "Interpreter (slowest)" msgstr "Interpretador (muito lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Núcleo do Interpretador" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Expressão Inválida" @@ -7604,7 +7706,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:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "O pacote %1 fornecido é inválido: %2" @@ -7613,11 +7715,11 @@ msgstr "O pacote %1 fornecido é inválido: %2" msgid "Invalid Player ID" msgstr "ID de Jogador Inválida" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Endereço do módulo do RSO inválido: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Callstack inválido" @@ -7646,7 +7748,7 @@ msgstr "Entrada de dados inválida fornecida" msgid "Invalid literal." msgstr "Literal inválido." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Parâmetros inválidos dados pra procurar." @@ -7658,21 +7760,21 @@ msgstr "Senha inválida fornecida." msgid "Invalid recording file" msgstr "Arquivo de gravação inválido" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Parâmetros de pesquisa inválidos (nenhum objeto selecionado)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "String de pesquisa inválida (apenas comprimentos correspondentes de string " "são suportados)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "ID do título inválida." @@ -7682,7 +7784,7 @@ 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:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7691,63 +7793,63 @@ msgid "Italy" msgstr "Itália" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "Item" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "Ligação dos Blocos do JIT Desligado" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "Blocos do JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "Vertente do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "Ponto Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "Inteiro do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "LoadStore Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "LoadStore do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "LoadStore Emparelhado do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "LoadStore lXz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "LoadStore lbzx do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "LoadStore lwz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT Desligado (Núcleo do JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "Emparelhamento do JIT Desligado" @@ -7759,16 +7861,16 @@ msgstr "Recompilador JIT ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "Registro do Cache do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "Registros do Sistema do JIT Desligado" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7777,12 +7879,16 @@ msgstr "" "nunca deveria acontecer. Por favor relate este incidente no bug tracker. O " "Dolphin irá fechar agora." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japão" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonês" @@ -7793,7 +7899,7 @@ msgstr "Japonês" msgid "Japanese (Shift-JIS)" msgstr "Japonesa (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7801,7 +7907,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:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Manter em Execução" @@ -7815,7 +7921,7 @@ msgstr "Manter Janela no Topo" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Manter os endereços aonde o valor esta na memória" @@ -7836,7 +7942,7 @@ msgstr "Teclado" msgid "Keys" msgstr "Teclas" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7844,12 +7950,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Remover Jogador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Coréia" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -7860,7 +7966,7 @@ msgstr "Coreano" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "Abrir R&OM..." @@ -7870,7 +7976,7 @@ msgstr "Abrir R&OM..." msgid "L-Analog" msgstr "L (analógico)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "Save do LR" @@ -7878,35 +7984,37 @@ msgstr "Save do LR" msgid "Label" msgstr "Rótulo" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Último Valor" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "Última colocação:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7982,13 +8090,13 @@ msgstr "" msgid "Levers" msgstr "Alavancas" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licença" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Vida" @@ -8002,7 +8110,7 @@ msgstr "Lift" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Luz" @@ -8010,11 +8118,11 @@ msgstr "Luz" msgid "Limit Chunked Upload Speed:" msgstr "Limitar Velocidade de Envio de Fragmentos:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Selecionar Colunas" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Exibição em Lista" @@ -8025,29 +8133,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Carregar o &Arquivo do Mapa Ruim..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Carregar o &Outro Arquivo do Mapa..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carregar Texturas Personalizadas" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Carregar Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Carregar Menu Principal do GameCube" @@ -8068,7 +8183,7 @@ msgstr "Carregamento:" msgid "Load ROM" msgstr "Abrir ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Carregar Slot" @@ -8157,19 +8272,19 @@ msgstr "Carregar do Slot 8" msgid "Load State Slot 9" msgstr "Carregar do Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Carregar do Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Carregar do Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Carregar Wii System Menu %1" @@ -8181,16 +8296,16 @@ msgstr "Carregar e Armazenar Dados Salvos do Host" msgid "Load from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Carregar o arquivo do mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Carregar vWii System Menu %1" @@ -8198,11 +8313,11 @@ msgstr "Carregar vWii System Menu %1" msgid "Load..." msgstr "Carregar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Símbolos carregados do '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -8213,7 +8328,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8236,7 +8351,7 @@ msgid "Locked" msgstr "Trancado" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8248,7 +8363,7 @@ msgstr "Configurações" msgid "Log In" msgstr "Entrar" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Registrar Cobertura das Instruções do JIT" @@ -8256,7 +8371,7 @@ msgstr "Registrar Cobertura das Instruções do JIT" msgid "Log Out" msgstr "Sair" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Registrar Tempo de Renderização" @@ -8272,7 +8387,7 @@ msgstr "Saída de Dados" msgid "Login Failed" msgstr "Falha no Login" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8291,16 +8406,16 @@ 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:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8308,7 +8423,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUNDO" @@ -8318,7 +8433,7 @@ msgstr "Arquivos de GameShark da Mad Catz" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Magia" @@ -8326,37 +8441,37 @@ msgstr "Magia" msgid "Main Stick" msgstr "Eixo Principal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "Certifique-se que o valor do nível de herói esteja entre 0 e 100!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "Certifique-se que o último valor de data e hora colocado seja válido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "Certifique-se que o valor da data e hora do último reset seja válido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "Certifique-se que o valor do dinheiro esteja entre 0 e 65.000!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "Certifique-se que o apelido tenha entre 0 e 15 caracteres de tamanho!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "Certifique-se que o valor do tempo de jogo seja válido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 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:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Fabricante" @@ -8378,12 +8493,12 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Gerenciar NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Amostragem Manual de Texturas" @@ -8395,7 +8510,7 @@ msgstr "Mapeamento" msgid "Mask ROM" msgstr "Mask ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Combinação Achada" @@ -8412,16 +8527,16 @@ 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:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Médio" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Memória" @@ -8433,7 +8548,7 @@ msgstr "Pontos de Interrupção da Memória" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Gerenciador de Memory Cards" @@ -8445,7 +8560,7 @@ msgstr "Local do Memory Card:" msgid "Memory Override" msgstr "Alocação de Memória" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Opções do ponto de interrupção da memória" @@ -8461,7 +8576,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8473,29 +8588,33 @@ msgstr "" "recomendado manter um backup de ambas as NANDs. Tem certeza de que deseja " "continuar?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Microfone" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diversos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configurações Diversas" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8524,12 +8643,16 @@ msgstr "" "- Título: {3}\n" "- Hash: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8540,24 +8663,25 @@ msgstr "" "efeito.

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "Modificar Slot" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "Modificando o Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Módulos achados: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Dinheiro:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8569,16 +8693,16 @@ msgstr "Sombras Monoscópicas" msgid "Monospaced Font" msgstr "Fonte de Largura Fixa" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Dados de Movimento" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Simulação de Movimentos" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -8621,6 +8745,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8630,10 +8758,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "Não para T&odos" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Verificação da NAND" @@ -8642,8 +8770,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:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8652,7 +8780,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8675,25 +8803,25 @@ 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:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Nome" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Nome da nova etiqueta:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Nome da etiqueta a remover:" @@ -8702,7 +8830,7 @@ msgid "Name of your session shown in the server browser" msgstr "Nome da sua sessão mostrada no navegador do servidor" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8766,7 +8894,7 @@ msgstr "" msgid "Network" msgstr "Rede" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Formato do despejo de rede:" @@ -8796,7 +8924,7 @@ msgstr "Arquivo Novo" msgid "New File (%1)" msgstr "Novo Arquivo (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Nova Pesquisa" @@ -8804,7 +8932,7 @@ msgstr "Nova Pesquisa" msgid "New Tag..." msgstr "Nova Etiqueta..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Uma nova ID foi gerada." @@ -8812,7 +8940,7 @@ msgstr "Uma nova ID foi gerada." msgid "New instruction:" msgstr "Nova instrução:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Nova etiqueta" @@ -8821,7 +8949,7 @@ msgstr "Nova etiqueta" msgid "Next Game Profile" msgstr "Próximo Perfil de Jogo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Combinação Seguinte" @@ -8835,7 +8963,7 @@ msgid "Nickname is too long." msgstr "O apelido é muito longo." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Apelido:" @@ -8849,7 +8977,7 @@ msgstr "Não" msgid "No Adapter Detected" msgstr "Nenhum Adaptador Detectado" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "Sem Alinhamento" @@ -8863,7 +8991,7 @@ msgstr "Desativar Saída de Áudio" msgid "No Compression" msgstr "Sem Compressão" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Sem Combinação" @@ -8871,16 +8999,16 @@ msgstr "Sem Combinação" msgid "No Save Data" msgstr "Não Utilizar Dados Salvos" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "Não há dados pra modificar!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Nenhuma descrição disponível" @@ -8896,15 +9024,15 @@ msgstr "Nenhum acessório selecionado." msgid "No file loaded / recorded." msgstr "Nenhum arquivo carregado / gravado." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Nenhum jogo está em execução." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Nenhum jogo em execução" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "Nenhum mod gráfico selecionado." @@ -8913,7 +9041,7 @@ msgstr "Nenhum mod gráfico selecionado." msgid "No input" msgstr "Sem entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Não foram detectados problemas." @@ -8925,10 +9053,6 @@ msgstr "Nenhum jogo correspondente encontrado" msgid "No paths found in the M3U file \"{0}\"" msgstr "Nenhum caminho encontrado no arquivo M3U \"{0}\"" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "Não restam funções possíveis. Resetar." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Nenhum problema encontrado." @@ -8943,11 +9067,11 @@ msgstr "" "mas como os softwares do Wii contém muitos dados de verificação, " "provavelmente não existem problemas que afetarão a emulação." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Nenhum perfil encontrado pra configuração do jogo '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Nenhuma gravação carregada." @@ -8956,7 +9080,7 @@ msgstr "Nenhuma gravação carregada." msgid "No save data found." msgstr "Nenhum jogo salvo encontrado." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Arquivo undo.dtm não encontrado, cancelando reversão do carregamento de " @@ -8965,11 +9089,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Nenhum" @@ -9035,7 +9159,7 @@ msgid "Null" msgstr "Nulo" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -9070,10 +9194,58 @@ msgstr "Eixo do Nunchuk" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Objeto %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Intervalo de Objetos" @@ -9087,7 +9259,7 @@ msgstr "Oceânia" msgid "Off" msgstr "Desligado" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Deslocamento" @@ -9099,7 +9271,7 @@ msgstr "Ligado" msgid "On Movement" msgstr "Ao Mover" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -9109,7 +9281,22 @@ 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/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Documentação Online" @@ -9117,7 +9304,7 @@ msgstr "&Documentação Online" msgid "Only Show Collection" msgstr "Mostrar Apenas Coleção" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9125,7 +9312,7 @@ msgstr "" "Só anexar símbolos com o prefixo:\n" "(Em branco pra todos os símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9135,7 +9322,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Abrir" @@ -9144,11 +9331,11 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "Abrir &Local do Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Abrir Pasta do &Usuário" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Abrir Diretório..." @@ -9169,7 +9356,7 @@ msgstr "Abrir XML do Riivolution..." msgid "Open Wii &Save Folder" msgstr "Abrir Pasta de Dados &Salvos do Wii" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Abrir pasta de exportação" @@ -9202,11 +9389,11 @@ msgid "Operators" msgstr "Operadores" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opções" @@ -9219,13 +9406,36 @@ msgstr "Laranja" msgid "Orbital" msgstr "Orbital" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Outros" @@ -9238,7 +9448,7 @@ msgstr "Outra Partição (%1)" msgid "Other State Hotkeys" msgstr "Outros" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Gerenciamento de Estados Salvos" @@ -9258,16 +9468,16 @@ msgstr "Saída da Reamostragem" msgid "Output Resampling:" msgstr "Saída da Reamostragem:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Reproduzir Gravação de Replay..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -9276,15 +9486,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: 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:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG Compression Level:" @@ -9292,11 +9502,11 @@ msgstr "PNG Compression Level:" msgid "PNG image file (*.png);; All Files (*)" msgstr "Arquivo de imagem PNG (*.png);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Tamanho do PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC vs Hospedeiro" @@ -9309,11 +9519,11 @@ msgstr "Controle" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parâmetros" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Analisar como Hex" @@ -9364,11 +9574,15 @@ msgstr "Caminho:" msgid "Paths" msgstr "Locais" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pausar" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "&Pausar no Fim do Replay" @@ -9412,7 +9626,7 @@ msgstr "Velocidade pico dos movimentos de balanço externos." msgid "Per-Pixel Lighting" msgstr "Iluminação Por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Executar Atualização do Sistema Online" @@ -9420,33 +9634,33 @@ msgstr "Executar Atualização do Sistema Online" msgid "Perform System Update" msgstr "Executar Atualização do Sistema" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: 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:75 +#: 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:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Estatísticas de Desempenho" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Físico" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Espaço do endereço físico" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Escolha a fonte de depuração" @@ -9462,12 +9676,12 @@ msgstr "Pra baixo" msgid "Pitch Up" msgstr "Pra cima" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plataforma" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Reproduzir" @@ -9479,7 +9693,7 @@ msgstr "Reproduzir / Gravar" msgid "Play Recording" msgstr "Reproduzir Gravação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" @@ -9491,27 +9705,27 @@ msgstr "Opções de Reprodução" msgid "Player" msgstr "Jogador" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Jogador 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Jogador 1, Habilidade 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Jogador 1, Habilidade 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Jogador 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Jogador 2, Habilidade 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Jogador 2, Habilidade 2" @@ -9520,7 +9734,8 @@ msgstr "Jogador 2, Habilidade 2" msgid "Players" msgstr "Jogadores" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Tempo de jogo:" @@ -9534,7 +9749,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:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9542,17 +9757,21 @@ msgstr "" "memória padrão." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Apontar" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Porta %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "ROM da Porta %1:" @@ -9561,7 +9780,7 @@ msgstr "ROM da Porta %1:" msgid "Port:" msgstr "Porta:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Slots do Portal" @@ -9583,11 +9802,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Configurações do Shader de Pós-Processamento" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Pré-carregar Texturas Personalizadas" @@ -9595,11 +9814,11 @@ msgstr "Pré-carregar Texturas Personalizadas" 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:1314 +#: Source/Core/Core/Movie.cpp:1313 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:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Fim prematuro da gravação no PlayWiimote. {0} > {1}" @@ -9624,7 +9843,7 @@ msgstr "Sincronizar (Redirecionamento Bluetooth)" msgid "Pressure" msgstr "Pressão" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9644,7 +9863,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Perfil de Jogo Anterior" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Combinação Anterior" @@ -9655,7 +9874,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitivo %1" @@ -9667,7 +9886,7 @@ msgstr "Privada" msgid "Private and Public" msgstr "Privada e Pública" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problema" @@ -9707,8 +9926,8 @@ msgstr "Contador do Programa" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Progresso" @@ -9716,11 +9935,11 @@ msgstr "Progresso" msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Limpar Cache da Lista de Jogos" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Coloque as ROMs do IPL na pasta User/GC//." @@ -9740,7 +9959,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 " @@ -9749,7 +9968,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Pergunta" @@ -9770,19 +9989,19 @@ msgstr "R" msgid "R-Analog" msgstr "R (analógico)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "Módulos do RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "Auto-detecção do RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "EM EXECUÇÃO" @@ -9795,11 +10014,11 @@ msgstr "Imagens RVZ do GC/Wii (*.rvz)" msgid "Range" msgstr "Sensibilidade" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Final do Alcance: " -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Início do Alcance: " @@ -9811,7 +10030,11 @@ msgstr "Rank %1" msgid "Raw" msgstr "Bruto" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Su&bstituir instrução" @@ -9823,14 +10046,14 @@ msgstr "Ler" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Ler e gravar" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Somente-leitura" @@ -9851,10 +10074,15 @@ msgstr "Balance Board Real" msgid "Real Wii Remote" msgstr "Wii Remote Real" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9868,7 +10096,7 @@ msgstr "Gravar" msgid "Record Inputs" msgstr "Gravar a Entrada dos Dados" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Gravação" @@ -9910,7 +10138,7 @@ msgstr "" "de shader e nas texturas.

Na dúvida, selecione " "\"Nenhum\"." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Status no Redump.org:" @@ -9918,14 +10146,14 @@ msgstr "Status no Redump.org:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Atualizar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Atualizar Valores Atuais" @@ -9933,12 +10161,12 @@ msgstr "Atualizar Valores Atuais" msgid "Refresh Game List" msgstr "Atualizar Lista de Jogos" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" "A atualização falhou. Por favor execute o jogo um pouco e tente de novo." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Valores atuais atualizados." @@ -9947,8 +10175,8 @@ msgstr "Valores atuais atualizados." msgid "Refreshing..." msgstr "Atualizando..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Região" @@ -9977,7 +10205,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Remover" @@ -9994,7 +10222,7 @@ msgstr "Remover Dados Não Utilizados (Irreversível):" msgid "Remove Tag..." msgstr "Remover Etiqueta..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Remover etiqueta" @@ -10008,8 +10236,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Renomear Símbolo" @@ -10017,11 +10245,11 @@ msgstr "Renomear Símbolo" msgid "Render Window" msgstr "Janela de Renderização" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10039,23 +10267,22 @@ msgstr "Pedido pra se Juntar ao seu Grupo" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Redefinir" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Resetar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Redefinir Ignorar Gerenciadores de Pânico" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Resetar Resultados" @@ -10083,6 +10310,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Gerenciador de Pacotes de Recursos" @@ -10099,7 +10330,7 @@ msgstr "Reinicialização Necessária" msgid "Restore Defaults" msgstr "Restaurar Padrões" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Restaurar instrução" @@ -10116,7 +10347,7 @@ msgstr "Velocidade de Retorno" msgid "Revision" msgstr "Revisão" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revisão: %1" @@ -10175,7 +10406,7 @@ msgstr "Rolar pra Direita" msgid "Room ID" msgstr "Código da Sala" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Rotação" @@ -10198,26 +10429,52 @@ msgstr "" "resolução interna nativa.

Na dúvida, mantenha essa " "opção desativada." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibração" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Correr &Até Aqui" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Executar até" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Executar até (ignorando pontos de interrupção)" @@ -10233,19 +10490,19 @@ msgstr "Rússia" msgid "SD Card" msgstr "Cartão SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Tamanho do Cartão SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Local do Cartão SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Configurações do Cartão SD" @@ -10253,7 +10510,7 @@ msgstr "Configurações do Cartão SD" msgid "SD Root:" msgstr "Raiz do SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Pasta de Sincronização do SD:" @@ -10266,7 +10523,7 @@ msgstr "Alvo de Gama da Tela SDR" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -10274,11 +10531,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "Digesto SHA-1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "Contexto do SSL" @@ -10288,11 +10545,11 @@ msgstr "Contexto do SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Sa&lvar Código" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Salvar Estado Salvo" @@ -10305,7 +10562,6 @@ msgstr "Seguro" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10315,9 +10571,17 @@ msgstr "Salvar" msgid "Save All" msgstr "Salvar Todos" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Exportar Dados Salvos" @@ -10326,24 +10590,24 @@ msgid "Save FIFO log" msgstr "Salvar o Log do FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Salvar o Arquivo em" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Jogo Salvo" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Arquivo de jogo salvo (*.sav);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Importar Dados Salvos" @@ -10355,13 +10619,13 @@ msgstr "Salvar Estado Mais Antigo" msgid "Save Preset" msgstr "Salvar Predefinição" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 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/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Salvar Estado" @@ -10405,23 +10669,23 @@ msgstr "Salvar no Slot 8" msgid "Save State Slot 9" msgstr "Salvar no Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Salvar no Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Salvar no Slot Mais Antigo" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Salvar no Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Salvar o Mapa dos Símbolos &Como..." @@ -10429,7 +10693,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Salvar e Carregar Estados Salvos" @@ -10441,11 +10705,11 @@ msgstr "Salvar como Predefinição..." msgid "Save as..." msgstr "Salvar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Salvar o arquivo de saída combinada dos dados como" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10455,15 +10719,15 @@ msgstr "" "dos dados atuais antes de substituí-los.\n" "Substituir os dados existentes?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Salvar na Mesma Pasta da ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Salvar o arquivo do mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Salvar o arquivo de assinatura" @@ -10471,7 +10735,7 @@ msgstr "Salvar o arquivo de assinatura" msgid "Save to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Slot %1 - %2" @@ -10485,7 +10749,7 @@ msgstr "" "O pareamento dos Wii Remotes salvos só pode ser redefinido durante a " "execução de um jogo do Wii." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Dados Salvos:" @@ -10497,26 +10761,26 @@ msgstr "O estado salvo da gravação {0} está corrompido, parando a gravação. msgid "Scaled EFB Copy" msgstr "Cópia em Escala do EFB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Scan bem-sucedido." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Screenshot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Pesquisar" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Procurar Endereço" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Procurar o Objeto Atual" @@ -10524,11 +10788,11 @@ msgstr "Procurar o Objeto Atual" msgid "Search Subfolders" msgstr "Procurar nas Subpastas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Procurar e Filtrar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10536,7 +10800,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:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Procurar uma Instrução" @@ -10544,11 +10808,11 @@ msgstr "Procurar uma Instrução" msgid "Search games..." msgstr "Pesquisar jogos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Procurar instrução" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Pesquisar:" @@ -10570,7 +10834,7 @@ msgstr "" "Seção que contém a maioria das configurações relacionadas a CPU e ao " "Hardware." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Opções de segurança" @@ -10578,28 +10842,36 @@ msgstr "Opções de segurança" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: 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:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Selecione o Diretório de Exportação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Selecionar Arquivo da Figura" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Selecionar a BIOS do GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Selecionar a ROM do GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Selecione o Caminho dos Saves do GBA" @@ -10619,15 +10891,15 @@ msgstr "Selecione o Caminho do Pacote de Recursos" msgid "Select Riivolution XML file" msgstr "Selecione o arquivo XML do Riivolution" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Selecione a Correção do Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Selecione o arquivo do Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2" @@ -10635,7 +10907,7 @@ msgstr "Slot %1 - %2" msgid "Select State" msgstr "Selecionar" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Slot de Estado Salvo" @@ -10694,15 +10966,15 @@ msgstr "Selecione um Diretório" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Selecione um Arquivo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10710,11 +10982,11 @@ 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:504 +#: 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:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Selecione um arquivo" @@ -10722,19 +10994,19 @@ msgstr "Selecione um arquivo" msgid "Select a game" msgstr "Selecione um jogo" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Selecione um título pra instalar no NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Selecione os Cartões do e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Selecione o endereço do módulo do RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Selecione o Arquivo da Gravação a Executar" @@ -10742,12 +11014,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:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Selecione o arquivo das chaves (dump do OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Importar" @@ -10763,7 +11035,7 @@ msgstr "Selecione aonde você quer salvar as imagens convertidas" msgid "Selected Font" msgstr "Fonte Selecionada" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "O perfil de controle selecionado não existe" @@ -10775,15 +11047,15 @@ msgstr "O perfil de controle selecionado não existe" 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:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Thread do callstack selecionado" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Contexto do thread selecionado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10791,7 +11063,7 @@ msgstr "" "Seleciona o adaptador de vídeo a ser utilizado.

O " "backend %1 não é compatível com esse recurso." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10799,6 +11071,25 @@ 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 +msgid "" +"Selects how frame dumps (videos) and screenshots are going to be captured." +"
If the game or window resolution change during a recording, multiple " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10820,26 +11111,29 @@ msgstr "" "utilizado por algumas TVs.

Na dúvida, selecione " "\"Desligado\"." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -"Selecione qual proporção de aspecto usar quando renderizar:
Cada jogo " -"pode ter uma proporção de aspecto nativa levemente diferente.

Auto: " -"Usa a proporção de aspecto nativa
Forçar 16:9: Imita uma TV analógica com " -"uma proporção de aspecto widescreen.
Forçar 4:3: Imita uma TV analógica " -"padrão de 4:3.
Esticar até a Janela: Estica a imagem pro tamanho da " -"janela.
Personalizada: Pra jogos executando com trapaças da proporção do " -"aspecto personalizadas específicas.

Se não tiver " -"certeza selecione Auto." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10859,7 +11153,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posição da Sensor Bar:" @@ -10887,16 +11181,12 @@ msgstr "Porta do Servidor" msgid "Server rejected traversal attempt" msgstr "O servidor rejeitou a tentativa traversal" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Definir &Valor" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "Definir &blr" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Definir PC" @@ -10912,23 +11202,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Definir final do &endereço do símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Definir tamanho do &símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Definir final do endereço do símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Definir tamanho do símbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10938,11 +11228,11 @@ msgstr "" "jogos PAL.\n" "Pode não funcionar em todos os jogos." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Define o idioma do sistema do Wii." -#: 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 +11240,7 @@ msgstr "" "Define a latência em milissegundos. Valores mais altos podem reduzir " "picotamentos no áudio. Disponível somente em alguns backends." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10964,20 +11254,20 @@ msgstr "" msgid "Settings" msgstr "Configurações" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Não foi possível criar o arquivo setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Gravidade" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilação de Shaders" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Sacudir" @@ -10994,16 +11284,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Controle Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Mostrar Velocidade em %" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Mostrar &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Mostrar Barra de &Ferramentas" @@ -11011,53 +11301,53 @@ 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:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Mostrar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Austrália" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Mostrar Jogo em Execução no Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Mostrar Códigos Desativados Primeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "Mostrar Códigos Ativados Primeiro" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Mostrar Contador de Quadros" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Mostrar Duração dos Quadros" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "França" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Alemanha" @@ -11069,23 +11359,23 @@ msgstr "Mostrar Sobreposição do Modo Golfe" msgid "Show Infinity Base" msgstr "Mostrar Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Mostrar Entrada de Dados" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "Japão" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Coréia" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Mostrar Contador de Lag" @@ -11093,19 +11383,19 @@ msgstr "Mostrar Contador de Lag" msgid "Show Language:" msgstr "Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Mostrar &Configurações do Log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Mostrar Mensagens do NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Mostrar Ping do NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Holanda" @@ -11113,32 +11403,36 @@ msgstr "Holanda" msgid "Show On-Screen Display Messages" msgstr "Mostrar Mensagens na Tela" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Mostrar PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Mostrar Gráfico de Desempenho" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Mostrar Plataformas" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Mostrar Contador de Regravações" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Rússia" @@ -11146,72 +11440,72 @@ msgstr "Rússia" msgid "Show Skylanders Portal" msgstr "Mostrar Portal Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Espanha" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Mostrar Velocidade em Cores" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Exibir Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Mostrar Relógio do Sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Desconhecido" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: 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:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Global" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Mostrar na &memória" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Mostrar no Código" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Mostrar na Memória" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Mostrar no código" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Mostrar na memória" @@ -11219,11 +11513,11 @@ msgstr "Mostrar na memória" msgid "Show in server browser" msgstr "Mostrar no navegador do servidor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "Mostrar o alvo na &memória" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -11232,7 +11526,7 @@ msgstr "" "enquanto joga no NetPlay.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11252,7 +11546,7 @@ msgstr "" "velocidade total.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -11262,7 +11556,7 @@ msgstr "" "e seu desvio padrão.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -11272,7 +11566,7 @@ msgstr "" "desvio padrão.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -11282,7 +11576,7 @@ msgstr "" "métrica de suavidade visual.

Na dúvida, mantenha " "essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11301,7 +11595,13 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11313,34 +11613,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Lado a Lado" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Segurar na Horizontal" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Alternar Horizontal" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wii Remote na Horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Base de Dados da Assinatura" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Assinado 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Assinado 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Assinou 8" @@ -11349,7 +11649,7 @@ msgid "Signed Integer" msgstr "Inteiro Assinada" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinês Simplificado" @@ -11366,7 +11666,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." @@ -11374,11 +11674,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Ignorar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Ignorar Desenho" @@ -11423,24 +11723,24 @@ msgstr "" "mantenha essa opção ativada.
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Local da Coleção Skylander:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "Skylander não encontrado na coleção. Criar novo arquivo?" @@ -11448,10 +11748,6 @@ msgstr "Skylander não encontrado na coleção. Criar novo arquivo?" msgid "Skylanders Manager" msgstr "Gerenciador de Skylanders" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "Pasta de coleção Skylander não encontrada. Criar nova pasta?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11461,7 +11757,7 @@ msgstr "Barra do Slider" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Slot A:" @@ -11469,7 +11765,7 @@ msgstr "Slot A:" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Slot B:" @@ -11477,7 +11773,7 @@ msgstr "Slot B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Encaixa a posição do analógico no eixo octogonal mais próximo." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Tabela do soquete" @@ -11505,12 +11801,12 @@ msgstr "" "Alguns valores que você forneceu são inválidos.\n" "Por favor verifique os valores destacados." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Classificar por Nome" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Modo de Som:" @@ -11524,27 +11820,27 @@ msgstr "Espanha" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanhol" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Balanço do Speaker" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume do Auto-Falante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Especializada (Padrão)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Específico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11575,15 +11871,15 @@ msgstr "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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Fim das pilhas" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Início das pilhas" @@ -11596,25 +11892,28 @@ msgstr "Controle Padrão" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Iniciar &NetPlay..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Iniciar Nova Pesquisa" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Iniciar Gravação de Replay" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Iniciar Gravação" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Iniciar em Tela Cheia" @@ -11630,10 +11929,10 @@ msgstr "Iniciar com Patches do Riivolution..." msgid "Started game" msgstr "Jogo iniciado" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Estado" @@ -11643,7 +11942,7 @@ msgstr "Volante" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Passo" @@ -11655,13 +11954,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Passagem" @@ -11677,7 +11976,7 @@ msgstr "O tempo pra sair esgotou!" msgid "Step over in progress..." msgstr "Passagem em progresso..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Passo bem-sucedido!" @@ -11686,7 +11985,7 @@ msgstr "Passo bem-sucedido!" msgid "Stepping" msgstr "Passando" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Estéreo" @@ -11716,18 +12015,14 @@ msgstr "Eixo" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Parar a Reprodução/Gravação de Replay" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Parar a Gravação" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Jogo parado" @@ -11770,7 +12065,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:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Esticar para a Janela" @@ -11805,8 +12100,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Sucesso" @@ -11833,7 +12128,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:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Certificados da NAND extraídos com sucesso" @@ -11845,12 +12140,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:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 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:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Software instalado na NAND com sucesso." @@ -11861,11 +12156,11 @@ msgstr "Software removido da NAND com sucesso." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Suporte" @@ -11873,16 +12168,16 @@ msgstr "Suporte" msgid "Supported file formats" msgstr "Formatos de arquivo suportados" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Suspenso" @@ -11892,12 +12187,12 @@ msgstr "Inverter Olhos" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Swap Force" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "Swapper" @@ -11911,7 +12206,7 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Balançar" @@ -11925,39 +12220,21 @@ msgid "Switch to B" msgstr "Alternar para B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Fim do endereço do Símbolo (%1)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"O mapa do símbolo não foi achado.\n" -"\n" -"Se ele não existe você pode gerar um na barra do menu:\n" -"Símbolos -> Gerar Símbolos Do ->\n" -"\t| Endereço | Do Banco de Dados da Assinatura | Módulos do RSO" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Nome do símbolo:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Símbolos" @@ -11985,7 +12262,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:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12006,24 +12283,24 @@ msgid "Synchronizing save data..." msgstr "Sincronizando dados salvos..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma do Sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Ferramentas de TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Etiquetas" @@ -12033,7 +12310,7 @@ msgstr "Etiquetas" msgid "Taiko Drum" msgstr "Tambor Taiko" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Cauda" @@ -12041,15 +12318,15 @@ msgstr "Cauda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Capturar Tela" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "O alcance do endereço alvo é inválido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12059,7 +12336,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Tecnologia" @@ -12067,6 +12344,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -12076,7 +12359,7 @@ msgstr "Cache de Texturas" msgid "Texture Cache Accuracy" msgstr "Precisão do Cache de Texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Exportação de Texturas" @@ -12088,7 +12371,7 @@ msgstr "Filtragem de Textura" msgid "Texture Filtering:" msgstr "Filtragem de Textura:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Sobreposição do Formato das Texturas" @@ -12119,7 +12402,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "A tabela de hash H3 para a partição {0} não está correta." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" "O arquivo IPL não corresponde a nenhuma cópia válida conhecida. (CRC32: {0:" @@ -12135,7 +12418,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "As partições das Masterpieces estão ausentes." -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12143,7 +12426,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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "A NAND foi reparada." @@ -12157,11 +12440,11 @@ msgstr "" "para o Cartão SD, o Wii System Menu deixará de executá-lo e também se " "recusará a copiar ou mover o software de volta para a NAND." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "A quantidade de dinheiro que este skylander deve ter. Entre 0 e 65.000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -12206,6 +12489,13 @@ msgstr "" "As chaves criptográficas precisam estar anexadas ao arquivo de backup da " "NAND." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -12228,7 +12518,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 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." @@ -12250,17 +12540,17 @@ msgstr "O console Wii emulado já está atualizado." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "O endereço MAC inserido não é válido." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "O PID inserido não é válido." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "O VID inserido não é válido." @@ -12268,7 +12558,7 @@ msgstr "O VID inserido não é válido." msgid "The expression contains a syntax error." msgstr "A expressão contém um erro de sintaxe." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -12288,7 +12578,7 @@ msgstr "" "O arquivo %1 já existe.\n" "Você deseja substituí-lo?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -12309,7 +12599,7 @@ msgid "The file {0} was already open, the file header will not be written." msgstr "" "O arquivo {0} já estava aberto, o cabeçalho do arquivo não será gravado." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -12323,7 +12613,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:573 +#: 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 " @@ -12395,13 +12685,11 @@ msgstr "Os hashes não combinam!" msgid "The hashes match!" msgstr "Os hashes combinam!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"O nível de herói deste Skylander. Só é visto no Skylanders: Spyro's " -"Adventures. Entre 0 e 100" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12415,11 +12703,11 @@ msgstr "" msgid "The install partition is missing." msgstr "A partição de instalação está ausente." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "A última vez que a figura foi colocada em um portal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12439,9 +12727,9 @@ msgstr "" "corretamente, por favor troque o dispositivo indicado para \"Memory Card\" " "ou \"Pasta GCI\"." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "O apelido pra este skylander. Limitado a 15 caracteres" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12471,13 +12759,13 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "O código AR descriptografado não contém nenhuma linha." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" "O mesmo arquivo não pode ser usado em múltiplos slots; já é usado pelo %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -12517,7 +12805,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12534,11 +12822,11 @@ msgstr "O memory card alvo já contém um arquivo: \"%1\"." msgid "The ticket is not correctly signed." msgstr "O ticket não foi assinado corretamente." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "O tempo total que esta figura foi usada em um jogo em segundos" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" "O código do brinquedo pra esta figura. Só está disponível pra figuras reais." @@ -12547,16 +12835,16 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "O tipo de partição não pôde ser lido." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" "O tipo deste Skylander não tem quaisquer dados que possam ser modificados!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "O tipo deste Skylander é desconhecido!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12582,7 +12870,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12610,7 +12898,7 @@ msgstr "A partição {0} não está alinhada corretamente." msgid "There are too many partitions in the first partition table." msgstr "Existem muitas partições na primeira tabela de partições." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12620,7 +12908,12 @@ msgstr "" "\n" "Você quer salvar antes de fechar?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Nào há nada para desfazer!" @@ -12662,19 +12955,19 @@ msgstr "" "Esse jogo coreano está configurado para utilizar um IOS que normalmente não " "está presente em consoles coreanos. É provável que isso cause o ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "Este tipo de Skylander ainda não pode ser modificado!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "O dispositivo USB informado já está na lista de redirecionamento." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Este WAD não é inicializável." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Este WAD não é válido." @@ -12828,6 +13121,10 @@ msgstr "" msgid "This is a good dump." msgstr "Essa cópia é válida." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Esta sessão requer uma senha:" @@ -12844,13 +13141,13 @@ msgstr "" "\n" "Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Este software não deve ser usado pra jogar jogos que você não possui " "legalmente." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Este software não pode ser iniciado." @@ -12863,7 +13160,7 @@ msgstr "Esse software está configurado para utilizar um IOS inválido." msgid "This title is set to use an invalid common key." msgstr "Esse software está configurado para utilizar uma chave comum inválida." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12875,7 +13172,7 @@ msgstr "" "\n" "DSPHLE: uCode desconhecido (CRC = {0:08x}) - forçando AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12902,6 +13199,13 @@ msgstr "" "Esse valor é multiplicado com a profundidade definida nas configurações " "gráficas." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12922,11 +13226,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Contexto do thread" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Threads" @@ -12934,12 +13238,12 @@ msgstr "Threads" msgid "Threshold" msgstr "Limite" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Inclinar" @@ -12955,10 +13259,10 @@ msgstr "" msgid "Timed Out" msgstr "Tempo Esgotado" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Título" @@ -12972,7 +13276,7 @@ msgstr "Até" msgid "To:" msgstr "Até:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "Alternar &Tela Cheia" @@ -12997,7 +13301,7 @@ msgid "Toggle Aspect Ratio" msgstr "Alternar Proporção de Tela" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Ativar/Desativar Pontos de Interrupção" @@ -13049,15 +13353,19 @@ msgstr "Ativar/Desativar Cópias do XFB na RAM" msgid "Toggle XFB Immediate Mode" msgstr "Ativar/Desativar Exibição Imediata do XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Falha na tokenização." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Barra de Ferramentas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Em cima" @@ -13065,9 +13373,8 @@ msgstr "Em cima" msgid "Top-and-Bottom" msgstr "Sobreposto" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Total de Acertos" @@ -13104,28 +13411,28 @@ msgstr "Total da distância de viagem." msgid "Touch" msgstr "Toque" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "Código do brinquedo:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinês Tradicional" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "Trap" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "Trap Master" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -13164,26 +13471,26 @@ msgid "Triggers" msgstr "Gatilhos" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "Troféu" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tipo" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "Alinhamento baseado no tipo" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Espaço de endereço típico do GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "DESCONHECIDO" @@ -13195,7 +13502,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "Emulação de Dispositivo USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "Emulação USB" @@ -13207,13 +13514,13 @@ msgstr "Emulação de Dispositivos USB" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "Erro no Redirecionamento USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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 +13531,7 @@ msgstr "" "hardware de entrada.

Na dúvida, selecione esse modo." "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -13237,7 +13544,7 @@ msgstr "" "notado engasgos com os Ubershaders Híbridos e possua uma GPU " "consideravelmente potente.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -13251,7 +13558,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:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Incapaz de auto-detectar o módulo do RSO" @@ -13263,11 +13570,11 @@ msgstr "Não foi possível contactar o servidor de atualizações." msgid "Unable to create updater copy." msgstr "Não foi possível criar cópia do atualizador." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "Incapaz de modificar o Skylander!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Não foi possível abrir o arquivo." @@ -13296,7 +13603,7 @@ msgstr "" "\n" "Você gostaria de ignorar esta linha e continuar a analisar?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Não foi possível ler o arquivo." @@ -13319,15 +13626,15 @@ msgstr "Imagens do GC/Wii sem compressão (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Morto-Vivo" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Desfazer Carregamento" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Desfazer Estado Salvo" @@ -13347,11 +13654,11 @@ 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:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "Estados Unidos" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13362,12 +13669,13 @@ msgstr "Estados Unidos" msgid "Unknown" msgstr "Desconhecido" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Desconhecido (ID: %1 Var.: %2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando desconhecido do DVD {0:08x} - erro fatal" @@ -13395,11 +13703,11 @@ msgstr "" "Mensagem SYNC_SAVE_DATA desconhecida com ID:{0} recebida do Jogador:{1} " "Expulsando jogador!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "Tipo de Skylander desconhecido!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Espaço do endereço desconhecido" @@ -13407,7 +13715,7 @@ msgstr "Espaço do endereço desconhecido" msgid "Unknown author" msgstr "Autor desconhecido" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Tipo de dado desconhecido" @@ -13415,7 +13723,7 @@ msgstr "Tipo de dado desconhecido" msgid "Unknown disc" msgstr "Disco desconhecido" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Um erro desconhecido ocorreu." @@ -13436,16 +13744,18 @@ msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Mensagem desconhecida com ID:{0} recebida do Jogador:{1} Expulsando jogador!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Desconhecido (%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Desconhecido (%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Ilimitado" @@ -13478,22 +13788,22 @@ msgid "Unpacking" msgstr "Descomprimindo" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "Mudanças não Salvas" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Não Assinou 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Não Assinou 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Não Assinou 8" @@ -13557,23 +13867,23 @@ msgstr "" "Atualizando o título %1...\n" "Isto pode demorar um pouco." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Segurar na Vertical" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Alternar Vertical" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wii Remote na Vertical" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Configurações de Estatísticas de Uso" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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" @@ -13585,15 +13895,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Usar Codec Sem Perdas (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "Usar o Ponteiro Controlado pelo Mouse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usar Modo PAL60 (EuRGB60)" @@ -13601,7 +13911,7 @@ msgstr "Usar Modo PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Usar Gerenciadores de Pânico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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,65 +13944,18 @@ msgstr "" "Usar um único buffer de profundidade para os dois olhos. Necessário em " "alguns jogos." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "Use a configuração do mapeador de memória no tempo do scan" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Use endereços físicos" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Use endereços virtuais quando possível" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" -"Usado pra achar funções baseadas em quando elas deveriam estar em execução.\n" -"Similar ao Cheat Engine Ultimap.\n" -"Um mapa dos símbolos deve ser carregado antes do uso.\n" -"As listas de Inclusão/Exclusão persistirão em encerrar/reiniciar a " -"emulação.\n" -"Estas listas não persistirão quando o Dolphin fechar.\n" -"\n" -"'Iniciar Gravação': mantém rastro de quais funções executam.\n" -"'Parar a Gravação': apaga a gravação atual sem qualquer mudança nas listas.\n" -"'O código não foi executado': clicar enquanto grava adicionará as funções " -"gravadas a uma lista de exclusão então reseta a lista de gravação.\n" -"'O código foi executado': clicar enquanto grava adicionará a função gravada " -"a uma lista de inclusão então reseta a lista de gravação.\n" -"\n" -"Após você usar ambos exclusão e inclusão uma vez, a lista de exclusão será " -"subtraída da lista de inclusão e quaisquer inclusões restantes serão " -"exibidas.\n" -"Você pode continuar a usar 'O código não foi executado'/'O código foi " -"executado' pra reduzir os resultados.\n" -"\n" -"O salvamento armazenará a lista atual na pasta de registros do Dolphin " -"(Arquivo -> Abrir Pasta do Usuário)" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Configuração do Usuário" @@ -13732,7 +13995,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13742,7 +14005,7 @@ msgstr "" "separada será criada para a renderização.

Na " "dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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.
Na dúvida, " "mantenha essa opção desativada." -#: Source/Core/DolphinQt/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Usando o Qt %1" @@ -13760,31 +14023,31 @@ msgstr "Usando o Qt %1" msgid "Using TTL %1 for probe packet" msgstr "Usando o TTL %1 pro pacote de sondagem" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Geralmente usado pra iluminar objetos" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Geralmente usado pra matrizes normais" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Geralmente usado pras matrizes da posição" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Geralmente usado pras matrizes da coordenação das texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utilidades" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync" @@ -13792,11 +14055,11 @@ msgstr "V-Sync" msgid "VBI Skip" msgstr "Ignorar VBI" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Valor rastreado até a instrução atual." @@ -13804,17 +14067,17 @@ msgstr "Valor rastreado até a instrução atual." msgid "Value:" msgstr "Valor:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "A variante informada é inválida!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Variante:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Veículo" @@ -13830,16 +14093,16 @@ msgstr "Verbosidade" msgid "Verify" msgstr "Verificar" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verificar Integridade" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Verificar certificados" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verificando" @@ -13853,7 +14116,7 @@ msgid "Vertex Rounding" msgstr "Arredondamento de Vértices" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Campo de Visão Vertical" @@ -13867,12 +14130,12 @@ msgid "Video" msgstr "Vídeo" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Visualizar &código" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Visualizar &memória" @@ -13880,14 +14143,14 @@ msgstr "Visualizar &memória" msgid "Virtual Notches" msgstr "Níveis Virtuais" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Espaço do endereço virtual" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" @@ -13907,38 +14170,38 @@ msgstr "Aumentar Volume" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "Arquivos WAD (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" "Falha na instalação do WAD: Não foi possível criar os arquivos de log do Wii " "Shop." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "Falha na instalação do WAD: Não foi possível finalizar a importação do " "software." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" "Falha na instalação do WAD: Não foi possível importar o conteúdo {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "Falha na instalação do WAD: não foi possível inicializar a importação do " "software (erro {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "Falha na instalação do WAD: O arquivo selecionado não é um WAD válido." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "ESPERANDO" @@ -13989,12 +14252,12 @@ msgstr "WFS:" msgid "WIA GC/Wii images (*.wia)" msgstr "Imagens WIA do GC/Wii (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Esperando pelo primeiro scan..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -14012,7 +14275,7 @@ msgstr "" "pendentes pode reduzir a taxa de quadros.

Caso " "contrário, na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -14044,7 +14307,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Aviso" @@ -14151,7 +14414,7 @@ msgstr "Observar" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Água" @@ -14168,7 +14431,7 @@ msgstr "Ocidental (Windows-1252)" msgid "Whammy" msgstr "Distorção" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -14181,7 +14444,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -14194,7 +14457,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivos Permitidos no Redirecionamento USB" @@ -14218,7 +14481,7 @@ msgstr "Wii Menu" msgid "Wii NAND Root:" msgstr "NAND do Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -14226,7 +14489,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -14244,7 +14507,7 @@ msgstr "Botões do Wii Remote" msgid "Wii Remote Gyroscope" msgstr "Giroscópio do Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Configurações do Wii Remote" @@ -14264,7 +14527,7 @@ msgstr "Entrada de Dados TAS - Wii Remote %1" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Entrada de Dados TAS - Wii Remote + Nunchuk %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii e Wii Remote" @@ -14272,11 +14535,11 @@ 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:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Arquivo de dados salvos do Wii (*.bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "MEGA Arquivo de Assinatura do WiiTools" @@ -14289,11 +14552,23 @@ msgstr "" "estiver em foco.\n" "Você pode definir uma tecla de atalho para destravá-lo." +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Tamanho da Janela" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Quebra automática de linha" @@ -14307,10 +14582,14 @@ msgstr "Global" msgid "Write" msgstr "Gravação" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Só Gravação" @@ -14352,6 +14631,14 @@ msgstr "Região incorreta" msgid "Wrong revision" msgstr "Revisão incorreta" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -14360,11 +14647,11 @@ msgstr "Revisão incorreta" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "Registrador XF" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "Endereço de Destino do Adaptador XLink Kai" @@ -14399,7 +14686,7 @@ msgstr "Sim" msgid "Yes to &All" msgstr "Sim para &Todos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14409,7 +14696,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:272 +#: 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 " @@ -14558,7 +14845,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:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14578,15 +14865,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Código Zero 3 não é suportado" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Código zero desconhecido pelo Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] e [%3, %4]" @@ -14594,11 +14885,11 @@ msgstr "[%1, %2] e [%3, %4]" msgid "^ Xor" msgstr "^ Xou" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "alinhado" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "qualquer valor" @@ -14617,21 +14908,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll não pôde ser carregado." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "padrão" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "desconectado" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Cartões do e-Reader (*.raw);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14639,31 +14930,35 @@ msgstr "errno" msgid "fake-completion" msgstr "Falsa conclusão" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "é igual a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "é maior do que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "é maior do que ou igual a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "é menor do que" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "é menor ou igual a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "não é igual a" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "último valor" @@ -14673,7 +14968,7 @@ msgstr "último valor" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14685,13 +14980,13 @@ msgstr "" msgid "none" msgstr "Nenhum" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "desligado" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "ligado" @@ -14708,16 +15003,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "este valor:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "Tablet uDraw" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "desalinhado" @@ -14732,11 +15031,11 @@ msgstr "desalinhado" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "{0} IPL achado no diretório {1}. O disco poderia não ser reconhecido" @@ -14773,7 +15072,7 @@ msgstr "| Ou" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14784,8 +15083,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/ro.po b/Languages/po/ro.po index 2e696d94d636..9bdb1fd0c10b 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -59,8 +59,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -79,19 +79,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -112,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -151,6 +152,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -174,13 +180,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -196,12 +202,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +224,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -226,26 +232,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -283,20 +289,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -306,23 +312,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -330,12 +336,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -343,27 +349,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Puncte de întrerupere" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -371,15 +377,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -387,19 +393,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -407,7 +418,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -424,9 +435,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -434,23 +445,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulare" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -458,55 +469,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fișier" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Avans Cadru" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Configurări Grafică" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Ajutor" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Configurări Tastă Rapidă" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -514,19 +523,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -534,15 +543,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "&Status de Încărcare" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -552,23 +565,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -577,23 +590,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Deschide..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opțiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pauză" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Redare" @@ -601,15 +614,15 @@ msgstr "&Redare" msgid "&Properties" msgstr "&Proprietăți" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Înregistrări" @@ -617,41 +630,45 @@ msgstr "&Înregistrări" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Resetează" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Stop" @@ -659,15 +676,19 @@ msgstr "&Stop" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Instrumente" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -677,17 +698,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -699,11 +720,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -719,7 +740,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -727,7 +748,7 @@ msgstr "" msgid "(off)" msgstr "(oprit)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -747,15 +768,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -766,12 +787,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -783,7 +804,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -791,11 +812,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -807,17 +828,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -829,11 +850,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -845,7 +866,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -857,25 +878,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -889,11 +910,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -901,7 +922,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -917,7 +938,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -929,22 +950,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -952,11 +973,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -968,13 +989,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -990,7 +1011,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1002,11 +1023,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1036,12 +1057,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1051,7 +1072,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1061,11 +1082,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1081,6 +1102,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1102,7 +1127,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1111,8 +1136,8 @@ msgstr "" msgid "AR Codes" msgstr "Coduri AR" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1126,7 +1151,7 @@ msgid "About Dolphin" msgstr "Despre Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1145,7 +1170,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1231,19 +1256,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1251,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptor:" @@ -1261,7 +1286,7 @@ msgstr "Adaptor:" msgid "Add" msgstr "Adaugă" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1290,51 +1315,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Adaugă..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1395,12 +1417,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avansat" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1415,15 +1437,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1433,16 +1455,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1456,11 +1478,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1468,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1477,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1486,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1499,7 +1521,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1511,15 +1533,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1547,7 +1569,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1585,15 +1607,15 @@ msgstr "Antialias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1611,7 +1633,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1643,12 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Raport Aspect:" @@ -1656,7 +1682,7 @@ msgstr "Raport Aspect:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1664,7 +1690,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1681,7 +1707,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1689,11 +1715,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 "" @@ -1705,12 +1731,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1718,11 +1744,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiple de 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1734,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1742,32 +1764,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1775,38 +1797,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Înregistrare BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1822,13 +1848,13 @@ msgstr "Intrare Fundal" msgid "Backward" msgstr "Înapoi" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1836,20 +1862,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1869,15 +1895,15 @@ msgstr "Bară" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Principal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Configurări Principale" @@ -1885,15 +1911,15 @@ msgstr "Configurări Principale" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1917,31 +1943,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1950,7 +1978,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1977,32 +2005,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Jos" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2040,11 +2179,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2054,11 +2193,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2090,7 +2229,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2106,7 +2245,7 @@ msgstr "" msgid "Buttons" msgstr "Butoane" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2116,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2132,7 +2271,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2140,14 +2279,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2159,11 +2298,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2171,19 +2310,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2192,64 +2331,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2257,19 +2408,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2287,7 +2440,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2295,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Schimbă &Discul..." @@ -2303,7 +2456,7 @@ msgstr "Schimbă &Discul..." msgid "Change Disc" msgstr "Schimbă Discul" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2311,7 +2464,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2337,7 +2490,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2349,15 +2502,15 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Căutare Trișări" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2365,7 +2518,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2383,27 +2536,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Alege un fișier pentru a-l deschide" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2430,15 +2583,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Curăță" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2446,7 +2603,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2455,36 +2612,20 @@ msgstr "" msgid "Close" msgstr "Închide" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2511,7 +2652,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2538,7 +2683,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2546,9 +2691,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2561,10 +2706,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2637,7 +2788,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Configurare" @@ -2670,13 +2821,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2684,7 +2835,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmă la Oprire" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2695,15 +2846,15 @@ msgstr "" msgid "Connect" msgstr "Conectare" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Conectează Placa de Echilibru" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectează Tastatura USB" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2723,7 +2874,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2764,7 +2915,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2788,7 +2939,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2851,8 +3002,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2860,9 +3011,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2870,9 +3021,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2892,8 +3043,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2929,15 +3080,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2945,19 +3096,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2975,6 +3126,11 @@ msgstr "" msgid "Core" msgstr "Nucleu" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2984,7 +3140,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3057,7 +3213,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3094,13 +3250,13 @@ msgstr "" msgid "Country:" msgstr "Țara:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3109,15 +3265,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3126,17 +3278,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3144,11 +3287,11 @@ msgstr "" msgid "Critical" msgstr "Critic" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Decupare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3160,26 +3303,26 @@ msgstr "" msgid "Crossfade" msgstr "Estompare Intercalată" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3187,27 +3330,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3219,13 +3366,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3250,7 +3397,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 "" @@ -3258,15 +3405,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 "" @@ -3288,7 +3435,7 @@ msgstr "Saltea de Dans" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3304,7 +3451,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3337,8 +3484,8 @@ msgstr "Zonă Moartă" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Depanare" @@ -3347,7 +3494,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 "" @@ -3394,7 +3541,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 "" @@ -3406,11 +3553,11 @@ msgstr "" msgid "Default ISO:" msgstr "ISO implicit:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3418,7 +3565,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3458,26 +3605,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descriere" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3485,7 +3659,7 @@ msgstr "" msgid "Detect" msgstr "Detectare" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3493,7 +3667,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3502,7 +3676,7 @@ msgid "Device" msgstr "Dispozitiv" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3511,11 +3685,11 @@ msgid "Device Settings" msgstr "Configurări Dispozitiv" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3523,11 +3697,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3539,12 +3709,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3556,7 +3726,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3564,11 +3734,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3576,11 +3746,11 @@ msgstr "" msgid "Disable Fog" msgstr "Dezactivează Ceața" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3595,7 +3765,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3941,15 +4107,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Olandeză" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "I&sire" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3975,7 +4141,7 @@ msgstr "Actualizări Anterioare Memorie" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3988,7 +4154,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4004,15 +4170,15 @@ msgstr "Efect" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4022,7 +4188,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4030,11 +4196,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Firul Emu rulează deja" @@ -4042,11 +4208,11 @@ msgstr "Firul Emu rulează deja" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4060,7 +4226,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4080,28 +4246,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4113,11 +4267,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Activare Trucuri" @@ -4137,7 +4291,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Activare Nucleu Dublu" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Activare Nucleu Dublu (accelerare)" @@ -4157,7 +4311,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4183,6 +4337,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4196,7 +4354,7 @@ msgstr "Activare MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activare Scanare Progresivă" @@ -4209,11 +4367,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activare Economizor Ecran" @@ -4225,15 +4383,15 @@ msgstr "Activare Date Vorbitor" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activare Wireframe" @@ -4303,7 +4461,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4334,7 +4492,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4342,7 +4500,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4359,7 +4517,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 "" @@ -4387,7 +4545,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4395,7 +4553,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4403,7 +4561,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4428,7 +4586,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engleză" @@ -4437,7 +4595,7 @@ msgstr "Engleză" msgid "Enhancements" msgstr "Îmbunătățiri" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4459,11 +4617,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4472,8 +4636,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4484,45 +4648,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4532,16 +4702,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Eroare" @@ -4558,9 +4728,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4574,7 +4744,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4640,13 +4810,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4665,40 +4835,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4706,7 +4848,7 @@ msgstr "" msgid "Exit" msgstr "Ieșire" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4714,7 +4856,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4726,15 +4868,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4742,11 +4884,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportă Toate Salvările Wii" @@ -4761,7 +4903,7 @@ msgstr "" msgid "Export Recording" msgstr "Export Înregistrare" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Export Înregistrare..." @@ -4789,14 +4931,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensie" @@ -4817,7 +4959,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4850,12 +4992,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Jucător FIFO" @@ -4873,7 +5015,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4881,12 +5023,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4914,19 +5056,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4946,15 +5089,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Descărcarea codurilor a eșuat." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4967,7 +5110,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4990,33 +5133,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5027,7 +5166,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5036,18 +5175,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5059,19 +5198,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5081,13 +5222,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5095,6 +5244,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5121,28 +5274,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5162,7 +5319,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5184,31 +5341,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5242,31 +5402,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5317,7 +5477,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5325,11 +5485,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5342,7 +5502,7 @@ msgstr "Rapid" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5353,11 +5513,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5365,9 +5525,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5379,20 +5539,20 @@ msgstr "" msgid "File Info" msgstr "Info Fişier " -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5400,7 +5560,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Fișierul nu a conținut coduri." @@ -5434,15 +5594,15 @@ msgstr "Sistem de fișiere" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5454,7 +5614,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5470,31 +5630,32 @@ msgstr "Remediere Sume de verificare" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5504,13 +5665,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5518,7 +5679,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" @@ -5550,11 +5711,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5591,17 +5752,17 @@ msgstr "Înainte" msgid "Forward port (UPnP)" msgstr "Redirecționare port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5622,7 +5783,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5630,7 +5791,7 @@ msgstr "" msgid "Frame Range" msgstr "Interval Cadru" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5654,7 +5815,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5685,7 +5846,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Franceză" @@ -5709,7 +5870,7 @@ msgstr "De la" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "EcrComplet" @@ -5741,7 +5902,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5857,26 +6018,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5904,8 +6065,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5965,11 +6126,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5977,11 +6138,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5994,11 +6155,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6026,7 +6187,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Coduri Gecko" @@ -6036,35 +6197,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "General" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Germană" @@ -6076,18 +6237,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6100,8 +6261,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafică" @@ -6140,7 +6301,7 @@ msgstr "Verde Stânga" msgid "Green Right" msgstr "Verde Dreapta" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6149,7 +6310,7 @@ msgstr "" msgid "Guitar" msgstr "Chitară" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6177,36 +6338,35 @@ msgstr "" msgid "Hacks" msgstr "Soluții" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6219,7 +6379,11 @@ msgstr "" msgid "Hide" msgstr "Ascunde" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6235,12 +6399,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6249,14 +6413,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6273,7 +6431,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6297,16 +6455,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Taste rapide" @@ -6315,7 +6473,7 @@ msgstr "Taste rapide" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6329,16 +6487,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6373,7 +6531,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Sensibilitate IR:" @@ -6406,11 +6564,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6456,11 +6614,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignoră Modificările de Format" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6484,7 +6646,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6493,7 +6655,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6508,15 +6670,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6527,15 +6689,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6544,27 +6697,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6609,15 +6762,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6637,8 +6791,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informații" @@ -6652,10 +6806,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Intrare" @@ -6669,20 +6823,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Introdu Card SD" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6696,7 +6856,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6704,11 +6864,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6717,7 +6879,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6726,7 +6888,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6743,19 +6905,19 @@ msgstr "" msgid "Interface" msgstr "Interfață" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6768,19 +6930,19 @@ msgstr "Eroare internă LZO - compresia a eșuat" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6795,7 +6957,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Rezoluția Internă:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6803,11 +6965,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6819,7 +6981,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6828,11 +6990,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6861,7 +7023,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6873,21 +7035,21 @@ msgstr "" msgid "Invalid recording file" msgstr "Fișier de înregistrare invalid" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Parametrii de căutare invalizi (nici un obiect selectat)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Expresie de căutare invalidă (numai lungimile de siruri de caractere sunt " "suportate)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6897,7 +7059,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiană" @@ -6906,63 +7068,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6974,27 +7136,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japoneză" @@ -7005,13 +7171,13 @@ msgstr "Japoneză" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7025,7 +7191,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7046,7 +7212,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7054,12 +7220,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreeană" @@ -7070,7 +7236,7 @@ msgstr "Coreeană" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7080,7 +7246,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7088,35 +7254,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7186,13 +7354,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7206,7 +7374,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7214,11 +7382,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7229,29 +7397,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Încarcă" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Încarcă Texturi Personalizate" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7272,7 +7447,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7361,19 +7536,19 @@ msgstr "Încarcă Status din Slotul 8" msgid "Load State Slot 9" msgstr "Încarcă Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7385,16 +7560,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7402,18 +7577,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7433,7 +7608,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Jurnal" @@ -7445,7 +7620,7 @@ msgstr "Configurare Jurnal" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7453,7 +7628,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7469,7 +7644,7 @@ msgstr "Jurnale Generate" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7484,16 +7659,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7501,7 +7676,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7511,7 +7686,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7519,37 +7694,37 @@ msgstr "" msgid "Main Stick" msgstr "Stick Principal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7566,12 +7741,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7583,7 +7758,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7600,16 +7775,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7621,7 +7796,7 @@ msgstr "" msgid "Memory Card" msgstr "Card de memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7633,7 +7808,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7649,7 +7824,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7657,29 +7832,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configurări Diverse" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7699,36 +7878,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modificator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7740,16 +7924,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7786,6 +7970,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7795,10 +7983,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7807,8 +7995,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7817,7 +8005,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7834,25 +8022,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7861,7 +8049,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7918,7 +8106,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7948,7 +8136,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7956,7 +8144,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7964,7 +8152,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7973,7 +8161,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7987,7 +8175,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -8001,7 +8189,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8015,7 +8203,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8023,16 +8211,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Nu există o descriere disponibilă" @@ -8048,15 +8236,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8065,7 +8253,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8077,10 +8265,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8092,11 +8276,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8105,18 +8289,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Nimic" @@ -8176,7 +8360,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8211,10 +8395,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Interval Obiect" @@ -8228,7 +8460,7 @@ msgstr "" msgid "Off" msgstr "Oprit" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8240,14 +8472,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Documentație Online" @@ -8255,13 +8502,13 @@ msgstr "&Documentație Online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8269,7 +8516,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Deschide" @@ -8278,11 +8525,11 @@ msgstr "Deschide" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8303,7 +8550,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8336,11 +8583,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opțiuni" @@ -8353,13 +8600,36 @@ msgstr "Portocaliu" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Altele" @@ -8372,7 +8642,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8392,16 +8662,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8410,15 +8680,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8426,11 +8696,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8443,11 +8713,11 @@ msgstr "Pad" msgid "Pads" msgstr "Paduri" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8498,11 +8768,15 @@ msgstr "" msgid "Paths" msgstr "Căi" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pauză" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8541,7 +8815,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminare Per-Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8549,33 +8823,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8591,12 +8865,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Rulare" @@ -8608,7 +8882,7 @@ msgstr "" msgid "Play Recording" msgstr "Rulează Înregistrarea" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8620,27 +8894,27 @@ msgstr "Opțiuni de Rulare" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8649,7 +8923,8 @@ msgstr "" msgid "Players" msgstr "Playere" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8661,23 +8936,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8686,7 +8965,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8707,11 +8986,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8719,11 +8998,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8746,7 +9025,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8761,7 +9040,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8772,7 +9051,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8784,7 +9063,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8818,8 +9097,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8827,11 +9106,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8851,14 +9130,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Întrebare" @@ -8879,19 +9158,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8904,11 +9183,11 @@ msgstr "" msgid "Range" msgstr "Interval" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8920,7 +9199,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8932,14 +9215,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8960,10 +9243,15 @@ msgstr "Placa de Echilibru Reală" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8977,7 +9265,7 @@ msgstr "Înregistrare" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9012,7 +9300,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9020,14 +9308,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Reîmprospătare" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9035,11 +9323,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9048,8 +9336,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9078,7 +9366,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Elimină" @@ -9095,7 +9383,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9106,8 +9394,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9115,11 +9403,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9135,23 +9423,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Resetare" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9179,6 +9466,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9195,7 +9486,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9212,7 +9503,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9271,7 +9562,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9289,26 +9580,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibrație" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9324,19 +9641,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9344,7 +9661,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9357,7 +9674,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9365,11 +9682,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9379,11 +9696,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Sal&vează Status" @@ -9396,7 +9713,6 @@ msgstr "Sigur" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9406,9 +9722,17 @@ msgstr "Salvare" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9417,24 +9741,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9446,13 +9770,13 @@ msgstr "Salvează cel mai Vechi Status" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Salvează Status" @@ -9496,23 +9820,23 @@ msgstr "Salvează Status din Slotul 8" msgid "Save State Slot 9" msgstr "Salvează Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9520,7 +9844,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9532,26 +9856,26 @@ msgstr "" msgid "Save as..." msgstr "Salvează ca..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9559,7 +9883,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9571,7 +9895,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9583,26 +9907,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Copie EFB Scalată" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "ScrShot" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Căutare" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9610,17 +9934,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Căutare Subdosare" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9628,11 +9952,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9652,7 +9976,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9660,28 +9984,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9701,15 +10033,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9717,7 +10049,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9776,15 +10108,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9792,11 +10124,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9804,19 +10136,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9824,12 +10156,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Selectează fișierul salvat" @@ -9845,7 +10177,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Profilul controlerului selectat, nu există" @@ -9857,26 +10189,45 @@ msgstr "Profilul controlerului selectat, nu există" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9888,18 +10239,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9913,7 +10275,7 @@ msgstr "" msgid "Send" msgstr "Trimite" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Poziția barei de senzor:" @@ -9937,16 +10299,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9962,40 +10320,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10007,20 +10365,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Vibrare" @@ -10037,16 +10395,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Afișare &Jurnal" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Afișare &Bară de Instrumente" @@ -10054,53 +10412,53 @@ msgstr "Afișare &Bară de Instrumente" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Afișare FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Afișare Franța" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Afișare GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10112,23 +10470,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Afișare Ecran Conectat" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Afișare Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Afișare Coreea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10136,19 +10494,19 @@ msgstr "" msgid "Show Language:" msgstr "Afișare Limbă:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Afișare Jurnal &Configurare" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10156,32 +10514,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Afișare Platforme" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Afișare Regiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10189,72 +10551,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Afișare Statistici" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Afișare Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Afișare SUA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Afișare Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10262,65 +10624,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10330,34 +10698,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10366,7 +10734,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chineză simplificată" @@ -10383,17 +10751,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10428,24 +10796,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10453,10 +10821,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10466,7 +10830,7 @@ msgstr "" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10474,7 +10838,7 @@ msgstr "" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10482,7 +10846,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10506,12 +10870,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10525,27 +10889,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spaniolă" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volum Difuzor:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10566,15 +10930,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10587,25 +10951,28 @@ msgstr "Controler Standard" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Pornește Înregistrarea" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10621,10 +10988,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10634,7 +11001,7 @@ msgstr "Volan" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10646,13 +11013,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10668,7 +11035,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10677,7 +11044,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10707,18 +11074,14 @@ msgstr "Joystick" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10751,7 +11114,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Potrivește la Fereastră" @@ -10786,8 +11149,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10814,7 +11177,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10826,12 +11189,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10842,11 +11205,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10854,16 +11217,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10873,12 +11236,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10889,7 +11252,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Balans" @@ -10903,34 +11266,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10956,7 +11306,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10975,24 +11325,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Limbă Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11002,7 +11352,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11010,15 +11360,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Realizează CapturăEcran" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11026,7 +11376,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11034,6 +11384,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11043,7 +11399,7 @@ msgstr "Cache Textură" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11055,7 +11411,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Suprapunere Format Textură" @@ -11078,7 +11434,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11092,13 +11448,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11109,11 +11465,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11146,6 +11502,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11163,7 +11526,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11183,17 +11546,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11201,7 +11564,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11215,7 +11578,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11231,7 +11594,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11242,7 +11605,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11299,9 +11662,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11315,11 +11678,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11333,8 +11696,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11361,12 +11724,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Rezultatul codului AR decriptat nu conține nici o linie." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11400,7 +11763,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11415,11 +11778,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11427,15 +11790,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11458,7 +11821,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11484,14 +11847,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11527,19 +11895,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11656,6 +12024,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11668,11 +12040,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11685,7 +12057,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11693,7 +12065,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11712,6 +12084,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11726,11 +12105,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11738,12 +12117,12 @@ msgstr "" msgid "Threshold" msgstr "Prag:" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Înclinare:" @@ -11757,10 +12136,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titlu" @@ -11774,7 +12153,7 @@ msgstr "Către" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11799,7 +12178,7 @@ msgid "Toggle Aspect Ratio" msgstr "Comută Raportul de Aspect" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11851,15 +12230,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Sus" @@ -11867,9 +12250,8 @@ msgstr "Sus" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11906,28 +12288,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chineză tradițională" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11964,26 +12346,26 @@ msgid "Triggers" msgstr "Declanșatori" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tip:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11995,7 +12377,7 @@ msgstr "SUA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12007,20 +12389,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12028,7 +12410,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12037,7 +12419,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12049,11 +12431,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12073,7 +12455,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12096,15 +12478,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Anulare Status Încărcare" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Anulare Status Salvare" @@ -12122,11 +12504,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12137,12 +12519,13 @@ msgstr "" msgid "Unknown" msgstr "Necunoscut" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12166,11 +12549,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12178,7 +12561,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12186,7 +12569,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12206,16 +12589,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12248,22 +12633,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12325,23 +12710,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12353,15 +12738,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12369,7 +12754,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "Utilizează Asistenți de Panică" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12387,43 +12772,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12455,21 +12815,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12477,31 +12837,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Utilitar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-Sync" @@ -12509,11 +12869,11 @@ msgstr "V-Sync" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Valoare" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12521,17 +12881,17 @@ msgstr "" msgid "Value:" msgstr "Valoare:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12547,16 +12907,16 @@ msgstr "Verbozitate" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12570,7 +12930,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12584,12 +12944,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12597,14 +12957,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" @@ -12624,31 +12984,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12687,12 +13047,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12703,7 +13063,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12725,7 +13085,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Atenție" @@ -12797,7 +13157,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12814,7 +13174,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12822,7 +13182,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12830,7 +13190,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12854,7 +13214,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "Rădăcină NAND Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12862,7 +13222,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12880,7 +13240,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12900,7 +13260,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12908,11 +13268,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12922,11 +13282,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Încadrare Cuvânt" @@ -12940,10 +13312,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12985,6 +13361,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12993,11 +13377,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13032,14 +13416,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13136,7 +13520,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13154,15 +13538,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "Codul Zero 3 nu este acceptat" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13170,11 +13558,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13193,21 +13581,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13215,31 +13603,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13249,7 +13641,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13259,13 +13651,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13282,16 +13674,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13306,11 +13702,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13345,7 +13741,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13354,8 +13750,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/ru.po b/Languages/po/ru.po index d5bb8459ec0e..d5d1cb43ff22 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Sukharev Andrey , 2015-2022\n" "Language-Team: Russian (http://app.transifex.com/delroth/dolphin-emu/" @@ -76,8 +76,8 @@ msgstr "$ Польз. переменная" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -98,19 +98,20 @@ msgstr "" "%1\n" "хочет присоединиться к вашей группе." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -131,7 +132,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Ревизия %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (из коробки)" @@ -173,6 +174,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 не поддерживает данный функционал на вашей системе." @@ -199,13 +205,13 @@ msgstr "%1 присоединился" msgid "%1 has left" msgstr "%1 вышел" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -221,12 +227,12 @@ msgstr "%1 теперь играет в гольф" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 мс" @@ -243,7 +249,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%" @@ -251,26 +257,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -308,20 +314,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "Осталось адресов: %n." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -331,23 +337,23 @@ msgstr "Удалено адресов: %n." msgid "& And" msgstr "& И" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Об эмуляторе" @@ -355,12 +361,12 @@ msgstr "&Об эмуляторе" msgid "&Add Memory Breakpoint" msgstr "&Добавить точку останова в памяти" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Добавить код..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Добавить функцию" @@ -368,27 +374,27 @@ msgstr "&Добавить функцию" msgid "&Add..." msgstr "&Добавить..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "Настройки &звука" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Автообновление:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Окно без рамок" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Точки останова" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Баг-трекер" @@ -396,15 +402,15 @@ msgstr "&Баг-трекер" msgid "&Cancel" msgstr "&Отмена" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Проверить обновления..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Очистить символы" @@ -412,19 +418,24 @@ msgstr "&Очистить символы" msgid "&Clone..." msgstr "&Клонировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Код" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Подключен" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "Настройки &управления" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Скопировать адрес" @@ -432,7 +443,7 @@ msgstr "&Скопировать адрес" msgid "&Create..." msgstr "&Создать..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Удалить" @@ -449,9 +460,9 @@ msgstr "&Удалить из наблюдения" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Изменить код..." @@ -459,23 +470,23 @@ msgstr "&Изменить код..." msgid "&Edit..." msgstr "&Изменить..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Извлечь диск" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Эмуляция" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -483,55 +494,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "&Экспорт в .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Файл" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Шрифт..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "Перемотка &кадров" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "Настройки &свободного обзора" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Создать символы из" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Репозиторий на &GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "Настройки &графики" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Помощь" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "Горячие &клавиши" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -539,19 +548,19 @@ msgstr "" msgid "&Import..." msgstr "&Импортировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Вставить blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Межкадровый блендинг" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -559,15 +568,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Язык:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "Быстрая &загрузка" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Загрузить карту символов" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -577,23 +590,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Зафиксировать виджеты" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Память" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Запись" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Сеть" @@ -602,23 +615,23 @@ msgid "&No" msgstr "&Нет" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Открыть..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Опции" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Патчить HLE-функции" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Пауза" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Запустить" @@ -626,15 +639,15 @@ msgstr "&Запустить" msgid "&Properties" msgstr "&Свойства" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "Режим \"Только для &чтения\"" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Регистры" @@ -642,41 +655,45 @@ msgstr "&Регистры" msgid "&Remove" msgstr "&Удалить" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Удалить код" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Переименовать символ" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Сбросить" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Менеджер наборов ресурсов" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Сохранить карту символов" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Ограничение скорости:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Остановить" @@ -684,15 +701,19 @@ msgstr "&Остановить" msgid "&Theme:" msgstr "&Тема:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Потоки" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Инструменты" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "&Выгрузить образ игры" @@ -702,17 +723,17 @@ msgstr "&Выгрузить образ игры" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Наблюдение" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Сайт" @@ -724,11 +745,11 @@ msgstr "&Вики" msgid "&Yes" msgstr "&Да" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' не найден, имена символов не созданы" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' не найден, ищем на замену распространенные функции" @@ -744,7 +765,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(хост)" @@ -752,7 +773,7 @@ msgstr "(хост)" msgid "(off)" msgstr "(отключено)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -772,15 +793,15 @@ msgstr ", Запятая" msgid "- Subtract" msgstr "- Вычесть" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -791,12 +812,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Разделить" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -808,7 +829,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "128 Мбит (2043 блока)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -816,11 +837,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -832,17 +853,17 @@ msgstr "16 Мбит (251 блок)" msgid "16-bit" msgstr "16-бит" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -854,11 +875,11 @@ msgstr "" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -870,7 +891,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -882,25 +903,25 @@ msgstr "32 Мбит (507 блоков)" msgid "32-bit" msgstr "32-бита" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -914,11 +935,11 @@ msgstr "Глубина 3D" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -926,7 +947,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Мбит (59 блоков)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -942,7 +963,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -954,22 +975,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "64 Мбит (1019 блоков)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -977,11 +998,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -993,13 +1014,13 @@ msgstr "8 Мбит (123 блока)" msgid "8-bit" msgstr "8-бит" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -1015,7 +1036,7 @@ msgstr "" msgid "< Less-than" msgstr "< Меньше чем" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "<Ничего>" @@ -1027,11 +1048,11 @@ msgstr "<Системный язык>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1064,12 +1085,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Больше чем" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "Сессия сетевой игры уже создана!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1085,7 +1106,7 @@ msgstr "" "\n" "После установки этого WAD вернуть прежнюю версию не получится. Продолжить?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "Диск уже должен быть вставлен." @@ -1095,11 +1116,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Чтобы загрузить быстрое сохранение, нужно указать игру." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1117,6 +1138,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Синхронизация возможна только при запущенной игре для Wii." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1150,7 +1175,7 @@ msgstr "" "Игра по сети с Wii Remote экспериментальная и может не работать.\n" "Используйте на свой страх и риск.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-код" @@ -1159,8 +1184,8 @@ msgstr "AR-код" msgid "AR Codes" msgstr "AR-коды" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1174,7 +1199,7 @@ msgid "About Dolphin" msgstr "Информация о Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Акселерометр" @@ -1193,7 +1218,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1294,19 +1319,19 @@ msgstr "Активировать чат сетевой игры" msgid "Active" msgstr "Активна" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Активная очередь потоков" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Активные потоки" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Адаптер" @@ -1314,7 +1339,7 @@ msgstr "Адаптер" msgid "Adapter Detected" msgstr "Адаптер обнаружен" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Адаптер:" @@ -1324,7 +1349,7 @@ msgstr "Адаптер:" msgid "Add" msgstr "Добавить" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Добавить &точку останова" @@ -1353,51 +1378,48 @@ msgstr "Добавить точку останова в памяти" msgid "Add memory &breakpoint" msgstr "Добавить &точку останова в памяти" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Добавить в &наблюдение" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Добавить..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Адрес" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Адресное пространство" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1477,12 +1499,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Расширенные" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1497,15 +1519,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1515,16 +1537,16 @@ msgstr "Африка" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1538,11 +1560,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1550,7 +1572,7 @@ msgid "All Files" msgstr "Все файлы" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Все файлы (*)" @@ -1559,7 +1581,7 @@ msgstr "Все файлы (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Все файлы GC/Wii" @@ -1568,8 +1590,8 @@ msgstr "Все файлы GC/Wii" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Файлы быстрых сохранений (*.sav, *.s##);; Все файлы (*)" @@ -1581,7 +1603,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1593,15 +1615,15 @@ msgstr "Коды всех игроков синхронизированы." msgid "All players' saves synchronized." msgstr "Сохранения всех игроков синхронизированы." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Разрешить несовпадение настроек региона" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Разрешить отправку статистики об использовании" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Разрешить запись на SD-карту" @@ -1631,7 +1653,7 @@ msgstr "Всегда" msgid "Always Connected" msgstr "Всегда подключен" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1669,15 +1691,15 @@ msgstr "Сглаживание:" msgid "Any Region" msgstr "Любой регион" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Добавить сигнатуру к" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Добавить к &имеющемуся файлу с сигнатурами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Примени&ть файл с сигнатурами..." @@ -1697,7 +1719,7 @@ msgstr "Дата загрузчика:" msgid "Apply" msgstr "Применить" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Применить файл с сигнатурами" @@ -1729,12 +1751,16 @@ msgstr "Вы уверены?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Соотношение сторон" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Соотношение сторон:" @@ -1742,7 +1768,7 @@ msgstr "Соотношение сторон:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1750,7 +1776,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1769,7 +1795,7 @@ msgstr "" "Как минимум 2 файла сохранений из выбранных вами имеют одинаковое внутреннее " "имя файла." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Подключить MotionPlus" @@ -1777,11 +1803,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 "Настройки растяжения звука" @@ -1793,12 +1819,12 @@ msgstr "Австралия" msgid "Author" msgstr "Автор" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Авторы" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Автоматически" @@ -1806,11 +1832,7 @@ msgstr "Автоматически" msgid "Auto (Multiple of 640x528)" msgstr "Автоматически (Кратное 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Настройки автообновления" @@ -1826,7 +1848,7 @@ msgstr "" "\n" "Пожалуйста, выберите конкретное внутреннее разрешение." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Автонастройка размера окна" @@ -1834,15 +1856,15 @@ msgstr "Автонастройка размера окна" msgid "Auto-Hide" msgstr "Автоскрытие" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Обнаруживать RSO автоматически?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1851,18 +1873,18 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "Вспомогательное" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "Б" @@ -1870,7 +1892,7 @@ msgstr "Б" msgid "BAT incorrect. Dolphin will now exit" msgstr "Некорректная BAT. Dolphin завершит работу" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1880,31 +1902,35 @@ msgstr "" "действительный MAC-адрес Nintendo GameCube. Сгенерируйте новый MAC-адрес, " "начиная с 00:09:bf или 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "Регистр в ТО " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Цепочка возврата" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Бэкенд" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Бэкенд:" @@ -1920,13 +1946,13 @@ msgstr "Ввод в фоне" msgid "Backward" msgstr "Назад" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Указан некорректный адрес." @@ -1934,20 +1960,20 @@ msgstr "Указан некорректный адрес." msgid "Bad dump" msgstr "Плохой дамп" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Указано неверное смещение." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Указано некорректное значение." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Логотип" @@ -1967,15 +1993,15 @@ msgstr "Тремоло" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Базовый приоритет" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Основные" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Основные настройки" @@ -1983,15 +2009,15 @@ msgstr "Основные настройки" msgid "Bass" msgstr "Басы" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Пакетный режим не может использоваться без указания запускаемой игры." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Батарея" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Бета (раз в месяц)" @@ -2015,31 +2041,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Бинарный SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Бинарный SSL (чтение)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Бинарный SSL (запись)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Битрейт (кбит/с):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Размер блока" @@ -2048,7 +2076,7 @@ msgstr "Размер блока" msgid "Block Size:" msgstr "Размер блока:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Блокирующий" @@ -2077,32 +2105,143 @@ msgstr "" "Включён режим проброса Bluetooth, но Dolphin собран без поддержки libusb. " "Невозможно использовать режим проброса." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Пауза после запуска" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Файл бэкапа NAND BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Файл с ключами BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Полноэкранный режим без рамок" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "снизу" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Ветка: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Ветви" @@ -2140,11 +2279,11 @@ msgstr "Широкополосный адаптер (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Широкополосный адаптер (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Ошибка широкополосного адаптера" @@ -2154,11 +2293,11 @@ msgstr "Ошибка широкополосного адаптера" msgid "Broadband Adapter MAC Address" msgstr "MAC-адрес широкополосного адаптера" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "Просмотр &сессий сетевой игры..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Размер буфера:" @@ -2192,7 +2331,7 @@ msgstr "Кнопка" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2208,7 +2347,7 @@ msgstr "Кнопка" msgid "Buttons" msgstr "Кнопки" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2218,11 +2357,11 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "С&оздать файл с сигнатурами..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP-регистр " @@ -2234,7 +2373,7 @@ msgstr "Движок эмуляции ЦП:" msgid "CPU Options" msgstr "Настройки ЦП" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2242,7 +2381,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Кэширующий интерпретатор (медленнее)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2253,7 +2392,7 @@ msgstr "" "возможные подвисания.

Если не уверены – оставьте " "выключенным." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Вычислить" @@ -2270,11 +2409,11 @@ msgstr "" "графикой.

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Откалибровать" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Калибровка" @@ -2282,19 +2421,19 @@ msgstr "Калибровка" msgid "Calibration Period" msgstr "Период калибровки" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Стэк вызова" @@ -2303,66 +2442,78 @@ msgid "Camera 1" msgstr "Камера 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Поле зрения камеры (влияет на точность наведения)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Не удаётся найти Wii Remote по дескриптору {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Отмена" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Отменить калибровку" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Не удалось выполнить SingleStep в FIFO. Воспользуйтесь перемоткой кадров." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Не удалось загрузить данный WAD, потому что его нельзя установить в NAND." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Не удалось найти IPL GC." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2370,19 +2521,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Не удалось запустить игру, потому что IPL GC не был найден." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2400,7 +2553,7 @@ msgstr "Центр" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Центрировать и откалибровать" @@ -2408,7 +2561,7 @@ msgstr "Центрировать и откалибровать" msgid "Change &Disc" msgstr "Сменить &диск" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Сменить &диск..." @@ -2416,7 +2569,7 @@ msgstr "Сменить &диск..." msgid "Change Disc" msgstr "Сменить диск" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Автоматически сменять диски" @@ -2424,7 +2577,7 @@ msgstr "Автоматически сменять диски" msgid "Change the disc to {0}" msgstr "Сменить диск на {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2460,7 +2613,7 @@ msgstr "Изменения в читах вступят в силу после msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2472,15 +2625,15 @@ msgstr "Чат" msgid "Cheat Code Editor" msgstr "Редактор чит-кодов" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Поиск чит-кодов" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Проверить NAND..." @@ -2488,7 +2641,7 @@ msgstr "Проверить NAND..." msgid "Check for Game List Changes in the Background" msgstr "Автоматически проверять список игр на наличие изменений" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Проверить обновления" @@ -2508,27 +2661,27 @@ msgstr "Контр. сумма" msgid "China" msgstr "Китай" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Выберите открываемый файл" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Выберите основной входной файл" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Выберите вторичный входной файл" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2555,15 +2708,19 @@ msgstr "Контроллер Classic" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Очистить" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Очистить кэш" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2571,7 +2728,7 @@ msgstr "" msgid "Clock Override" msgstr "Переопределение частоты" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Скопировать и &изменить код..." @@ -2580,36 +2737,20 @@ msgstr "Скопировать и &изменить код..." msgid "Close" msgstr "Закрыть" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "&Настройка" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Код" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2636,7 +2777,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Объединить &два файла с сигнатурами..." @@ -2663,7 +2808,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Компилировать шейдеры перед запуском" @@ -2671,9 +2816,9 @@ msgstr "Компилировать шейдеры перед запуском" msgid "Compiling Shaders" msgstr "Компиляция шейдеров" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Сжатие" @@ -2686,10 +2831,16 @@ msgstr "Уровень сжатия:" msgid "Compression:" msgstr "Сжатие:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2762,7 +2913,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Настройки" @@ -2795,13 +2946,13 @@ msgstr "Настройка вывода" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Подтвердить" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Подтвердите смену бэкенда" @@ -2809,7 +2960,7 @@ msgstr "Подтвердите смену бэкенда" msgid "Confirm on Stop" msgstr "Подтверждать остановку" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2820,15 +2971,15 @@ msgstr "Подтверждение" msgid "Connect" msgstr "Подключиться" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Подключить Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Подключить USB-клавиатуру" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Подключить Wii Remote %1" @@ -2848,7 +2999,7 @@ msgstr "Подключить Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Подключить Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Подключить Wii Remote" @@ -2889,7 +3040,7 @@ msgstr "Управление режимом гольфа сетевой игры msgid "Control Stick" msgstr "Control Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Профиль контроллера" @@ -2913,7 +3064,7 @@ msgstr "Профиль контроллера 4" msgid "Controller Settings" msgstr "Настройки управления" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Управление" @@ -2993,8 +3144,8 @@ msgstr "Сведение" msgid "Convergence:" msgstr "Сведение:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3002,9 +3153,9 @@ msgstr "" msgid "Convert" msgstr "Конвертация" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -3012,9 +3163,9 @@ msgstr "" msgid "Convert File..." msgstr "Конвертировать файл..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -3037,8 +3188,8 @@ msgstr "" "ISO. Вы всё равно хотите продолжить?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Идёт конвертация..." @@ -3076,15 +3227,15 @@ msgstr "" msgid "Copy" msgstr "Копировать" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Скопировать &функцию" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Скопировать &hex-значение" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Скопировать адрес" @@ -3092,19 +3243,19 @@ msgstr "Скопировать адрес" msgid "Copy Failed" msgstr "Копирование не удалось" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Скопировать hex-значение" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Скопировать код &строки" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -3122,6 +3273,11 @@ msgstr "Скопировать на B" msgid "Core" msgstr "Ядро" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -3131,7 +3287,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Стоимость" @@ -3224,7 +3380,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Не удалось распознать файл {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3269,13 +3425,13 @@ msgstr "Не удалось прочесть файл." msgid "Country:" msgstr "Страна:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3284,15 +3440,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "Создать новую карту памяти" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3301,22 +3453,8 @@ msgstr "" msgid "Create..." msgstr "Создать..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Создаёт дампы кадров и скриншоты во внутреннем разрешении, а не с размером " -"окна.

Если изображение широкоформатное, то на выходе оно будет " -"отмасштабировано по горизонтали с сохранением вертикального разрешения." -"

Если не уверены – оставьте выключенным." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Создатель:" @@ -3324,11 +3462,11 @@ msgstr "Создатель:" msgid "Critical" msgstr "Критический" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Обрезка" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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,26 +3478,26 @@ msgstr "" msgid "Crossfade" msgstr "Кроссфейдер" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Текущий регион" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Тек. значение" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Текущий контекст" @@ -3367,27 +3505,31 @@ msgstr "Текущий контекст" msgid "Current game" msgstr "Текущей игры" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Текущий поток" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3399,13 +3541,13 @@ msgstr "Свои настройки времени" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3432,7 +3574,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" @@ -3440,15 +3582,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 (медленно)" @@ -3474,7 +3616,7 @@ msgstr "Танцевальный коврик" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3490,7 +3632,7 @@ msgstr "" msgid "Data Transfer" msgstr "Перенос данных" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Тип данных" @@ -3523,8 +3665,8 @@ msgstr "Мёртвая зона" msgid "Debug" msgstr "Отладка" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Отладка" @@ -3533,7 +3675,7 @@ msgstr "Отладка" msgid "Decimal" msgstr "Десятичный" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Качество декодирования:" @@ -3580,7 +3722,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 "Устройство по умолчанию" @@ -3592,11 +3734,11 @@ msgstr "Шрифт по умолчанию" msgid "Default ISO:" msgstr "Образ по умолчанию:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Поток по умолчанию" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Отложить инвалидацию кэша EFB" @@ -3604,7 +3746,7 @@ msgstr "Отложить инвалидацию кэша EFB" msgid "Defer EFB Copies to RAM" msgstr "Отложенное копирование EFB в ОЗУ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3650,26 +3792,53 @@ msgstr "Процент глубины:" msgid "Depth:" msgstr "Глубина:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Описание" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Описание:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Отсоединён" @@ -3677,7 +3846,7 @@ msgstr "Отсоединён" msgid "Detect" msgstr "Считать" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Обнаружение модулей RSO" @@ -3685,7 +3854,7 @@ msgstr "Обнаружение модулей RSO" msgid "Deterministic dual core:" msgstr "Детерминированная двухядерность:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Разрабатываемая (несколько раз в день)" @@ -3694,7 +3863,7 @@ msgid "Device" msgstr "Устройство" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "PID устройства (напр., 0305)" @@ -3703,11 +3872,11 @@ msgid "Device Settings" msgstr "Настройки устройства" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "Устройство:" @@ -3715,11 +3884,7 @@ msgstr "Устройство:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Затемняет экран после пяти минут бездействия." @@ -3731,12 +3896,12 @@ msgstr "Прямое подключение" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Отключить" @@ -3748,7 +3913,7 @@ msgstr "Отключить эмуляцию bounding box" msgid "Disable Copy Filter" msgstr "Отключить фильтр копирования" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Отключить копии EFB в VRAM" @@ -3756,11 +3921,11 @@ msgstr "Отключить копии EFB в VRAM" msgid "Disable Emulation Speed Limit" msgstr "Отключить огр. скорости эмуляции" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Отключить быструю память" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3768,11 +3933,11 @@ msgstr "" msgid "Disable Fog" msgstr "Отключить туман" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Отключить кэш JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3791,7 +3956,7 @@ msgstr "" "игры не будут работать.

Если не уверены – оставьте " "включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4148,7 +4309,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4167,15 +4328,15 @@ msgstr "Длительность отпускания турбо-кнопки ( #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Голландский" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Закрыть" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -4208,7 +4369,7 @@ msgstr "Ранние обновления памяти" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -4221,7 +4382,7 @@ msgstr "Восточная Азия" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4237,15 +4398,15 @@ msgstr "Эффект" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Эффективное" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Эффективный приоритет" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "ЭиБ" @@ -4255,7 +4416,7 @@ msgstr "Извлечь диск" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4263,11 +4424,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Встроенный буфер кадров (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Пусто" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Процесс эмулятора уже запущен" @@ -4275,11 +4436,11 @@ msgstr "Процесс эмулятора уже запущен" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4293,7 +4454,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4316,28 +4477,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Скорость эмуляции" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Включить слои проверки API" @@ -4349,11 +4498,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Включить растяжение звука" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Включить чит-коды" @@ -4373,7 +4522,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "Включить двухядерный режим" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Включить двухядерный режим (ускорение)" @@ -4393,7 +4542,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Включить FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4419,6 +4568,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4432,7 +4585,7 @@ msgstr "Включить MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Включить прогрессивную развёртку" @@ -4445,11 +4598,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Включить вибрацию" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Включить скринсейвер" @@ -4461,15 +4614,15 @@ msgstr "Включить данные динамика" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Включить отправку статистики об использовании" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Включить каркас моделей" @@ -4539,7 +4692,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4575,7 +4728,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4588,7 +4741,7 @@ msgstr "" "Vulkan.

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 +4761,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 "Включает растяжение звука для соответствия скорости эмуляции." @@ -4636,7 +4789,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 +4797,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4657,7 +4810,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4689,7 +4842,7 @@ msgstr "Enet не был инициализирован" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Английский" @@ -4698,7 +4851,7 @@ msgstr "Английский" msgid "Enhancements" msgstr "Улучшения" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4720,11 +4873,17 @@ msgstr "Введите новый MAC-адрес широкополосного msgid "Enter password" msgstr "Введите пароль" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Введите адрес модуля RSO:" @@ -4733,8 +4892,8 @@ msgstr "Введите адрес модуля RSO:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4745,45 +4904,51 @@ msgstr "Введите адрес модуля RSO:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4793,16 +4958,16 @@ msgstr "Введите адрес модуля RSO:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Ошибка" @@ -4819,9 +4984,9 @@ msgstr "Ошибка открытия адаптера: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4834,7 +4999,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Ошибка при получении списка сессий: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4902,7 +5067,7 @@ msgstr "Ошибка: GBA{0} не удалось открыть сохранен msgid "Error: This build does not support emulated GBA controllers" msgstr "Ошибка: Данная сборка не поддерживает эмулируемые контроллеры GBA" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4910,7 +5075,7 @@ msgstr "" "Ошибка: попытка получить доступ к шрифтам Shift JIS, когда они не загружены. " "Игры могут показывать шрифты некорректно или падать." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4931,40 +5096,12 @@ msgstr "В {0} неиспользуемых блоках раздела {1} на msgid "Euphoria" msgstr "Эйфория" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Европа" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Только убершейдеры" @@ -4972,7 +5109,7 @@ msgstr "Только убершейдеры" msgid "Exit" msgstr "Выйти" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Ожидался + или закрывающая скобка." @@ -4980,7 +5117,7 @@ msgstr "Ожидался + или закрывающая скобка." msgid "Expected arguments: " msgstr "Ожидались аргументы: " -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Ожидалась закрывающая скобка." @@ -4992,15 +5129,15 @@ msgstr "Ожидалась запятая." msgid "Expected end of expression." msgstr "Ожидался конец выражения." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Ожидалось название ввода." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Ожидалась открывающаяся скобка." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Ожидалось начало выражения." @@ -5008,11 +5145,11 @@ msgstr "Ожидалось начало выражения." msgid "Expected variable name." msgstr "Ожидалось название переменной." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Экспериментальные" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Экспортировать все сохранения Wii" @@ -5027,7 +5164,7 @@ msgstr "Не удалось экспортировать" msgid "Export Recording" msgstr "Экспорт записи" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Экспорт записи..." @@ -5055,14 +5192,14 @@ msgstr "Экспорт в .&gcs..." msgid "Export as .&sav..." msgstr "Экспорт в .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Экспортировано сохранений: %n" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Расширение" @@ -5083,7 +5220,7 @@ msgstr "Внешний адрес" msgid "External Frame Buffer (XFB)" msgstr "Внешний буфер кадров (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Извлечь сертификаты из NAND" @@ -5116,12 +5253,12 @@ msgid "Extracting Directory..." msgstr "Извлечение папки..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "ФД" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "Проигрыватель FIFO" @@ -5141,7 +5278,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Не удалось добавить сессию в индекс сетевой игры: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Не удалось добавить данные в файл с сигнатурами '%1'" @@ -5149,12 +5286,12 @@ msgstr "Не удалось добавить данные в файл с сиг msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -5182,19 +5319,20 @@ msgstr "Не удалось создать глобальные ресурсы D msgid "Failed to create DXGI factory" msgstr "Не удалось создать фабрику DXGI" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -5216,15 +5354,15 @@ msgstr "Не удалось удалить выбранный файл." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Не удалось отключить драйвер ядра для проброса BT: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Не удалось скачать коды." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Не удалось сдампить %1: невозможно открыть файл" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Не удалось сдампить %1: ошибка записи в файл" @@ -5237,7 +5375,7 @@ msgstr "Не удалось экспортировать %n из %1 сохран msgid "Failed to export the following save files:" msgstr "Не удалось экспортировать следующие файлы сохранений:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Не удалось извлечь сертификаты из NAND" @@ -5263,22 +5401,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Не удалось найти один или более символ D3D" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Не удалось импортировать \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Не удалось импортировать файл сохранения. Пожалуйста, запустите игру, а " "потом попробуйте ещё раз." -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5286,7 +5420,7 @@ msgstr "" "Не удалось импортировать файл сохранения. Похоже, что данный файл повреждён " "или не является корректным сохранением Wii." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5297,7 +5431,7 @@ msgstr "" "ваш NAND (Инструменты -> Управлять NAND -> Проверить NAND...), затем " "импортируйте файл сохранения ещё раз." -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Не удалось инициализировать ядро" @@ -5308,7 +5442,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Не удалось инициализировать классы рендеринга" @@ -5317,11 +5451,11 @@ msgid "Failed to install pack: %1" msgstr "Не удалось установить набор: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Не удалось установить этот продукт в NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5329,8 +5463,8 @@ msgstr "" "Не удалось инициализировать прослушивание порта %1. У вас запущен ещё один " "сервер сетевой игры?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Не удалось загрузить модуль RSO на %1" @@ -5342,19 +5476,21 @@ msgstr "Не удалось загрузить d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Не удалось загрузить dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Не удалось загрузить файл с картой '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Не удалось загрузить исполняемый файл в память." @@ -5366,13 +5502,21 @@ msgstr "" "Не удалось загрузить {0}. Если вы пользуетесь Windows 7, попробуйте " "установить пакет обновления KB4019990." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Не удалось открыть '%1'" @@ -5380,6 +5524,10 @@ msgstr "Не удалось открыть '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "Не удалось открыть Bluetooth-устройство: {0}" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Не удалось открыть файл с конфигурацией!" @@ -5410,28 +5558,32 @@ msgstr "" msgid "Failed to open file." msgstr "Не удалось открыть файл." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Не удалось открыть сервер" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5454,7 +5606,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Не удалось обработать данные с Redump.org" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5476,31 +5628,34 @@ msgstr "Не удалось прочесть входной файл \"{0}\"." msgid "Failed to read selected savefile(s) from memory card." msgstr "Не удалось прочитать выбранные файлы сохранений с карты памяти." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5541,31 +5696,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Не удалось сохранить лог FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Не удалось сохранить карту кода по пути '%1'" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Не удалось сохранить файл сигнатуры '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "Не удалось сохранить карту символов по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "Не удалось сохранить файл с сигнатурами '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5618,7 +5773,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Ошибка" @@ -5626,11 +5781,11 @@ msgstr "Ошибка" msgid "Fair Input Delay" msgstr "Честная задержка ввода" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Резервный регион" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Резервный регион:" @@ -5643,7 +5798,7 @@ msgstr "Быстрое" msgid "Fast Depth Calculation" msgstr "Быстрое вычисление глубины" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5656,11 +5811,11 @@ msgstr "" msgid "Field of View" msgstr "Поле зрения" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5668,9 +5823,9 @@ msgstr "" msgid "File Details" msgstr "Информация о файле" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Формат файла" @@ -5682,20 +5837,20 @@ msgstr "Формат файла:" msgid "File Info" msgstr "Информация о файле" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Имя файла" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Путь к файлу" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Размер файла" @@ -5703,7 +5858,7 @@ msgstr "Размер файла" msgid "File Size:" msgstr "Размер файла:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Файл не содержит кодов." @@ -5741,15 +5896,15 @@ msgstr "Файловая система" msgid "Filters" msgstr "Фильтры" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Искать &далее" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Искать &ранее" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Завершить калибровку" @@ -5763,7 +5918,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5779,31 +5934,32 @@ msgstr "Исправить контр. суммы" msgid "Fix Checksums Failed" msgstr "Не удалось исправить контрольные суммы" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Флаги" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Перейти к &ветке" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" "Для наилучших результатов медленно двигайте устройство ввода во всех " @@ -5815,13 +5971,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5829,7 +5985,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" @@ -5861,11 +6017,11 @@ msgstr "Принудительно слушать порт:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5907,17 +6063,17 @@ msgstr "Вперед" msgid "Forward port (UPnP)" msgstr "Пробросить порт (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Найдено %1 результатов для \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "Найдено адресов: %n." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Кадр %1" @@ -5938,7 +6094,7 @@ msgstr "Перемотка кадров: увел. скорость" msgid "Frame Advance Reset Speed" msgstr "Перемотка кадров: сбросить скорость" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Дамп кадров" @@ -5946,7 +6102,7 @@ msgstr "Дамп кадров" msgid "Frame Range" msgstr "Диапазон кадров" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Изображения с дампами кадра(ов) '{0}' уже существуют. Перезаписать?" @@ -5970,7 +6126,7 @@ msgstr "Свободных файлов: %1" msgid "Free Look Control Type" msgstr "Тип управления свободным обзором" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Контроллер свободного обзора %1" @@ -6005,7 +6161,7 @@ msgstr "Вкл./выкл. свободный обзор" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Французский" @@ -6029,7 +6185,7 @@ msgstr "от" msgid "From:" msgstr "От:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Во весь экран" @@ -6061,7 +6217,7 @@ msgstr "Ядро GBA" msgid "GBA Port %1" msgstr "Порт GBA %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "Настройки GBA" @@ -6195,20 +6351,20 @@ msgstr "" "ГП: Ваша видеокарта поддерживает OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Игра" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Картриджи от Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6216,7 +6372,7 @@ msgstr "" "Образы игр Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Все файлы (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6244,8 +6400,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "ID игры" @@ -6307,11 +6463,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "Контроллер GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "Контроллер GameCube на порту %1" @@ -6319,11 +6475,11 @@ msgstr "Контроллер GameCube на порту %1" msgid "GameCube Controllers" msgstr "Контроллеры GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "Клавиатура GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "Клавиатура GameCube на порту %1" @@ -6336,11 +6492,11 @@ msgid "GameCube Memory Cards" msgstr "Карты памяти GameCube" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Карты памяти GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "Микрофон GameCube − Слот %1" @@ -6368,7 +6524,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-коды" @@ -6378,35 +6534,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Общие" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Общее и настройки" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Создать код Action Replay" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Сгенерировать новый ID сбора статистики" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Немецкий" @@ -6418,18 +6574,18 @@ msgstr "Германия" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "ГиБ" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6442,8 +6598,8 @@ msgid "Good dump" msgstr "Хороший дамп" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Графика" @@ -6488,7 +6644,7 @@ msgstr "Зеленая слева" msgid "Green Right" msgstr "Зеленая справа" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "В виде сетки" @@ -6497,7 +6653,7 @@ msgstr "В виде сетки" msgid "Guitar" msgstr "Гитара" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Гироскоп" @@ -6525,36 +6681,35 @@ msgstr "" msgid "Hacks" msgstr "Хаки" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Голова" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Помощь" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6567,7 +6722,11 @@ msgstr "Шестнадцатеричный" msgid "Hide" msgstr "Спрятать" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Скрыть все" @@ -6583,12 +6742,12 @@ msgstr "Скрыть несовместимые сессии" msgid "Hide Remote GBAs" msgstr "Скрыть сетевые GBA" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "Самое высокое" @@ -6597,14 +6756,8 @@ msgstr "Самое высокое" msgid "Hit Strength" msgstr "Сила удара" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Гориз. угол обзора" @@ -6621,7 +6774,7 @@ msgstr "Код хоста:" msgid "Host Input Authority" msgstr "Хост управляет вводом" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Размер хоста" @@ -6650,16 +6803,16 @@ msgstr "Хост управляет вводом" msgid "Host with NetPlay" msgstr "Создать сетевую игру" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Имя хоста" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Горячие клавиши" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Горячие клавиши" @@ -6668,7 +6821,7 @@ msgstr "Горячие клавиши" msgid "Hotkeys Require Window Focus" msgstr "Для горячих клавиш требуется окно в фокусе" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Гибридные убершейдеры" @@ -6682,16 +6835,16 @@ msgstr "Гц" msgid "I am aware of the risks and want to continue" msgstr "Я предупрежден о рисках и хочу продолжить" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6732,7 +6885,7 @@ msgid "IR" msgstr "ИК" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Чувствительность ИК:" @@ -6784,11 +6937,11 @@ msgstr "" "Подходит для пошаговых игр с элементами управления, чувствительными ко " "времени, такими как гольф." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Генерация ID" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6846,11 +6999,15 @@ msgstr "" msgid "Ignore" msgstr "Игнорировать" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Игнорировать изменение формата" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Игнорировать для данной сессии" @@ -6882,7 +7039,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Выводить XFB немедленно" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6897,7 +7054,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Импортировать бэкап BootMii NAND..." @@ -6912,15 +7069,15 @@ msgstr "Не удалось импортировать" msgid "Import Save File(s)" msgstr "Импорт файлов сохранений" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Импортировать сохранение Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Импортирование бэкапа NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6933,15 +7090,6 @@ msgstr "" msgid "In-Game?" msgstr "В игре?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6955,27 +7103,27 @@ msgstr "" "сохранение.

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -7020,15 +7168,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7048,8 +7197,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Информация" @@ -7063,10 +7212,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Ввод" @@ -7080,20 +7229,26 @@ msgstr "Сила ввода, требуемая для активации." msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Вставить &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Вставить SD-карту" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7107,7 +7262,7 @@ msgstr "Установить раздел (%1)" msgid "Install Update" msgstr "Установить обновление" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Установить WAD..." @@ -7115,11 +7270,13 @@ msgstr "Установить WAD..." msgid "Install to the NAND" msgstr "Установить в NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Инструкция" @@ -7128,7 +7285,7 @@ msgstr "Инструкция" msgid "Instruction Breakpoint" msgstr "Точка останова инструкции" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Инструкция:" @@ -7137,7 +7294,7 @@ msgstr "Инструкция:" msgid "Instruction: %1" msgstr "Инструкция: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7154,19 +7311,19 @@ msgstr "Интенсивность" msgid "Interface" msgstr "Интерфейс" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7179,19 +7336,19 @@ msgstr "Внутренняя ошибка LZO - ошибка сжатия" msgid "Internal LZO Error - decompression failed" msgstr "Внутренняя ошибка LZO - распаковка не удалась" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7206,7 +7363,7 @@ msgstr "Внутреннее разрешение" msgid "Internal Resolution:" msgstr "Внутреннее разрешение:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -7214,11 +7371,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Интерпретатор (самый медленный)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Ядро интерпретатора" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Некорректное выражение." @@ -7230,7 +7387,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Неверный смешанный код" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Некорректный набор %1 указан: %2" @@ -7239,11 +7396,11 @@ msgstr "Некорректный набор %1 указан: %2" msgid "Invalid Player ID" msgstr "Некорректный ID игрока" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Некорректный адрес модуля RSO: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Некорректный стэк вызовов" @@ -7272,7 +7429,7 @@ msgstr "Неверные входные данные" msgid "Invalid literal." msgstr "Некорректный литерал." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -7284,19 +7441,19 @@ msgstr "Предоставлен неверный пароль." msgid "Invalid recording file" msgstr "Неверный файл записи" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Неверные параметры поиска (не выбран объект)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "Неверная строка поиска (невозможно конвертировать в число)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Неверная строка поиска (поддерживаются только строки чётной длины)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Неверный ID продукта." @@ -7306,7 +7463,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Итальянский" @@ -7315,63 +7472,63 @@ msgid "Italy" msgstr "Италия" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "Отключить линковку блоков JIT" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "Блоки JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "Отключить JIT Branch" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "Отключить JIT для FloatingPoint" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "Отключить JIT для Integer" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "Отключить JIT LoadStore Floating" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "Отключить JIT LoadStore" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "Отключить JIT LoadStore Paired" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "Отключить JIT LoadStore lXz" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "Отключить JIT LoadStore lbzx" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "Отключить JIT LoadStore lwz" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "Отключить JIT (ядро JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "Отключить JIT Paired" @@ -7383,16 +7540,16 @@ msgstr "JIT-рекомпилятор для ARM64 (рекомендуется)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-рекомпилятор для x86-64 (рекомендуется)" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "Отключить кэш регистров JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "Отключить JIT SystemRegisters" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7401,12 +7558,16 @@ msgstr "" "происходить. Пожалуйста, сообщите об этой ошибке в багтрекере. Dolphin " "завершит работу." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Япония" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Японский" @@ -7417,13 +7578,13 @@ msgstr "Японский" msgid "Japanese (Shift-JIS)" msgstr "Японская (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7437,7 +7598,7 @@ msgstr "Держать окно поверх остальных" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7458,7 +7619,7 @@ msgstr "" msgid "Keys" msgstr "Клавиши" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "КиБ" @@ -7466,12 +7627,12 @@ msgstr "КиБ" msgid "Kick Player" msgstr "Исключить игрока" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Корея" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Корейский" @@ -7482,7 +7643,7 @@ msgstr "Корейский" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7492,7 +7653,7 @@ msgstr "" msgid "L-Analog" msgstr "L-аналог" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "Сохр. LR" @@ -7500,35 +7661,37 @@ msgstr "Сохр. LR" msgid "Label" msgstr "Название" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Посл. значение" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 мс" @@ -7604,13 +7767,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Лицензия" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7624,7 +7787,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7632,11 +7795,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Ограничить скорость закачки:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Столбцы в списке" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "В виде списка" @@ -7647,29 +7810,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Загр." -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Загрузить файл с &плохими картами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Загрузить &другой файл с картой..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Загружать свои текстуры" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Загрузить главное меню GameCube" @@ -7690,7 +7860,7 @@ msgstr "Путь к загрузке:" msgid "Load ROM" msgstr "Загрузить образ игры" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7779,19 +7949,19 @@ msgstr "Быстрая загрузка 8" msgid "Load State Slot 9" msgstr "Быстрая загрузка 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Быстрая загрузка из файла" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Быстрая загрузка из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Быстрая загрузка из слота" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Загрузить системное меню Wii %1" @@ -7803,16 +7973,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Загрузить из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Быстрая загрузка из слота %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Загрузить файл с картой" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7820,11 +7990,11 @@ msgstr "" msgid "Load..." msgstr "Загрузить..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Загружены символы из '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -7834,7 +8004,7 @@ msgstr "" "DynamicInputTextures/<game_id>/.

Если не " "уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7854,7 +8024,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Лог" @@ -7866,7 +8036,7 @@ msgstr "Настройка логирования" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Логировать покрытие инструкций JIT" @@ -7874,7 +8044,7 @@ msgstr "Логировать покрытие инструкций JIT" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Записывать время рендеринга в файл" @@ -7890,7 +8060,7 @@ msgstr "Вывод логов" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7909,16 +8079,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Соединение с сервером сетевой игры потеряно..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "Самое низкое" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7926,7 +8096,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "УМИРАЕТ" @@ -7936,7 +8106,7 @@ msgstr "Файлы Gameshark MadCatz" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7944,37 +8114,37 @@ msgstr "" msgid "Main Stick" msgstr "Основной стик" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Создатель" @@ -7996,12 +8166,12 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Управлять NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -8013,7 +8183,7 @@ msgstr "Порты" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Найдено совпадение" @@ -8030,16 +8200,16 @@ msgstr "Максимальный размер буфера изменён на % msgid "Maximum tilt angle." msgstr "Максимальный угол наклона." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Среднее" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Память" @@ -8051,7 +8221,7 @@ msgstr "Точка останова в памяти" msgid "Memory Card" msgstr "Карта памяти" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Менеджер карт памяти" @@ -8063,7 +8233,7 @@ msgstr "" msgid "Memory Override" msgstr "Переопределение памяти" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Опции точек останова в памяти" @@ -8079,7 +8249,7 @@ msgstr "MemoryCard: вызвано чтение некорректного уч msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: вызвана запись в некорректный участок памяти ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8090,29 +8260,33 @@ msgstr "" "сохранения. Этот процесс необратим, поэтому рекомендуется иметь бэкапы обоих " "NAND. Вы уверены, что хотите продолжить?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Микрофон" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Разное" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Разное" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8141,12 +8315,16 @@ msgstr "" "- Название: {3}\n" "- Хэш: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8157,24 +8335,25 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Найдено модулей: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Моно" @@ -8186,16 +8365,16 @@ msgstr "Моноскопические тени" msgid "Monospaced Font" msgstr "Моноширный шрифт" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Данные движения" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Симуляция движения" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Мотор" @@ -8232,6 +8411,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8241,10 +8424,10 @@ msgstr "" msgid "N&o to All" msgstr "&Нет для всех" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Проверка NAND" @@ -8253,8 +8436,8 @@ msgstr "Проверка NAND" msgid "NKit Warning" msgstr "Предупреждение NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8263,7 +8446,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8280,25 +8463,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Имя" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Название новой метки:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Название удаляемой метки:" @@ -8307,7 +8490,7 @@ msgid "Name of your session shown in the server browser" msgstr "Имя вашей сессии для отображения в списке серверов" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8364,7 +8547,7 @@ msgstr "" msgid "Network" msgstr "Сеть" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Формат дампа сети:" @@ -8394,7 +8577,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Новый поиск" @@ -8402,7 +8585,7 @@ msgstr "Новый поиск" msgid "New Tag..." msgstr "Новая метка..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Новый ID сгенерирован." @@ -8410,7 +8593,7 @@ msgstr "Новый ID сгенерирован." msgid "New instruction:" msgstr "Новая инструкция:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Новая метка" @@ -8419,7 +8602,7 @@ msgstr "Новая метка" msgid "Next Game Profile" msgstr "Следующий игровой профиль" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Следующее совпадение" @@ -8433,7 +8616,7 @@ msgid "Nickname is too long." msgstr "Ник очень длинный." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Ник:" @@ -8447,7 +8630,7 @@ msgstr "Нет" msgid "No Adapter Detected" msgstr "Адаптеров не обнаружено" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8461,7 +8644,7 @@ msgstr "Нет вывода звука" msgid "No Compression" msgstr "Без сжатия" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Нет совпадений" @@ -8469,16 +8652,16 @@ msgstr "Нет совпадений" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Нет описания" @@ -8494,15 +8677,15 @@ msgstr "Не выбрано расширение." msgid "No file loaded / recorded." msgstr "Файл не загружен / записан." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8511,7 +8694,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Проблем не обнаружено." @@ -8523,10 +8706,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "В файле M3U \"{0}\" не найдены пути" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Проблем не обнаружено." @@ -8542,11 +8721,11 @@ msgstr "" "означает, что с большой вероятностью не будет проблем, которые повлияют на " "эмуляцию." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Профили для игровой настройки '{0}' не найдены" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Запись не загружена." @@ -8555,7 +8734,7 @@ msgstr "Запись не загружена." msgid "No save data found." msgstr "Данные сохранений не найдены." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Не найден undo.dtm, выполнено прерывание отмены загрузки быстрого сохранения " @@ -8564,11 +8743,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Отсутствует" @@ -8634,7 +8813,7 @@ msgid "Null" msgstr "Пустой" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "Кол-во запусков" @@ -8669,10 +8848,58 @@ msgstr "Стик нунчака" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Объект %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Диапазон обьектов" @@ -8686,7 +8913,7 @@ msgstr "Океания" msgid "Off" msgstr "Выкл" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Смещение" @@ -8698,14 +8925,29 @@ msgstr "Вкл" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Онлайн-&документация" @@ -8713,7 +8955,7 @@ msgstr "Онлайн-&документация" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8721,7 +8963,7 @@ msgstr "" "Добавлять только символы с префиксом:\n" "(Пусто - все символы)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8731,7 +8973,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Открыть" @@ -8740,11 +8982,11 @@ msgstr "Открыть" msgid "Open &Containing Folder" msgstr "Открыть &папку с образом" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Открыть папку..." @@ -8765,7 +9007,7 @@ msgstr "Открыть XML Riivolution..." msgid "Open Wii &Save Folder" msgstr "Открыть папку с &сохранениями Wii" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Открыть папку с дампами" @@ -8798,11 +9040,11 @@ msgid "Operators" msgstr "Операторы" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Опции" @@ -8815,13 +9057,36 @@ msgstr "Оранжевая" msgid "Orbital" msgstr "По орбите" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Прочие" @@ -8834,7 +9099,7 @@ msgstr "Другой раздел (%1)" msgid "Other State Hotkeys" msgstr "Другие горячие клавиши" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Другое управление сохранениями" @@ -8854,16 +9119,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "&Проиграть записанный ввод..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8872,15 +9137,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Уровень сжатия PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Уровень сжатия PNG:" @@ -8888,11 +9153,11 @@ msgstr "Уровень сжатия PNG:" msgid "PNG image file (*.png);; All Files (*)" msgstr "Файл изображения PNG (*.png);; Все файлы (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "Размер PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC и Хост" @@ -8905,11 +9170,11 @@ msgstr "Геймпад" msgid "Pads" msgstr "Мембраны" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Параметры" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8960,11 +9225,15 @@ msgstr "Путь:" msgid "Paths" msgstr "Пути" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Пауза" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Пауза в конце ролика" @@ -9003,7 +9272,7 @@ msgstr "Пиковая скорость взмаха." msgid "Per-Pixel Lighting" msgstr "Попискельное освещение" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Обновить систему через интернет" @@ -9011,33 +9280,33 @@ msgstr "Обновить систему через интернет" msgid "Perform System Update" msgstr "Выполнить обновление системы" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Физическое" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "ПиБ" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Выбрать шрифт для отладки" @@ -9053,12 +9322,12 @@ msgstr "Тангаж вниз" msgid "Pitch Up" msgstr "Тангаж вверх" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Платформа" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Запуск" @@ -9070,7 +9339,7 @@ msgstr "Проигрывание / запись" msgid "Play Recording" msgstr "Проиграть записанное" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -9082,27 +9351,27 @@ msgstr "Параметры просмотра" msgid "Player" msgstr "Игрок" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -9111,7 +9380,8 @@ msgstr "" msgid "Players" msgstr "Игроки" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -9123,23 +9393,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Направление" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Порт %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -9148,7 +9422,7 @@ msgstr "" msgid "Port:" msgstr "Порт:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -9171,11 +9445,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Конфигурация шейдеров пост-обработки" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Предзагружать свои текстуры" @@ -9183,11 +9457,11 @@ msgstr "Предзагружать свои текстуры" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Преждевременный конец ролика в PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Преждевременный конец ролика в PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Преждевременный конец ролика в PlayWiimote. {0} > {1}" @@ -9212,7 +9486,7 @@ msgstr "Кнопка синхронизации" msgid "Pressure" msgstr "Давление" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9232,7 +9506,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Предыдущий игровой профиль" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Предыдущее совпадение" @@ -9243,7 +9517,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Примитив %1" @@ -9255,7 +9529,7 @@ msgstr "Частные" msgid "Private and Public" msgstr "Частные и открытые" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Проблема" @@ -9295,8 +9569,8 @@ msgstr "Счётчик команд" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Ход выполнения" @@ -9304,11 +9578,11 @@ msgstr "Ход выполнения" msgid "Public" msgstr "Открытые" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Очистить кэш списка игр" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9328,7 +9602,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. С увеличением качества возрастает задержка аудио." @@ -9336,7 +9610,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Вопрос" @@ -9357,19 +9631,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-аналог" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "ГОТОВ" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "Модули RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "Автообнаружение RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "РАБОТАЕТ" @@ -9382,11 +9656,11 @@ msgstr "RVZ образы GC/Wii (*.rvz)" msgid "Range" msgstr "Диапазон" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Конец диапазона: " -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Начало диапазона: " @@ -9398,7 +9672,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "За&менить инструкцию" @@ -9410,14 +9688,14 @@ msgstr "Чтение" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Чтение и запись" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Только для чтения" @@ -9438,10 +9716,15 @@ msgstr "Настоящая Balance Board" msgid "Real Wii Remote" msgstr "Настоящий Wii Remote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9455,7 +9738,7 @@ msgstr "Запись" msgid "Record Inputs" msgstr "Записывать ввод" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Запись" @@ -9497,7 +9780,7 @@ msgstr "" "

Если не уверены – выберите Отсутствует." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Статус на Redump.org:" @@ -9505,14 +9788,14 @@ msgstr "Статус на Redump.org:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Обновить" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Обновить значения" @@ -9520,13 +9803,13 @@ msgstr "Обновить значения" msgid "Refresh Game List" msgstr "Обновить список игр" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" "Обновление не удалось. Пожалуйста, запустите игру на некоторое время и " "попробуйте снова." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Текущие значения обновлены." @@ -9535,8 +9818,8 @@ msgstr "Текущие значения обновлены." msgid "Refreshing..." msgstr "Обновление..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Регион" @@ -9565,7 +9848,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Удалить" @@ -9582,7 +9865,7 @@ msgstr "Удалить мусорные данные (безвозвратно): msgid "Remove Tag..." msgstr "Удалить метку..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Удалить метку" @@ -9596,8 +9879,8 @@ msgstr "" "конечно, вы впоследствии не запакуете данный образ в архив вроде ZIP). Вы " "всё равно хотите продолжить?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Переименовать символ" @@ -9605,11 +9888,11 @@ msgstr "Переименовать символ" msgid "Render Window" msgstr "Окно отрисовки" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Выводить изображение в главное окно" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9627,23 +9910,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Сбросить" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Сброс результатов" @@ -9671,6 +9953,10 @@ msgstr "Сбросить поле" msgid "Reset all saved Wii Remote pairings" msgstr "Сбросить все сопряжения Wii Remote" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Менеджер наборов ресурсов" @@ -9687,7 +9973,7 @@ msgstr "Требуется перезапуск" msgid "Restore Defaults" msgstr "По умолчанию" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Восстановить инструкцию" @@ -9704,7 +9990,7 @@ msgstr "Скорость возврата" msgid "Revision" msgstr "Ревизия" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Ревизия: %1" @@ -9763,7 +10049,7 @@ msgstr "Крен вправо" msgid "Room ID" msgstr "ID комнаты" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Поворот" @@ -9781,26 +10067,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Вибрация" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Запуск &до сюда" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Запускать ядра GBA в выделенных потоках" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9816,19 +10128,19 @@ msgstr "Россия" msgid "SD Card" msgstr "SD-карты" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Образ SD-карты (*.raw);;Все файлы (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Путь к SD-карте:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9836,7 +10148,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9849,7 +10161,7 @@ msgstr "" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9857,11 +10169,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "Контекст SSL" @@ -9871,11 +10183,11 @@ msgstr "Контекст SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "Со&хранить код" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Быстрое &сохранение" @@ -9888,7 +10200,6 @@ msgstr "Безопасное" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9898,9 +10209,17 @@ msgstr "Сохр." msgid "Save All" msgstr "Сохранить все" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Экспортировать сохранение" @@ -9909,24 +10228,24 @@ msgid "Save FIFO log" msgstr "Сохранить лог FIFO" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Сохранить файл в" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Импортировать сохранение" @@ -9938,13 +10257,13 @@ msgstr "Сохранить самое старое сохранение" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Быстрое сохранение" @@ -9988,23 +10307,23 @@ msgstr "Быстрое сохранение 8" msgid "Save State Slot 9" msgstr "Быстрое сохранение 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Быстрое сохранение в файл" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Быстрое сохранение в старый слот" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Быстрое сохранение в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Быстрое сохранение в слот" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Сохранить карту символов &как..." @@ -10012,7 +10331,7 @@ msgstr "Сохранить карту символов &как..." msgid "Save Texture Cache to State" msgstr "Хранить кэш текстур в сохранении" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Быстрые сохранение и загрузка" @@ -10024,11 +10343,11 @@ msgstr "" msgid "Save as..." msgstr "Сохранить как..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Сохранить объединённый файл как" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10039,15 +10358,15 @@ msgstr "" "перезаписаны.\n" "Перезаписать сейчас?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Сохранение в той же папке, где и образ" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Сохранить файл с картой" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Сохранить файл сигнатуры" @@ -10055,7 +10374,7 @@ msgstr "Сохранить файл сигнатуры" msgid "Save to Selected Slot" msgstr "Сохранить в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Сохранить в слот %1 - %2" @@ -10069,7 +10388,7 @@ msgstr "" "Сохранённые сопряжения Wii Remote могут быть сброшены только при запущенной " "игре для Wii." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Сохранения:" @@ -10081,26 +10400,26 @@ msgstr "Быстрое сохранение ролика {0} поврежден msgid "Scaled EFB Copy" msgstr "Увеличенная копия EFB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Сканирование успешно завершено." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Скриншот" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Поиск" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Найти адрес" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Искать текущий объект" @@ -10108,11 +10427,11 @@ msgstr "Искать текущий объект" msgid "Search Subfolders" msgstr "Искать в подпапках" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Поиск и фильтрация" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10120,7 +10439,7 @@ msgstr "" "Поиск в виртуальном адресном пространстве пока невозможен. Пожалуйста, " "запустите игру на некоторое время и попробуйте снова." -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Найти инструкцию" @@ -10128,11 +10447,11 @@ msgstr "Найти инструкцию" msgid "Search games..." msgstr "Искать игры..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Поиск инструкции" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -10154,7 +10473,7 @@ msgstr "" "Раздел, в котором содержится большинство настроек, связанных с ЦП и " "оборудованием." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Настройки безопасности" @@ -10162,28 +10481,36 @@ msgstr "Настройки безопасности" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Выберите путь к дампам" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Выберите папку для экспорта" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Выбрать BIOS GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Выбрать образ игры GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Выберите путь к файлам сохранений GBA" @@ -10203,15 +10530,15 @@ msgstr "Выберите путь к наборам ресурсов" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Выбрать слот %1 - %2" @@ -10219,7 +10546,7 @@ msgstr "Выбрать слот %1 - %2" msgid "Select State" msgstr "Выбор сохранения" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Выбрать слот сохранения" @@ -10278,15 +10605,15 @@ msgstr "Выберите папку" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Выберите файл" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10294,11 +10621,11 @@ msgstr "" msgid "Select a Game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Выберите образ SD-карты" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10306,19 +10633,19 @@ msgstr "" msgid "Select a game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Выберите продукт для установки в NAND" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Выбрать e-карточки" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Выберите адрес модуля RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -10326,12 +10653,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Выберите файл с ключами (дамп OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Выберите файл сохранения" @@ -10347,7 +10674,7 @@ msgstr "Выберите, куда вы хотите сохранить скон msgid "Selected Font" msgstr "Выбранный шрифт" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Выбранный профиль контроллера не существует" @@ -10359,15 +10686,15 @@ msgstr "Выбранный профиль контроллера не сущес msgid "Selected game doesn't exist in game list!" msgstr "Выбранной игры нету в списке игр!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Выбранный стэк вызовов потока" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Выбранный контекст потока" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10375,7 +10702,7 @@ msgstr "" "Выбирает используемый аппаратный адаптер.

%1 не " "поддерживает эту возможность." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10383,6 +10710,25 @@ msgstr "" "Выбирает используемый аппаратный адаптер.

Если не " "уверены – выберите первый." +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10402,18 +10748,29 @@ msgstr "" "– ещё один вид 3D, который используется в некоторых телевизорах." "

Если не уверены – выберите Выкл." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10434,7 +10791,7 @@ msgstr "" msgid "Send" msgstr "Отправить" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Месторасположение сенсора:" @@ -10462,16 +10819,12 @@ msgstr "Порт сервера" msgid "Server rejected traversal attempt" msgstr "Сервер отверг попытку обхода" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Присвоить &значение" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Изменить СК" @@ -10487,23 +10840,23 @@ msgstr "Назначить файл карты памяти для слота A" msgid "Set memory card file for Slot B" msgstr "Назначить файл карты памяти для слота B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Назначить адрес &конца символа" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Назначить &размер символа" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Назначить адрес конца символа" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Назначить размер символа (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10513,17 +10866,17 @@ msgstr "" "игр.\n" "Может не работать для некоторых игр." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Устанавливает язык системы для Wii." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10535,20 +10888,20 @@ msgstr "" msgid "Settings" msgstr "Настройки" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: не удалось создать файл setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Критичность" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Компиляция шейдеров" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Встряска" @@ -10565,16 +10918,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Показать &лог" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Отображать панель &инструментов" @@ -10582,53 +10935,53 @@ msgstr "Отображать панель &инструментов" msgid "Show Active Title in Window Title" msgstr "Показывать название запущенной игры в заголовке окна" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Показать все" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Австралия" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Показывать текущую игру в Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL-файлы" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Показывать FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Показывать счётчик кадров" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Франция" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Германия" @@ -10640,23 +10993,23 @@ msgstr "Показывать оверлей режима гольфа" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Показывать ввод экрана" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Италия" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Корея" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Показывать счётчик лагов" @@ -10664,19 +11017,19 @@ msgstr "Показывать счётчик лагов" msgid "Show Language:" msgstr "Язык отображения:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Показать &настройки логирования" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Показывать сообщения в сетевой игре" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Показывать пинг в сетевой игре" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Голландия" @@ -10684,32 +11037,36 @@ msgstr "Голландия" msgid "Show On-Screen Display Messages" msgstr "Показывать наэкранные сообщения" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Показать СК" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Отображать игры платформ" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Отображать игры регионов" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Россия" @@ -10717,72 +11074,72 @@ msgstr "Россия" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Испания" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Показывать статистику" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Показывать системное время" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Тайвань" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Неизвестный" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD-файлы" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Мир" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Показать в &памяти" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Показать в коде" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10790,11 +11147,11 @@ msgstr "" msgid "Show in server browser" msgstr "Показывать в списке серверов" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -10803,42 +11160,42 @@ msgstr "" "рассинхроне в сетевой игре.

Если не уверены – " "оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -10857,7 +11214,13 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10869,34 +11232,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Горизонтальная стереопара" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Удерживать на боку" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Положить на бок" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Wii Remote на боку" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "База данных сигнатур" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10905,7 +11268,7 @@ msgid "Signed Integer" msgstr "Знаковое целое" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Упрощ. китайский" @@ -10922,7 +11285,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." @@ -10930,11 +11293,11 @@ msgstr "" "Размер буфера растяжения в миллисекундах. При низких значениях звук может " "потрескивать." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Пропустить" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Пропуск отрисовки" @@ -10975,24 +11338,24 @@ msgstr "" "включенным.
" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -11000,10 +11363,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11013,7 +11372,7 @@ msgstr "Ползунок" msgid "Slot A" msgstr "Слот A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Слот A:" @@ -11021,7 +11380,7 @@ msgstr "Слот A:" msgid "Slot B" msgstr "Слот B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Слот B:" @@ -11029,7 +11388,7 @@ msgstr "Слот B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Привязать положение стика к ближайшей восьмиугольной оси." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Таблица сокетов" @@ -11057,12 +11416,12 @@ msgstr "" "Некоторые введённые значения некорректны.\n" "Пожалуйста, проверьте подсвеченные значения." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Сортировать по алфавиту" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Звук:" @@ -11076,27 +11435,27 @@ msgstr "Испания" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Испанский" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Баланс звука" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Громкость динамика:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Особенность" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11117,15 +11476,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Конец стэка" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Начало стэка" @@ -11138,25 +11497,28 @@ msgstr "Стандартный контроллер" msgid "Start" msgstr "Старт" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Начать &сетевую игру..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Новый поиск читов" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "&Начать запись ввода" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Начать запись" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Запускать во весь экран" @@ -11172,10 +11534,10 @@ msgstr "" msgid "Started game" msgstr "Игра начата" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Состояние" @@ -11185,7 +11547,7 @@ msgstr "Рулевое колесо" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Шаг" @@ -11197,13 +11559,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Шаг с обходом" @@ -11219,7 +11581,7 @@ msgstr "Истекло время ожидания шага с выходом!" msgid "Step over in progress..." msgstr "Выполняется шаг с обходом..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Шаг выполнен успешно!" @@ -11228,7 +11590,7 @@ msgstr "Шаг выполнен успешно!" msgid "Stepping" msgstr "Шаги" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Стерео" @@ -11258,18 +11620,14 @@ msgstr "Стик" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Стоп" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Остановить проигр./запись ввода" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Игра остановлена" @@ -11312,7 +11670,7 @@ msgstr "" "текстуре)

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Растянуть по окну" @@ -11347,8 +11705,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Успешно" @@ -11375,7 +11733,7 @@ msgstr "Файлы сохранений (%n из %1 шт.) успешно экс msgid "Successfully exported save files" msgstr "Файлы сохранений успешно экспортированы" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Сертификаты успешно извлечены из NAND" @@ -11387,12 +11745,12 @@ msgstr "Файл успешно извлечён." msgid "Successfully extracted system data." msgstr "Системные данные успешно извлечены." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Файл сохранения успешно импортирован." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Данный продукт успешно установлен в NAND." @@ -11403,11 +11761,11 @@ msgstr "Данный продукт успешно удалён из NAND." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Поддержка" @@ -11415,16 +11773,16 @@ msgstr "Поддержка" msgid "Supported file formats" msgstr "Поддерживаемые форматы файлов" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Объёмный" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Приостановлен" @@ -11434,12 +11792,12 @@ msgstr "Поменять ракурсы местами" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -11454,7 +11812,7 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Взмах" @@ -11468,34 +11826,21 @@ msgid "Switch to B" msgstr "Переключиться на B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Символ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Адрес конца символа (%1):" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Имя символа:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Символы" @@ -11523,7 +11868,7 @@ msgstr "" "Синхронизировать потоки ГП и ЦП для исправления случайных зависаний в " "двухядерном режиме. (ВКЛ = Совместимость, ВЫКЛ = Скорость)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11542,24 +11887,24 @@ msgid "Synchronizing save data..." msgstr "Синхронизация сохранений..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Язык системы:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "Управление TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Метки" @@ -11569,7 +11914,7 @@ msgstr "Метки" msgid "Taiko Drum" msgstr "Барабан Тайко" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Хвост" @@ -11577,15 +11922,15 @@ msgstr "Хвост" msgid "Taiwan" msgstr "Тайвань" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Сделать скриншот" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11593,7 +11938,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11601,6 +11946,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11610,7 +11961,7 @@ msgstr "Кэширование текстур" msgid "Texture Cache Accuracy" msgstr "Точность кэширования текстур" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Дамп текстур" @@ -11622,7 +11973,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Наложение форматов текстур" @@ -11647,7 +11998,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "Хэш-таблица H3 для раздела {0} некорректна." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "IPL-файла нет в списке известных корректных дампов. (CRC32: {0:x})" @@ -11661,7 +12012,7 @@ msgstr "IPL-файла нет в списке известных коррект msgid "The Masterpiece partitions are missing." msgstr "Отсутствуют разделы Masterpiece." -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11669,7 +12020,7 @@ msgstr "" "Не получается исправить NAND. Рекомендуется создать резервную копию текущих " "данных и поставить NAND с нуля." -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND успешно исправлен." @@ -11680,11 +12031,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11720,6 +12071,13 @@ msgstr "Размер данных для раздела {0} не делится msgid "The decryption keys need to be appended to the NAND backup file." msgstr "Требуется добавить ключи дешифрования к файлу бэкапа NAND." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11739,7 +12097,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Ожидаемый диск не был найден." @@ -11759,17 +12117,17 @@ msgstr "Эмулируемой консоли Wii не требуется обн #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Введён неверный PID." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Введён неверный VID." @@ -11777,7 +12135,7 @@ msgstr "Введён неверный VID." msgid "The expression contains a syntax error." msgstr "В выражении содержится синтаксическая ошибка." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11797,7 +12155,7 @@ msgstr "" "Файл %1 уже существует.\n" "Вы хотите заменить его?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11815,7 +12173,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "Файл {0} уже открыт, нельзя записать заголовок." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11826,7 +12184,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Файловая система некорректна или не может быть прочитана." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11890,9 +12248,9 @@ msgstr "Хэши не совпадают!" msgid "The hashes match!" msgstr "Хэши совпадают!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11908,11 +12266,11 @@ msgstr "" msgid "The install partition is missing." msgstr "Отсутствует установочный раздел." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11926,8 +12284,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11957,12 +12315,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Полученный расшифрованный AR-код не содержит строк." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -12001,7 +12359,7 @@ msgstr "Указанный общий ключевой индекс: {0}, а д msgid "The specified file \"{0}\" does not exist" msgstr "Указанный файл \"{0}\" не существует" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12016,11 +12374,11 @@ msgstr "Выбранная карта памяти уже содержит фа msgid "The ticket is not correctly signed." msgstr "Билет некорректно подписан." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -12028,15 +12386,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "Не удалось прочитать тип раздела." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12062,7 +12420,7 @@ msgstr "Отсутствует раздел с обновлением." msgid "The update partition is not at its normal position." msgstr "Раздел с обновлением находится не на своей обычной позиции." -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12088,14 +12446,19 @@ msgstr "Раздел {0} некорректно выровнен." msgid "There are too many partitions in the first partition table." msgstr "В первой таблице разделов содержится слишком много разделов." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Нет действий для отмены!" @@ -12137,19 +12500,19 @@ msgstr "" "Этот корейский продукт настроен на использование IOS, которая обычно " "отсутствует на корейских консолях. Скорее всего это приведёт к ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Это USB-устройства уже в белом списке." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Этот WAD не является загрузочным." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Этот WAD не является корректным." @@ -12291,6 +12654,10 @@ msgstr "" msgid "This is a good dump." msgstr "Данный дамп — хороший." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Для данной сессии требуется пароль:" @@ -12307,13 +12674,13 @@ msgstr "" "\n" "Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" "Это ПО не должно использоваться для воспроизведения игр, которыми вы не " "владеете." -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Этот продукт нельзя загрузить." @@ -12326,7 +12693,7 @@ msgstr "Этот продукт настроен на использование msgid "This title is set to use an invalid common key." msgstr "Этот продукт настроен на использование некорректного общего ключа." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12338,7 +12705,7 @@ msgstr "" "\n" "DSPHLE: Неизвестный ucode (CRC = {0:08x}) - принудительное AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12364,6 +12731,13 @@ msgid "" msgstr "" "Данное значение умножается на глубину, указанную в графических настройках." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12384,11 +12758,11 @@ msgstr "" "Может предотвратить рассинхрон в некоторых играх, которые используют чтение " "EFB. Пожалуйста, убедитесь, что у всех одинаковый бэкенд видео." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Контекст потока" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Потоки" @@ -12396,12 +12770,12 @@ msgstr "Потоки" msgid "Threshold" msgstr "Порог" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "ТиБ" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Наклон" @@ -12416,10 +12790,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Название" @@ -12433,7 +12807,7 @@ msgstr "до" msgid "To:" msgstr "До:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Полноэкранный режим" @@ -12458,7 +12832,7 @@ msgid "Toggle Aspect Ratio" msgstr "Изменить соотношение сторон" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Точка останова" @@ -12510,15 +12884,19 @@ msgstr "Вкл./выкл. копии XFB" msgid "Toggle XFB Immediate Mode" msgstr "Вкл./выкл. немедленный режим XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Ошибка токенизации." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Панель инструментов" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "сверху" @@ -12526,9 +12904,8 @@ msgstr "сверху" msgid "Top-and-Bottom" msgstr "Вертикальная стереопара" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -12565,28 +12942,28 @@ msgstr "Общее проходимое расстояние." msgid "Touch" msgstr "Тач-панель" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Традиц. китайский" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12625,26 +13002,26 @@ msgid "Triggers" msgstr "Рычажки" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Тип" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "НЕИЗВЕСТНО" @@ -12656,7 +13033,7 @@ msgstr "США" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12668,13 +13045,13 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "Ошибка белого списка USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -12685,7 +13062,7 @@ msgstr "" "слабого оборудования.

Если не уверены – выберите " "этот режим." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -12698,7 +13075,7 @@ msgstr "" "вас не бывает подтормаживаний или же у вас слабый ГП — не пользуйтесь этим " "режимом.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12712,7 +13089,7 @@ msgstr "" "подтормаживания при компиляции шейдеров с минимальным влиянием на " "производительность, но конечный результат зависит от поведения драйвера ГП." -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Не удалось автоматически обнаружить модуль RSO" @@ -12724,11 +13101,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12756,7 +13133,7 @@ msgstr "" "\n" "Вы хотите игнорировать данную строку и продолжить чтение?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12779,15 +13156,15 @@ msgstr "Несжатые образы GC/Wii (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Отменить быструю загрузку" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Отменить быстрое сохранение" @@ -12807,11 +13184,11 @@ msgstr "" "Удаление WAD приведет к удалению текущей версии этого продукта из NAND без " "удаления его сохраненных данных. Продолжить?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "США" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12822,12 +13199,13 @@ msgstr "США" msgid "Unknown" msgstr "Неизвестно" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Неизвестная команда DVD {0:08x} - критическая ошибка" @@ -12855,11 +13233,11 @@ msgstr "" "Получено неизвестное сообщение SYNC_SAVE_DATA с id:{0} от игрока:{1} Игрок " "выкинут!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12867,7 +13245,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12875,7 +13253,7 @@ msgstr "" msgid "Unknown disc" msgstr "Неизвестный диск" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Произошла неизвестная ошибка." @@ -12895,16 +13273,18 @@ msgstr "Получено неизвестное сообщение с id : {0}" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "Получено неизвестное сообщение с id: {0} от игрока: {1} Игрок выкинут!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Без ограничения" @@ -12937,22 +13317,22 @@ msgid "Unpacking" msgstr "Распаковка" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -13016,23 +13396,23 @@ msgstr "" "Идёт обновление %1...\n" "Это может занять некоторое время." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Удерживать вертикально" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Поставить вертикально" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Wii Remote вертикально" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Настройки отправки статистики об использовании" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -13044,15 +13424,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Использовать встроенную базу названий игр" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Использовать кодек без потерь (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Режим PAL60 (EuRGB60)" @@ -13060,7 +13440,7 @@ msgstr "Режим PAL60 (EuRGB60)" msgid "Use Panic Handlers" msgstr "Использовать обработчики ошибок" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13080,43 +13460,18 @@ msgstr "" "Использовать один буфер глубины для обоих глаз. Необходимо для нескольких " "игр." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "На время сканирования использовать маппинг памяти" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Использовать физические адреса" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "По возможности использовать виртуальные адреса" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Пользовательская конфигурация" @@ -13152,7 +13507,7 @@ msgstr "" "зависимости от игры и/или ГП.

Если не уверены – " "оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13162,7 +13517,7 @@ msgstr "" "этого будет создано отдельное окно вывода.

Если не " "уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Используется Qt %1" @@ -13180,31 +13535,31 @@ msgstr "Используется Qt %1" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Обычно используется для объектов света" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Обычно используется для матриц нормалей" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Обычно используется для матриц позиций" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Обычно используется для матриц координат текстур" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Полезные" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Вертикальная синхронизация" @@ -13212,11 +13567,11 @@ msgstr "Вертикальная синхронизация" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Значение" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -13224,17 +13579,17 @@ msgstr "" msgid "Value:" msgstr "Значение:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -13250,16 +13605,16 @@ msgstr "Уровень анализа" msgid "Verify" msgstr "Проверка" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Проверить целостность" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Проверять сертификаты" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Выполняется проверка" @@ -13273,7 +13628,7 @@ msgid "Vertex Rounding" msgstr "Округление вершин" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Верт. угол обзора" @@ -13287,12 +13642,12 @@ msgid "Video" msgstr "Видео" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Показать &код" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Показать &память" @@ -13300,14 +13655,14 @@ msgstr "Показать &память" msgid "Virtual Notches" msgstr "Вирт. надсечки" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Вирт. адр. пространство" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Громкость" @@ -13327,34 +13682,34 @@ msgstr "Увеличить громкость" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD-файлы (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "Ошибка установки WAD: не удалось создать файлы с логами магазина Wii." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "Ошибка установки WAD: не удалось завершить импорт заголовка." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "Ошибка установки WAD: не удалось импортировать содержимое {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "Ошибка установки WAD: не удалось инициализировать импорт продукта (ошибка " "{0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "Ошибка установки WAD: выбранный файл не является корректным файлом WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "ОЖИДАНИЕ" @@ -13401,12 +13756,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA образы GC/Wii (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Ожидание первичного сканирования..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13423,7 +13778,7 @@ msgstr "" "может уменьшить частоту кадров.

В противном случае, " "если не уверены – оставьте выключенной." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13455,7 +13810,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Предупреждение" @@ -13557,7 +13912,7 @@ msgstr "Наблюдение" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -13574,7 +13929,7 @@ msgstr "Западная (Windows-1252)" msgid "Whammy" msgstr "Флойд" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13587,7 +13942,7 @@ msgstr "" "

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13600,7 +13955,7 @@ msgstr "" "

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Белый список пробрасываемых USB-устройств" @@ -13624,7 +13979,7 @@ msgstr "Меню Wii" msgid "Wii NAND Root:" msgstr "Корень NAND Wii:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -13632,7 +13987,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13650,7 +14005,7 @@ msgstr "Кнопки Wii Remote" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Настройки контроллера Wii" @@ -13670,7 +14025,7 @@ msgstr "Ввод Wii TAS %1 - Wii Remote" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Ввод Wii TAS %1 - Wii Remote + Нунчак" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii и Wii Remote" @@ -13678,11 +14033,11 @@ msgstr "Wii и Wii Remote" msgid "Wii data is not public yet" msgstr "Данные Wii ещё не опубликованы" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Файлы сохранений Wii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "MEGA-файл с сигнатурами WiiTools" @@ -13692,11 +14047,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Размер окна" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Перенос строк" @@ -13710,10 +14077,14 @@ msgstr "Мир" msgid "Write" msgstr "Запись" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Только для записи" @@ -13755,6 +14126,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13763,11 +14142,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF-регистр " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13802,14 +14181,14 @@ msgstr "Да" msgid "Yes to &All" msgstr "Да для &всех" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13927,7 +14306,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13945,15 +14324,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 code не поддерживается" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Zero code неизвестен Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] и [%3, %4]" @@ -13961,11 +14344,11 @@ msgstr "[%1, %2] и [%3, %4]" msgid "^ Xor" msgstr "^ Искл. или" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "любое значение" @@ -13984,21 +14367,21 @@ msgstr "см" msgid "d3d12.dll could not be loaded." msgstr "не удалось загрузить d3d12.dll." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "по умолчанию" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "не подключено" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-карточки (*.raw);;Все файлы (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "номер ошибки" @@ -14006,31 +14389,35 @@ msgstr "номер ошибки" msgid "fake-completion" msgstr "ложное дополнение" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "равно" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "больше, чем" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "больше или равно" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "меньше" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "меньше или равно" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "не равно" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "послед. значение" @@ -14040,7 +14427,7 @@ msgstr "послед. значение" msgid "m/s" msgstr "м/с" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14052,13 +14439,13 @@ msgstr "" msgid "none" msgstr "отсутствует" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "выкл." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "на" @@ -14075,16 +14462,20 @@ msgstr "с" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "это значение:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "Планшет uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -14099,11 +14490,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "{0} IPL найдено в папке {1}. Не удаётся опознать диск" @@ -14141,7 +14532,7 @@ msgstr "| Или" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14152,8 +14543,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/sr.po b/Languages/po/sr.po index ab9f5bfb0052..1267716314e6 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -59,8 +59,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -79,19 +79,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -112,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -151,6 +152,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -174,13 +180,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -196,12 +202,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +224,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -226,26 +232,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -283,20 +289,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -306,23 +312,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "" @@ -330,12 +336,12 @@ msgstr "" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "" @@ -343,27 +349,27 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -371,15 +377,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -387,19 +393,24 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -407,7 +418,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" @@ -424,9 +435,9 @@ msgstr "" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "" @@ -434,23 +445,23 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulacija" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -458,55 +469,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Fajl" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Graficke Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Pomoc" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Hotkey Opcije" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -514,19 +523,19 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -534,15 +543,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "Loaduj Savestate" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -552,23 +565,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -577,23 +590,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Pokreni" @@ -601,15 +614,15 @@ msgstr "&Pokreni" msgid "&Properties" msgstr "&Pribor/Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Registri" @@ -617,41 +630,45 @@ msgstr "&Registri" msgid "&Remove" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Stop" @@ -659,15 +676,19 @@ msgstr "&Stop" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Alat" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -677,17 +698,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "" @@ -699,11 +720,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -719,7 +740,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -727,7 +748,7 @@ msgstr "" msgid "(off)" msgstr "(iskljucen/o)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -747,15 +768,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -766,12 +787,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -783,7 +804,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -791,11 +812,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -807,17 +828,17 @@ msgstr "" msgid "16-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -829,11 +850,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -845,7 +866,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -857,25 +878,25 @@ msgstr "" msgid "32-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -889,11 +910,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -901,7 +922,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -917,7 +938,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -929,22 +950,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -952,11 +973,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -968,13 +989,13 @@ msgstr "" msgid "8-bit" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -990,7 +1011,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1002,11 +1023,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1036,12 +1057,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1051,7 +1072,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1061,11 +1082,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1081,6 +1102,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1102,7 +1127,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1111,8 +1136,8 @@ msgstr "" msgid "AR Codes" msgstr "AR Kodovi" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1126,7 +1151,7 @@ msgid "About Dolphin" msgstr "O Dolphin-u" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1145,7 +1170,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1231,19 +1256,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1251,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter" @@ -1261,7 +1286,7 @@ msgstr "Adapter" msgid "Add" msgstr "Dodaj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1290,51 +1315,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Dodaj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1395,12 +1417,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1415,15 +1437,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1433,16 +1455,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1456,11 +1478,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1468,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1477,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1486,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1499,7 +1521,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1511,15 +1533,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1547,7 +1569,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1585,15 +1607,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1611,7 +1633,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1643,12 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "" @@ -1656,7 +1682,7 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1664,7 +1690,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1681,7 +1707,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1689,11 +1715,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 "" @@ -1705,12 +1731,12 @@ msgstr "" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1718,11 +1744,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1734,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1742,32 +1764,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1775,38 +1797,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1822,13 +1848,13 @@ msgstr "" msgid "Backward" msgstr "U nazad" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1836,20 +1862,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Baner" @@ -1869,15 +1895,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Osnovno/ni/ne" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Osnovne opcije" @@ -1885,15 +1911,15 @@ msgstr "Osnovne opcije" msgid "Bass" msgstr "Bas" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1917,31 +1943,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1950,7 +1978,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1977,32 +2005,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Donji deo/dno" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2040,11 +2179,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2054,11 +2193,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2090,7 +2229,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2106,7 +2245,7 @@ msgstr "" msgid "Buttons" msgstr "Tasteri" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2116,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2132,7 +2271,7 @@ msgstr "" msgid "CPU Options" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2140,14 +2279,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2159,11 +2298,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2171,19 +2310,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2192,64 +2331,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2257,19 +2408,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2287,7 +2440,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2295,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Promeni &Disk..." @@ -2303,7 +2456,7 @@ msgstr "Promeni &Disk..." msgid "Change Disc" msgstr "Promeni Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2311,7 +2464,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2337,7 +2490,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2349,15 +2502,15 @@ msgstr "Chat/Caskanje" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Trazi Chit" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2365,7 +2518,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2383,27 +2536,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Biraj fajl da otvoris " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2430,15 +2583,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Ocisti" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2446,7 +2603,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2455,36 +2612,20 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2511,7 +2652,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2538,7 +2683,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2546,9 +2691,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2561,10 +2706,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2637,7 +2788,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Podesi" @@ -2670,13 +2821,13 @@ msgstr "" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2684,7 +2835,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2695,15 +2846,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "" @@ -2723,7 +2874,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "" @@ -2764,7 +2915,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "" @@ -2788,7 +2939,7 @@ msgstr "" msgid "Controller Settings" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "" @@ -2851,8 +3002,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2860,9 +3011,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2870,9 +3021,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2892,8 +3043,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2929,15 +3080,15 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2945,19 +3096,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2975,6 +3126,11 @@ msgstr "" msgid "Core" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2984,7 +3140,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3057,7 +3213,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3094,13 +3250,13 @@ msgstr "" msgid "Country:" msgstr "Zemlja:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3109,15 +3265,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3126,17 +3278,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3144,11 +3287,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Izseci" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3160,26 +3303,26 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3187,27 +3330,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3219,13 +3366,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3250,7 +3397,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 "" @@ -3258,15 +3405,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 "" @@ -3288,7 +3435,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3304,7 +3451,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3337,8 +3484,8 @@ msgstr "Mrtva Zona " msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "" @@ -3347,7 +3494,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3394,7 +3541,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 "" @@ -3406,11 +3553,11 @@ msgstr "" msgid "Default ISO:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3418,7 +3565,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3458,26 +3605,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3485,7 +3659,7 @@ msgstr "" msgid "Detect" msgstr "Detekuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3493,7 +3667,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3502,7 +3676,7 @@ msgid "Device" msgstr "Uredjaj " #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3511,11 +3685,11 @@ msgid "Device Settings" msgstr "Opcije Uredjaja " #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3523,11 +3697,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3539,12 +3709,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3556,7 +3726,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3564,11 +3734,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3576,11 +3746,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemoguci \"Fog\"" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3595,7 +3765,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3941,15 +4107,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3975,7 +4141,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3988,7 +4154,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4004,15 +4170,15 @@ msgstr "" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4022,7 +4188,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4030,11 +4196,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "" @@ -4042,11 +4208,11 @@ msgstr "" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4060,7 +4226,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4080,28 +4246,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4113,11 +4267,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "" @@ -4137,7 +4291,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "" @@ -4157,7 +4311,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4183,6 +4337,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4196,7 +4354,7 @@ msgstr "" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "" @@ -4209,11 +4367,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4225,15 +4383,15 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "" @@ -4303,7 +4461,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4334,7 +4492,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4342,7 +4500,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4359,7 +4517,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 "" @@ -4385,7 +4543,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4393,7 +4551,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4401,7 +4559,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4426,7 +4584,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "" @@ -4435,7 +4593,7 @@ msgstr "" msgid "Enhancements" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4457,11 +4615,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4470,8 +4634,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4482,45 +4646,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4530,16 +4700,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -4556,9 +4726,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4570,7 +4740,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4636,13 +4806,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4661,40 +4831,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4702,7 +4844,7 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4710,7 +4852,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4722,15 +4864,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4738,11 +4880,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "" @@ -4757,7 +4899,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "" @@ -4785,14 +4927,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "" @@ -4813,7 +4955,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4846,12 +4988,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "" @@ -4869,7 +5011,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4877,12 +5019,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4910,19 +5052,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4942,15 +5085,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4963,7 +5106,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4986,33 +5129,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5023,7 +5162,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5032,18 +5171,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5055,19 +5194,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5077,13 +5218,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5091,6 +5240,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5117,28 +5270,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5158,7 +5315,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5180,31 +5337,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5238,31 +5398,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5313,7 +5473,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5321,11 +5481,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5338,7 +5498,7 @@ msgstr "Brzo " msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5349,11 +5509,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5361,9 +5521,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5375,20 +5535,20 @@ msgstr "" msgid "File Info" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "" @@ -5396,7 +5556,7 @@ msgstr "" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "" @@ -5430,15 +5590,15 @@ msgstr "" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5450,7 +5610,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5466,31 +5626,32 @@ msgstr "" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5500,13 +5661,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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 "" @@ -5514,7 +5675,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 "" @@ -5546,11 +5707,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5587,17 +5748,17 @@ msgstr "" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5618,7 +5779,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5626,7 +5787,7 @@ msgstr "" msgid "Frame Range" msgstr "" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5650,7 +5811,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5681,7 +5842,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "" @@ -5705,7 +5866,7 @@ msgstr "" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "" @@ -5737,7 +5898,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5853,26 +6014,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5900,8 +6061,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "" @@ -5961,11 +6122,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5973,11 +6134,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5990,11 +6151,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6022,7 +6183,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6032,35 +6193,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Nemacki " @@ -6072,18 +6233,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6096,8 +6257,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafike" @@ -6136,7 +6297,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6145,7 +6306,7 @@ msgstr "" msgid "Guitar" msgstr "Gitara " -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6173,36 +6334,35 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6215,7 +6375,11 @@ msgstr "" msgid "Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6231,12 +6395,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6245,14 +6409,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6269,7 +6427,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6293,16 +6451,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "" @@ -6311,7 +6469,7 @@ msgstr "" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6325,16 +6483,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6369,7 +6527,7 @@ msgid "IR" msgstr "" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "" @@ -6402,11 +6560,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6452,11 +6610,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6480,7 +6642,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6489,7 +6651,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6504,15 +6666,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6523,15 +6685,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6540,27 +6693,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6605,15 +6758,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6633,8 +6787,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Informacija " @@ -6648,10 +6802,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "" @@ -6665,18 +6819,24 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 -msgid "Insert &nop" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 -msgid "Insert SD Card" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +msgid "Insert SD Card" msgstr "" #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 @@ -6692,7 +6852,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6700,11 +6860,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6713,7 +6875,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6722,7 +6884,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6739,19 +6901,19 @@ msgstr "" msgid "Interface" msgstr "" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6764,19 +6926,19 @@ msgstr "" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6791,7 +6953,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6799,11 +6961,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6815,7 +6977,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6824,11 +6986,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6857,7 +7019,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6869,19 +7031,19 @@ msgstr "" msgid "Invalid recording file" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6891,7 +7053,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italianski " @@ -6900,63 +7062,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6968,27 +7130,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanski " @@ -6999,13 +7165,13 @@ msgstr "Japanski " msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7019,7 +7185,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7040,7 +7206,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7048,12 +7214,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korejski " @@ -7064,7 +7230,7 @@ msgstr "Korejski " msgid "L" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7074,7 +7240,7 @@ msgstr "" msgid "L-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7082,35 +7248,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7177,13 +7345,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7197,7 +7365,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7205,11 +7373,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7220,29 +7388,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Ucitaj " -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7263,7 +7438,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7352,19 +7527,19 @@ msgstr "Ucitaj State Slot 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7376,16 +7551,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7393,18 +7568,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7424,7 +7599,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7436,7 +7611,7 @@ msgstr "" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7444,7 +7619,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7460,7 +7635,7 @@ msgstr "" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7475,16 +7650,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7492,7 +7667,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7502,7 +7677,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7510,37 +7685,37 @@ msgstr "" msgid "Main Stick" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7557,12 +7732,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7574,7 +7749,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7591,16 +7766,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7612,7 +7787,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7624,7 +7799,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7640,7 +7815,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7648,29 +7823,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7690,36 +7869,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7731,16 +7915,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "" @@ -7777,6 +7961,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7786,10 +7974,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7798,8 +7986,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7808,7 +7996,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7825,25 +8013,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7852,7 +8040,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7909,7 +8097,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7939,7 +8127,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7947,7 +8135,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7955,7 +8143,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7964,7 +8152,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7978,7 +8166,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -7992,7 +8180,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8006,7 +8194,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8014,16 +8202,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "" @@ -8039,15 +8227,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8056,7 +8244,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8068,10 +8256,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8083,11 +8267,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8096,18 +8280,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "" @@ -8167,7 +8351,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8202,10 +8386,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "" @@ -8219,7 +8451,7 @@ msgstr "" msgid "Off" msgstr "Izskljucen/o" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8231,14 +8463,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "" @@ -8246,13 +8493,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8260,7 +8507,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Otvori " @@ -8269,11 +8516,11 @@ msgstr "Otvori " msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8294,7 +8541,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8327,11 +8574,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Opcije " @@ -8344,13 +8591,36 @@ msgstr "" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "" @@ -8363,7 +8633,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8383,16 +8653,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8401,15 +8671,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8417,11 +8687,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8434,11 +8704,11 @@ msgstr "" msgid "Pads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8489,11 +8759,15 @@ msgstr "" msgid "Paths" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pauza " -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8532,7 +8806,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8540,33 +8814,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8582,12 +8856,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Pokreni " @@ -8599,7 +8873,7 @@ msgstr "" msgid "Play Recording" msgstr "Pokreni snimanje " -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8611,27 +8885,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8640,7 +8914,8 @@ msgstr "" msgid "Players" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8652,23 +8927,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8677,7 +8956,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8698,11 +8977,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8710,11 +8989,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8737,7 +9016,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8752,7 +9031,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8763,7 +9042,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8775,7 +9054,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8809,8 +9088,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8818,11 +9097,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8842,14 +9121,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Pitanje " @@ -8870,19 +9149,19 @@ msgstr "" msgid "R-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8895,11 +9174,11 @@ msgstr "" msgid "Range" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8911,7 +9190,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8923,14 +9206,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8951,10 +9234,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8968,7 +9256,7 @@ msgstr "" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9003,7 +9291,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9011,14 +9299,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9026,11 +9314,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9039,8 +9327,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9069,7 +9357,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "" @@ -9086,7 +9374,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9097,8 +9385,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9106,11 +9394,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9126,23 +9414,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Reset/Restart " -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9170,6 +9457,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9186,7 +9477,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9203,7 +9494,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9262,7 +9553,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9280,26 +9571,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9315,19 +9632,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9335,7 +9652,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9348,7 +9665,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9356,11 +9673,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9370,11 +9687,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "" @@ -9387,7 +9704,6 @@ msgstr "Siguran " #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9397,9 +9713,17 @@ msgstr "Snimaj" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9408,24 +9732,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9437,13 +9761,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" @@ -9487,23 +9811,23 @@ msgstr "Snimaj State Slot 8" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9511,7 +9835,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9523,26 +9847,26 @@ msgstr "" msgid "Save as..." msgstr "Snimaj kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9550,7 +9874,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9562,7 +9886,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9574,26 +9898,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9601,17 +9925,17 @@ msgstr "" msgid "Search Subfolders" msgstr "Trazi Subfoldere " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9619,11 +9943,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9643,7 +9967,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9651,28 +9975,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9692,15 +10024,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9708,7 +10040,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "" @@ -9767,15 +10099,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9783,11 +10115,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9795,19 +10127,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9815,12 +10147,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Izaberi \"snimani fajl/the save state\"" @@ -9836,7 +10168,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "" @@ -9848,26 +10180,45 @@ msgstr "" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9879,18 +10230,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9904,7 +10266,7 @@ msgstr "" msgid "Send" msgstr "Isprati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "" @@ -9928,16 +10290,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9953,40 +10311,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -9998,20 +10356,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "" @@ -10028,16 +10386,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "" @@ -10045,53 +10403,53 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10103,23 +10461,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10127,19 +10485,19 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10147,32 +10505,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10180,72 +10542,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10253,65 +10615,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10321,34 +10689,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10357,7 +10725,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "" @@ -10374,17 +10742,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10419,24 +10787,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10444,10 +10812,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10457,7 +10821,7 @@ msgstr "" msgid "Slot A" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10465,7 +10829,7 @@ msgstr "" msgid "Slot B" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10473,7 +10837,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10497,12 +10861,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10516,27 +10880,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10557,15 +10921,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10578,25 +10942,28 @@ msgstr "" msgid "Start" msgstr "Pokreni " -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Pokreni Snimanje" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10612,10 +10979,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10625,7 +10992,7 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10637,13 +11004,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10659,7 +11026,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10668,7 +11035,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10698,18 +11065,14 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr " Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10742,7 +11105,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "" @@ -10777,8 +11140,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10805,7 +11168,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10817,12 +11180,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10833,11 +11196,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10845,16 +11208,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10864,12 +11227,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10880,7 +11243,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "" @@ -10894,34 +11257,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10947,7 +11297,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10966,24 +11316,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -10993,7 +11343,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11001,15 +11351,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11017,7 +11367,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11025,6 +11375,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11034,7 +11390,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11046,7 +11402,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11069,7 +11425,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11083,13 +11439,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11100,11 +11456,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11137,6 +11493,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11154,7 +11517,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11174,17 +11537,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11192,7 +11555,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11206,7 +11569,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11222,7 +11585,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11233,7 +11596,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11290,9 +11653,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11306,11 +11669,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11324,8 +11687,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11352,12 +11715,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11391,7 +11754,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11406,11 +11769,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11418,15 +11781,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11449,7 +11812,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11475,14 +11838,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11516,19 +11884,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11643,6 +12011,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11655,11 +12027,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11672,7 +12044,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11680,7 +12052,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11699,6 +12071,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11713,11 +12092,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11725,12 +12104,12 @@ msgstr "" msgid "Threshold" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "" @@ -11744,10 +12123,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "" @@ -11761,7 +12140,7 @@ msgstr "" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11786,7 +12165,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11838,15 +12217,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "" @@ -11854,9 +12237,8 @@ msgstr "" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11893,28 +12275,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11951,26 +12333,26 @@ msgid "Triggers" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11982,7 +12364,7 @@ msgstr "" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -11994,20 +12376,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12015,7 +12397,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12024,7 +12406,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12036,11 +12418,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12060,7 +12442,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12083,15 +12465,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "" @@ -12109,11 +12491,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12124,12 +12506,13 @@ msgstr "" msgid "Unknown" msgstr "Nepoznat/o" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12153,11 +12536,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12165,7 +12548,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12173,7 +12556,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12193,16 +12576,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "" @@ -12235,22 +12620,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12312,23 +12697,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12340,15 +12725,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12356,7 +12741,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12374,43 +12759,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12442,21 +12802,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12464,31 +12824,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "" @@ -12496,11 +12856,11 @@ msgstr "" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12508,17 +12868,17 @@ msgstr "" msgid "Value:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12534,16 +12894,16 @@ msgstr "" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12557,7 +12917,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12571,12 +12931,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12584,14 +12944,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Jacina zvuka " @@ -12611,31 +12971,31 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12674,12 +13034,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12690,7 +13050,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12712,7 +13072,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Upozorenje " @@ -12784,7 +13144,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12801,7 +13161,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12809,7 +13169,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12817,7 +13177,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12841,7 +13201,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12849,7 +13209,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12867,7 +13227,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12887,7 +13247,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12895,11 +13255,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12909,11 +13269,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "" @@ -12927,10 +13299,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12972,6 +13348,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12980,11 +13364,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13019,14 +13403,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13123,7 +13507,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13141,15 +13525,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13157,11 +13545,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13180,21 +13568,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13202,31 +13590,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13236,7 +13628,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13246,13 +13638,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13269,16 +13661,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13293,11 +13689,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13332,7 +13728,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13341,8 +13737,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/sv.po b/Languages/po/sv.po index 94ce2e5a6db7..2be0f630a2dc 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -73,8 +73,8 @@ msgstr "$ Användarvariabel" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -95,19 +95,20 @@ 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 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -128,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (inbyggd)" @@ -170,6 +171,11 @@ msgstr "%1 MB (MEM1)" 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 stöder inte den här funktionen på ditt system." @@ -196,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:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -204,7 +210,7 @@ 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 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" @@ -220,12 +226,12 @@ msgstr "%1 golfar nu" msgid "%1 is playing %2" msgstr "%1 spelar %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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" @@ -242,7 +248,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%" @@ -250,26 +256,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "%1:s värde används" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -307,20 +313,20 @@ msgstr "%1x ursprunglig (%2x%3) för %4" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n adress(er) gick inte att komma åt i det emulerade minnet." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n adress(er) kvar." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -330,23 +336,23 @@ msgstr "%n adress(er) togs bort." msgid "& And" msgstr "& Och" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Om" @@ -354,12 +360,12 @@ msgstr "&Om" msgid "&Add Memory Breakpoint" msgstr "&Lägg till minnesbrytpunkt" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Lägg till ny kod…" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Lägg till funktion" @@ -367,27 +373,27 @@ msgstr "&Lägg till funktion" msgid "&Add..." msgstr "&Lägg till..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Ljudinställningar" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Uppdatera automatiskt:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Kantlöst fönster" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Brytpunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Bugghanterare" @@ -395,15 +401,15 @@ msgstr "&Bugghanterare" msgid "&Cancel" msgstr "&Avbryt" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Leta efter uppdateringar..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Rensa symboler" @@ -411,19 +417,24 @@ msgstr "&Rensa symboler" msgid "&Clone..." msgstr "&Klona..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Kod" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "&Inkopplad" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Kontrollinställningar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Kopiera adress" @@ -431,7 +442,7 @@ msgstr "&Kopiera adress" msgid "&Create..." msgstr "&Skapa..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Radera" @@ -448,9 +459,9 @@ msgstr "&Ta bort bevakning" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Redigera kod…" @@ -458,23 +469,23 @@ msgstr "&Redigera kod…" msgid "&Edit..." msgstr "&Redigera..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "&Mata ut skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emulering" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "&Exportera" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "&Exportera sparfil..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "&Exportera snabbsparning..." @@ -482,55 +493,53 @@ msgstr "&Exportera snabbsparning..." msgid "&Export as .gci..." msgstr "&Exportera som .gci..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Arkiv" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Teckensnitt…" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "Gå fram en &bildruta" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "&Fri vy-inställningar" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Generera symboler från" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "Källkoden på &GitHub" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "&Gå till början av funktionen" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "G&rafikinställningar" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Hjälp" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Kortkommandoinställningar" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "&Importera" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&Importera sparfil..." -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "&Importera snabbsparning..." @@ -538,19 +547,19 @@ msgstr "&Importera snabbsparning..." msgid "&Import..." msgstr "&Importera..." -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "&Infinitybas" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&Infoga blr" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "Tidsut&jämning" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -558,15 +567,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "L&äs in snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Ladda symbol-map" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "&Ladda fil till nuvarande adress" @@ -576,23 +589,23 @@ msgstr "&Ladda fil till nuvarande adress" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Lås fast gränssnittselement" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Inspelning" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "&Tyst" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Nätverk" @@ -601,23 +614,23 @@ msgid "&No" msgstr "&Nej" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Öppna..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "A<ernativ" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&Patcha HLE-funktioner" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Spela" @@ -625,15 +638,15 @@ msgstr "&Spela" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "S&krivskyddat läge" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "&Uppdatera lista" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Register" @@ -641,41 +654,45 @@ msgstr "&Register" msgid "&Remove" msgstr "&Ta bort" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Ta bort kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Byt namn på symbol" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Återställ" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Resurspaketshanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Spara symbol-map" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "&Skanna e-Readerkort..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "&Skylandersportal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Hastighetsbegränsning:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "S&toppa" @@ -683,15 +700,19 @@ msgstr "S&toppa" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "&Trådar" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Verktyg" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "Ladda &ur ROM" @@ -701,17 +722,17 @@ msgstr "Ladda &ur ROM" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&Bevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Webbplats" @@ -723,11 +744,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "'%1' hittades inte, inga symbolnamn genererade" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' hittades inte, skannar efter vanliga funktioner istället" @@ -743,7 +764,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(värd)" @@ -751,7 +772,7 @@ msgstr "(värd)" msgid "(off)" msgstr "(av)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -771,15 +792,15 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Subtrahera" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--Okänd--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -790,12 +811,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ Dividera" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -807,7 +828,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 block)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -815,11 +836,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 byte" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -831,17 +852,17 @@ msgstr "16 Mbit (251 block)" msgid "16-bit" msgstr "16 bitar" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16-bitars signerat heltal" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16-bitars osignerat heltal" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -853,11 +874,11 @@ msgstr "16x anisotropisk" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -869,7 +890,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x anisotropisk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -881,25 +902,25 @@ msgstr "32 Mbit (507 block)" msgid "32-bit" msgstr "32 bitar" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32-bitars flyttal" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32-bitars signerat heltal" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -913,11 +934,11 @@ msgstr "3D-djup" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 byte" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -925,7 +946,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 block)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -941,7 +962,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x anisotropisk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -953,22 +974,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 block)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64-bitars flyttal" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64-bitars signerat heltal" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64-bitars osignerat heltal" @@ -976,11 +997,11 @@ msgstr "64-bitars osignerat heltal" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 byte" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -992,13 +1013,13 @@ msgstr "8 Mbit (123 block)" msgid "8-bit" msgstr "8 bitar" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8-bitars signerat heltal" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8-bitars osignerat heltal" @@ -1014,7 +1035,7 @@ msgstr "8x anisotropisk" msgid "< Less-than" msgstr "< Mindre än" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1026,13 +1047,13 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: 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." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1069,12 +1090,12 @@ msgstr "" msgid "> Greater-than" msgstr "> Större än" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "En nätspelssession pågår redan!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1091,7 +1112,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:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "En skiva håller redan på att sättas in." @@ -1103,11 +1124,11 @@ msgstr "" "En grupp funktioner som gör färgerna mer autentiska genom att matcha " "färgrymden Wii- och GC-spel designades för." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1128,6 +1149,10 @@ 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 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1162,7 +1187,7 @@ msgstr "" "nödvändigtvis korrekt.\n" "Använd det på egen risk.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kod" @@ -1171,8 +1196,8 @@ msgstr "AR-kod" msgid "AR Codes" msgstr "AR-koder" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1186,7 +1211,7 @@ msgid "About Dolphin" msgstr "Om Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "Accelerometer" @@ -1205,7 +1230,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "Prestationer" @@ -1307,19 +1332,19 @@ msgstr "Aktivera nätspelschatt" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "Aktiva Infinityfigurer:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "Aktiv trådkö" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "Aktiva trådar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adapter" @@ -1327,7 +1352,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter upptäcktes" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1337,7 +1362,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Lägg till" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "Lägg till &brytpunkt" @@ -1366,51 +1391,48 @@ msgstr "Lägg till en minnesbrytpunkt" msgid "Add memory &breakpoint" msgstr "Lägg till minnes&brytpunkt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "Lägg till &bevakning" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Lägg till..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adress" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "Adressutrymme" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "Adressutrymme enligt CPU:ns tillstånd" @@ -1490,12 +1512,12 @@ msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Avancerat" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "Avancerade inställningar" @@ -1510,15 +1532,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1528,16 +1550,16 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "Luft" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "Justerat till datatypens längd" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "Alla" @@ -1551,11 +1573,11 @@ msgid "All Double" msgstr "Alla double" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1563,7 +1585,7 @@ msgid "All Files" msgstr "Alla filer" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Alla filer (*)" @@ -1572,7 +1594,7 @@ msgstr "Alla filer (*)" msgid "All Float" msgstr "Alla float" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alla GC/Wii-filer" @@ -1581,8 +1603,8 @@ msgstr "Alla GC/Wii-filer" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alla snabbsparningar (*.sav *.s##);; Alla filer (*)" @@ -1594,7 +1616,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "Alla filer (*)" @@ -1606,15 +1628,15 @@ msgstr "Alla spelares koder har synkroniserats." msgid "All players' saves synchronized." msgstr "Alla spelares sparfiler har synkroniserats." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Tillåt regionsinställningar som inte matchar" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Tillåt rapportering av användningsstatistik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Tillåt ändringar på SD-kort" @@ -1644,7 +1666,7 @@ msgstr "Alltid" msgid "Always Connected" msgstr "Alltid ansluten" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "&Alltid längst upp" @@ -1682,15 +1704,15 @@ msgstr "Kantutjämning:" msgid "Any Region" msgstr "Valfri region" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "Lägg till signatur i" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "Lägg till i &existerande signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "Appli&cera signaturfil..." @@ -1710,7 +1732,7 @@ msgstr "Apploader-datum:" msgid "Apply" msgstr "Verkställ" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "Applicera signaturfil" @@ -1742,12 +1764,16 @@ msgstr "Är du säker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Bildförhållande:" @@ -1755,7 +1781,7 @@ msgstr "Bildförhållande:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1763,7 +1789,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1780,7 +1806,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "Åtminstone två av de markerade sparfilerna har samma interna filnamn." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "Anslut MotionPlus" @@ -1788,11 +1814,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" @@ -1804,12 +1830,12 @@ msgstr "Australien" msgid "Author" msgstr "Skapare" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Författare" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1817,11 +1843,7 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (multipel av 640x528)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "Autospara" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Automatiska uppdateringar" @@ -1838,7 +1860,7 @@ msgstr "" "\n" "Välj en specifik intern upplösning." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Autojustera fönsterstorlek" @@ -1846,15 +1868,15 @@ msgstr "Autojustera fönsterstorlek" msgid "Auto-Hide" msgstr "Dölj automatiskt" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "Upptäck RSO-moduler automatiskt?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Synkronisera med mapp automatiskt" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1863,18 +1885,18 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Uppdatera nuvarande värden automatiskt" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "ARAM" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1882,7 +1904,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT är inkorrekt. Dolphin kommer nu avslutas" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1892,31 +1914,35 @@ msgstr "" "MAC-adress måste användas. Generera en ny MAC-adress som börjar med 00:09:bf " "eller 00:17:ab." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP-register" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "Bakåtkedja" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1932,13 +1958,13 @@ msgstr "Bakgrundsindata" msgid "Backward" msgstr "Tillbaka" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "Dåligt värde gavs" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Ogiltig adress angiven." @@ -1946,20 +1972,20 @@ msgstr "Ogiltig adress angiven." msgid "Bad dump" msgstr "Inkorrekt kopia" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "Dålig förskjutning angavs." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "Ogiltigt värde angivet." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Banner" @@ -1979,15 +2005,15 @@ msgstr "Svajarm" msgid "Base Address" msgstr "Basadress" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "Basprioritet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Grundläggande" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Grundläggande inställningar" @@ -1995,15 +2021,15 @@ msgstr "Grundläggande inställningar" msgid "Bass" msgstr "Bas" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "Batchläget kan inte användas utan att ange ett spel att starta." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batteri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "Beta (en gång i månaden)" @@ -2027,33 +2053,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "Binär SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "Binär SSL (läs)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "Binär SSL (skriv)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bithastighet (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"Misslyckades att skapa en blank figur i \"%1\".\n" -"Prova igen med en annan karaktär." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "Blockstorlek" @@ -2062,7 +2088,7 @@ msgstr "Blockstorlek" msgid "Block Size:" msgstr "Blockstorlek:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "Blockning" @@ -2091,32 +2117,143 @@ 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:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "Pausa vid start" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-kopia (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii-nyckelfil (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Kantlös helskärm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Under" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Gren: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "Grenar" @@ -2154,11 +2291,11 @@ msgstr "Bredbandsadapter (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "Bredbandsadapter (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "DNS-inställning för bredbandsadapter" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "Fel i bredbandsadapter" @@ -2168,11 +2305,11 @@ msgstr "Fel i bredbandsadapter" msgid "Broadband Adapter MAC Address" msgstr "Bredbandsadapterns MAC-adress" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 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:" @@ -2207,7 +2344,7 @@ msgstr "Knapp" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2223,7 +2360,7 @@ msgstr "Knapp" msgid "Buttons" msgstr "Knappar" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "Av: %1" @@ -2233,11 +2370,11 @@ msgstr "Av: %1" msgid "C Stick" msgstr "C-spak" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "S&kapa signaturfil..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP-register" @@ -2249,7 +2386,7 @@ msgstr "CPU-emuleringsmotor:" msgid "CPU Options" msgstr "Processoralternativ" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2257,7 +2394,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Interpreterare med cache (långsammare)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2268,7 +2405,7 @@ msgstr "" "prestandan.

Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "Beräkna" @@ -2285,11 +2422,11 @@ msgstr "" "grafiska problem.

Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "Kalibrera" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "Kalibrering" @@ -2297,19 +2434,19 @@ msgstr "Kalibrering" msgid "Calibration Period" msgstr "Kalibreringstid" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "Anropa visningslista på adress %1 med storlek %2" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "Anropare" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "Anrop" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "Anropsstack" @@ -2318,70 +2455,82 @@ msgid "Camera 1" msgstr "Kamera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Kamerans synfält (påverkar pekarens känslighet)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "Kan inte modifieras än!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "Det går inte att redigera skurkar för den här trofén!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 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:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "Avbryt kalibrering" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" "Det går inte att stega igenom FIFO-loggar. Gå fram en bildruta i taget " "istället." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" "Denna WAD kan inte startas för att det inte gick att installera den till " "NAND-minnet." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 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:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "Kan inte hitta GC-IPL-filen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "Det går inte att generera en AR-kod för den här adressen." @@ -2389,19 +2538,21 @@ 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:535 +#: 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." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 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:632 +#: Source/Core/Core/Boot/Boot.cpp:627 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." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "Fångad skurk %1:" @@ -2419,7 +2570,7 @@ msgstr "Center" msgid "Center Mouse" msgstr "Centrera mus" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "Centrera och kalibrera" @@ -2427,7 +2578,7 @@ msgstr "Centrera och kalibrera" msgid "Change &Disc" msgstr "Byt &skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "Byt s&kiva..." @@ -2435,7 +2586,7 @@ msgstr "Byt s&kiva..." msgid "Change Disc" msgstr "Byt skiva" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Byt skivor automatiskt" @@ -2443,7 +2594,7 @@ msgstr "Byt skivor automatiskt" msgid "Change the disc to {0}" msgstr "Byt skiva till {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2480,7 +2631,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:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "Den angivna karaktären är ogiltig!" @@ -2492,15 +2643,15 @@ msgstr "Chatt" msgid "Cheat Code Editor" msgstr "Fuskkodsredigerare" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Sök efter fusk" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "Kontrollera NAND-minne..." @@ -2508,7 +2659,7 @@ msgstr "Kontrollera NAND-minne..." msgid "Check for Game List Changes in the Background" msgstr "Leta efter ändringar i spellistan i bakgrunden" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Leta efter uppdateringar" @@ -2528,27 +2679,27 @@ msgstr "Kontrollsumma" msgid "China" msgstr "Kina" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "Välj" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Välj en fil att öppna" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: 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:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "Välj primär indatafil" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "Välj sekundär indatafil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "Välj GCI-basmapp" @@ -2575,15 +2726,19 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Rensa" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Rensa cache" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "Rensa plats" @@ -2591,7 +2746,7 @@ msgstr "Rensa plats" msgid "Clock Override" msgstr "Hastighetsåsidosättning" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "Klona och &redigera kod…" @@ -2600,37 +2755,21 @@ msgstr "Klona och &redigera kod…" msgid "Close" msgstr "Stäng" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ko&nfiguration" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "Koddiff-verktyg" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "Hjälp för koddiff-verktyg" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "Kod kördes inte" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "Kod kördes" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2656,7 +2795,11 @@ msgstr "Färgkorrigering:" msgid "Color Space" msgstr "Färgrymd" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "Kombinera &två signaturfiler..." @@ -2683,7 +2826,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Kompilera shaders före start" @@ -2691,9 +2834,9 @@ msgstr "Kompilera shaders före start" msgid "Compiling Shaders" msgstr "Kompilerar shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "Komprimering" @@ -2706,10 +2849,16 @@ msgstr "Komprimeringsnivå:" msgid "Compression:" msgstr "Komprimering:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2782,7 +2931,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Konfig." @@ -2815,13 +2964,13 @@ msgstr "Konfigurera utmatning" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekräfta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Bekräfta byte av backend" @@ -2829,7 +2978,7 @@ msgstr "Bekräfta byte av backend" msgid "Confirm on Stop" msgstr "Bekräfta vid stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2840,15 +2989,15 @@ msgstr "Bekräftelse" msgid "Connect" msgstr "Anslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Anslut balansbräda" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Anslut USB-tangentbord" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "Anslut Wii-fjärrkontroll %1" @@ -2868,7 +3017,7 @@ msgstr "Anslut Wii-fjärrkontroll 3" msgid "Connect Wii Remote 4" msgstr "Anslut Wii-fjärrkontroll 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Anslut Wii-fjärrkontroller" @@ -2909,7 +3058,7 @@ msgstr "Kontrollera nätspelsgolfläge" msgid "Control Stick" msgstr "Kontrollspak" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "Kontrollprofil" @@ -2933,7 +3082,7 @@ msgstr "Kontrollprofil 4" msgid "Controller Settings" msgstr "Kontrollinställningar" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Kontroller" @@ -3014,8 +3163,8 @@ msgstr "Konvergens" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Konvertering misslyckades." @@ -3023,9 +3172,9 @@ msgstr "Konvertering misslyckades." msgid "Convert" msgstr "Konvertera" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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" @@ -3033,9 +3182,9 @@ msgstr "Konvertera fil till mapp nu" msgid "Convert File..." msgstr "Konvertera fil..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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" @@ -3058,8 +3207,8 @@ msgstr "" "fortsätta ändå?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konverterar..." @@ -3106,15 +3255,15 @@ msgstr "" msgid "Copy" msgstr "Kopiera" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopiera &funktion" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Kopiera &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "Kopiera adress" @@ -3122,19 +3271,19 @@ msgstr "Kopiera adress" msgid "Copy Failed" msgstr "Kopiering misslyckades" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "Kopiera hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "Kopiera värde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "Kopiera kod&rad" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -3152,6 +3301,11 @@ msgstr "Kopiera till B" msgid "Core" msgstr "Kärna" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "Korrigera färgrymd" @@ -3161,7 +3315,7 @@ msgid "Correct SDR Gamma" msgstr "Korrigera SDR-gamma" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Kostnad" @@ -3256,7 +3410,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "Kunde inte känna igen filen {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "Det gick inte att spara ändringarna!" @@ -3301,13 +3455,13 @@ msgstr "Kunde inte läsa in filen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Skapa" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "Skapa Infinityfil" @@ -3316,15 +3470,11 @@ msgstr "Skapa Infinityfil" msgid "Create New Memory Card" msgstr "Skapa nytt minneskort" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "Skapa Skylanderfil" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "Skapa Skylandermapp" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "Skapa mappningar för andra enheter" @@ -3333,23 +3483,8 @@ msgstr "Skapa mappningar för andra enheter" msgid "Create..." msgstr "Skapa..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"Skapar bildrutedumpar och skärmdumpar med renderarens interna upplösning " -"istället för storleken på fönstret som den visas i.

Om " -"bildförhållandet är bredbild kommer de utmatade bilderna att skalas " -"horisontellt för att bevara den vertikala upplösningen." -"

Om du är osäker kan du lämna detta omarkerat." - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "Skapare:" @@ -3357,11 +3492,11 @@ msgstr "Skapare:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Beskär" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3373,26 +3508,26 @@ msgstr "" msgid "Crossfade" msgstr "Överbländning" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Nuvarande region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "Nuvarande värde" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "Aktuell kontext" @@ -3400,27 +3535,31 @@ msgstr "Aktuell kontext" msgid "Current game" msgstr "Nuvarande spel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "Aktuell tråd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Anpassat adressutrymme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3432,13 +3571,13 @@ msgstr "Alternativ för egen realtidsklocka" msgid "Custom:" msgstr "Anpassad:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "Anpassa" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3463,7 +3602,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" @@ -3471,15 +3610,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)" @@ -3505,7 +3644,7 @@ msgstr "Dansmatta" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "Mörker" @@ -3521,7 +3660,7 @@ msgstr "Datapartition (%1)" msgid "Data Transfer" msgstr "Dataöverföring" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Datatyp" @@ -3554,8 +3693,8 @@ msgstr "Död zon" msgid "Debug" msgstr "Felsökning" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Felsökning" @@ -3564,7 +3703,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:" @@ -3611,7 +3750,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" @@ -3623,11 +3762,11 @@ msgstr "Standardteckensnitt" msgid "Default ISO:" msgstr "Standard-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "Förvald tråd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Fördröj EFB-cacheinvalidering" @@ -3635,7 +3774,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:384 +#: 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 " @@ -3681,26 +3820,53 @@ msgstr "Djupandel:" msgid "Depth:" msgstr "Djup:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivning" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Beskrivning:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "Beskrivning: %1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "Frikopplad" @@ -3708,7 +3874,7 @@ msgstr "Frikopplad" msgid "Detect" msgstr "Sök" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "Upptäcker RSO-moduler" @@ -3716,7 +3882,7 @@ msgstr "Upptäcker RSO-moduler" msgid "Deterministic dual core:" msgstr "Deterministiska dubbla kärnor:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "Utveckling (flera gånger om dagen)" @@ -3725,7 +3891,7 @@ msgid "Device" msgstr "Enhet" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Enhetens PID (t.ex. 0305)" @@ -3734,11 +3900,11 @@ msgid "Device Settings" msgstr "Enhetsinställningar" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" @@ -3746,11 +3912,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/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "Diff" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3762,12 +3924,12 @@ msgstr "Direkt anslutning" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "&Frånkopplad" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "Avaktivera" @@ -3779,7 +3941,7 @@ msgstr "Inaktivera Bounding Box" msgid "Disable Copy Filter" msgstr "Inaktivera kopieringsfilter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Inaktivera EFB-VRAM-kopior" @@ -3787,11 +3949,11 @@ msgstr "Inaktivera EFB-VRAM-kopior" msgid "Disable Emulation Speed Limit" msgstr "Inaktivera emuleringshastighetsgräns" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "Inaktivera fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "Inaktivera fastmemarena" @@ -3799,11 +3961,11 @@ msgstr "Inaktivera fastmemarena" msgid "Disable Fog" msgstr "Inaktivera dimma" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "Inaktivera JIT-cache" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3822,7 +3984,7 @@ msgstr "" "inte fungera rätt.

Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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.
Om du är osäker kan du " "lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4185,7 +4343,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4204,15 +4362,15 @@ 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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nederländska" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "A&vsluta" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "EFB-kopia %1" @@ -4246,7 +4404,7 @@ msgstr "Tidiga minnesuppdateringar" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "Jord" @@ -4259,7 +4417,7 @@ msgstr "Östasien" msgid "Edit Breakpoint" msgstr "Redigera brytpunkt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "Redigera..." @@ -4275,15 +4433,15 @@ msgstr "Effekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "Effektivt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "Faktisk prioritet" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4293,7 +4451,7 @@ msgstr "Mata ut skiva" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "Element" @@ -4301,11 +4459,11 @@ msgstr "Element" msgid "Embedded Frame Buffer (EFB)" msgstr "Inbäddad bildrutebuffert (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emuleringstråd körs redan" @@ -4313,11 +4471,11 @@ msgstr "Emuleringstråd körs redan" msgid "Emulate Disc Speed" msgstr "Emulera skivhastighet" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "Emulera Infinitybas" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "Emulera Skylanderportal" @@ -4331,7 +4489,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "Emulerade USB-enheter" @@ -4354,28 +4512,16 @@ msgstr "" msgid "Emulation Speed" msgstr "Emuleringshastighet" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "Emulering måste ha startats för att spela in." - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Aktivera API-valideringslager" @@ -4387,11 +4533,11 @@ msgstr "" msgid "Enable Achievements" msgstr "Aktivera prestationer" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Aktivera ljudsträckning" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "Aktivera fusk" @@ -4411,7 +4557,7 @@ msgstr "Aktivera felsökningsgränssnitt" msgid "Enable Dual Core" msgstr "Aktivera dubbla kärnor" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "Aktivera dubbla kärnor (höjer prestandan)" @@ -4431,7 +4577,7 @@ msgstr "Aktivera reprisprestationer" msgid "Enable FPRF" msgstr "Aktivera FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Aktivera grafikmoddar" @@ -4457,6 +4603,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4470,7 +4620,7 @@ msgstr "Aktivera MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Aktivera Progressive scan" @@ -4483,11 +4633,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Aktivera skärmsläckare" @@ -4499,15 +4649,15 @@ msgstr "Aktivera högtalardata" msgid "Enable Unofficial Achievements" msgstr "Aktivera inofficiella prestationer" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "Aktivera statistikrapportering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Aktivera WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Aktivera Wireframe" @@ -4583,7 +4733,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4618,7 +4768,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4631,7 +4781,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 +4808,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." @@ -4686,7 +4836,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4698,7 +4848,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:302 +#: 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 " @@ -4711,7 +4861,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4742,7 +4892,7 @@ msgstr "Enet initialiserades inte" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engelska" @@ -4751,7 +4901,7 @@ msgstr "Engelska" msgid "Enhancements" msgstr "Förbättringar" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "Ange IP-adress för enheten som kör XLink Kai-klienten:" @@ -4773,11 +4923,17 @@ msgstr "Ange ny MAC-adress för bredbandsadaptern:" msgid "Enter password" msgstr "Ange lösenord" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "Ange DNS-server:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "Ange RSO-moduladressen:" @@ -4786,8 +4942,8 @@ msgstr "Ange RSO-moduladressen:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4798,45 +4954,51 @@ msgstr "Ange RSO-moduladressen:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4846,16 +5008,16 @@ msgstr "Ange RSO-moduladressen:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Fel" @@ -4872,9 +5034,9 @@ 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:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "Misslyckades att konvertera värde" @@ -4888,7 +5050,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Ett fel uppstod när sessionslistan skulle hämtas: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "Ett fel uppstod när vissa texturpaket laddades" @@ -4956,7 +5118,7 @@ msgstr "Fel: GBA{0} misslyckades att öppna sparfilen i {1}" msgid "Error: This build does not support emulated GBA controllers" msgstr "Fel: Det här bygget av Dolphin stöder inte emulerade GBA-kontroller" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4964,7 +5126,7 @@ msgstr "" "Fel: Försöker att komma åt Shift-JIS-teckensnitt men de är inte inlästa. " "Spel kanske inte visar typsnitt korrekt, eller kraschar." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4985,40 +5147,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:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "Exkluderade: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "Exkluderade: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Exklusiva übershaders" @@ -5026,7 +5160,7 @@ msgstr "Exklusiva übershaders" msgid "Exit" msgstr "Avsluta" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "Slutparentes eller + förväntades." @@ -5034,7 +5168,7 @@ msgstr "Slutparentes eller + förväntades." msgid "Expected arguments: " msgstr "Argument förväntades:" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "Slutparentes förväntades." @@ -5046,15 +5180,15 @@ msgstr "Komma förväntades." msgid "Expected end of expression." msgstr "Slut av uttryck förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "Namn på indata förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "Startparentes förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "Början av uttryck förväntades." @@ -5062,11 +5196,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:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "Exportera alla Wii-sparningar" @@ -5081,7 +5215,7 @@ msgstr "Exportering misslyckades" msgid "Export Recording" msgstr "Exportera inspelning" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "Exportera inspelning..." @@ -5109,14 +5243,14 @@ msgstr "Exportera som .&gcs..." msgid "Export as .&sav..." msgstr "Exportera som .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Exporterade %n sparfil(er)" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extern kontroll" @@ -5137,7 +5271,7 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Extern bildrutebuffert (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "Extrahera certifikat från NAND-minne" @@ -5170,12 +5304,12 @@ msgid "Extracting Directory..." msgstr "Extraherar katalog..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO-spelare" @@ -5195,7 +5329,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:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "Misslyckades att lägga till i signaturfilen \"%1\"" @@ -5203,13 +5337,13 @@ msgstr "Misslyckades att lägga till i signaturfilen \"%1\"" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "Misslyckades att göra anspråk på interface för BT-genomsläpp: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "Misslyckades att rensa Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "Misslyckades att rensa Skylander från plats(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5236,23 +5370,21 @@ 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:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "Misslyckades att skapa Infinityfil" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "Misslyckades att skapa Skylanderfil!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"Misslyckades att skapa Skylanderfil:\n" -"%1\n" -"(Skylandern kanske redan är på portalen)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5275,15 +5407,15 @@ msgstr "Misslyckades att radera den valda filen." msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "Misslyckades att koppla loss kärnans drivrutin för BT-genomsläpp: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "Misslyckades att ladda ner koder." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "Misslyckades att dumpa %1: Kan inte öppna filen" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "Misslyckades att dumpa %1: Kunde inte skriva till filen" @@ -5296,7 +5428,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:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "Misslyckades att extrahera certifikat från NAND-minnet" @@ -5322,22 +5454,18 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "Misslyckades att hitta en eller flera D3D-symboler" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "Misslyckades att hitta eller öppna fil: %1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "Misslyckades att importera \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5345,7 +5473,7 @@ msgstr "" "Misslyckades att importera sparfil. Den givna filen verkar vara skadad eller " "är inte en giltig Wii-sparfil." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5356,7 +5484,7 @@ msgstr "" "minnet (Verktyg -> Hantera NAND -> Kontrollera NAND-minne...) och importera " "sedan sparfilen igen." -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "Misslyckades att initialisera kärnan" @@ -5370,7 +5498,7 @@ msgstr "" "Kontrollera att ditt grafikkort stödjer minst D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "Misslyckades att initialisera renderarklasser" @@ -5379,18 +5507,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "Misslyckades att installera denna titel till NAND-minnet." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 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:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "Misslyckades att ladda RSO-model vid %1" @@ -5402,19 +5530,21 @@ msgstr "Misslyckades att ladda d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Misslyckades att ladda dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "Misslyckades att läsa map-filen \"%1\"" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "Misslyckades att ladda Skylanderfilen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "Misslyckades att ladda Skylanderfilen(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "Kunde inte läsa in den exekverbara filen till minnet." @@ -5426,13 +5556,21 @@ msgstr "" "Misslyckades att läsa in {0}. Om du använder Windows 7, prova att installera " "uppdateringspaketet KB4019990." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "Misslyckades att modifiera Skylander!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "Misslyckades att öppna '%1'" @@ -5440,6 +5578,10 @@ 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 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "Misslyckades att öppna konfigurationsfilen!" @@ -5468,33 +5610,33 @@ msgstr "" msgid "Failed to open file." msgstr "Kunde inte öppna fil." -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "Misslyckades att öppna servern" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "Misslyckades att öppna Infinityfilen!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"Misslyckades att öppna Infinityfilen(%1)!\n" -"Filen kanske redan används på basen." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "Misslyckades att öppna Skylanderfilen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"Misslyckades att öppna Skylanderfilen(%1)!\n" -"Filen kanske redan används på portalen." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5516,7 +5658,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "Misslyckades att tolka data från Redump.org" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "Misslyckades att tolka angivet värde som måldatatypen." @@ -5538,39 +5680,35 @@ 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:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "Misslyckades att läsa Infinityfilen!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Misslyckades att läsa Infinityfilen(%1)!\n" -"Filen var för liten." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "Misslyckades att läsa Skylanderfilen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"Misslyckades att läsa Skylanderfilen(%1)!\n" -"Filen var för liten." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"Misslyckades att läsa innehållet i filen\n" -"\n" -"\"%1\"" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5612,31 +5750,31 @@ msgstr "" "Misslyckades att nollställa nätspelsomdirigeringsmappen. Kontrollera " "skrivrättigheterna." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "Misslyckades att spara FIFO-logg." -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "Misslyckades att spara kod-map till sökvägen \"%1\"" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "Misslyckades att spara fil som: %1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "Misslyckades att spara signaturfilen \"%1\"" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 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:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 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:536 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 > " @@ -5689,7 +5827,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "Misslyckades" @@ -5697,11 +5835,11 @@ msgstr "Misslyckades" msgid "Fair Input Delay" msgstr "Rättvis latens" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "Region" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "Region:" @@ -5714,7 +5852,7 @@ msgstr "Snabb" msgid "Fast Depth Calculation" msgstr "Snabb djupberäkning" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5727,11 +5865,11 @@ msgstr "" msgid "Field of View" msgstr "Synfält" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "Figurnummer:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "Figurtyp" @@ -5739,9 +5877,9 @@ msgstr "Figurtyp" msgid "File Details" msgstr "Fildetaljer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Filformat" @@ -5753,20 +5891,20 @@ msgstr "Filformat:" msgid "File Info" msgstr "Filinformation" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Filnamn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Sökväg" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Filstorlek" @@ -5774,7 +5912,7 @@ msgstr "Filstorlek" msgid "File Size:" msgstr "Filstorlek:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Filen innehöll inga koder." @@ -5810,15 +5948,15 @@ msgstr "Filsystem" msgid "Filters" msgstr "Filter" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Hitta &nästa" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Hitta &föregående" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Slutför kalibrering" @@ -5832,7 +5970,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "Eld" @@ -5848,31 +5986,32 @@ msgstr "Fixa kontrollsummor" msgid "Fix Checksums Failed" msgstr "Kunde inte laga kontrollsummor" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flaggor" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "Följ &gren" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "För bästa resultat, täck långsamt över alla möjliga regioner." @@ -5884,7 +6023,7 @@ msgstr "" "För instruktioner, se den här sidan." -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -5892,7 +6031,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" @@ -5900,7 +6039,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" @@ -5932,11 +6071,11 @@ msgstr "Lyssna på port:" msgid "Force Nearest" msgstr "Tvinga närmsta" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: 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." @@ -5977,17 +6116,17 @@ msgstr "Framåt" msgid "Forward port (UPnP)" msgstr "Vidaresänd port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "Hittade %1 resultat för \"%2\"" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "Hittade %n adress(er)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "Bildruta %1" @@ -6008,7 +6147,7 @@ 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:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Bildrutedumpning" @@ -6016,7 +6155,7 @@ msgstr "Bildrutedumpning" msgid "Frame Range" msgstr "Räckvidd för bildrutor" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Bildrutedumpfilen \"{0}\" finns redan. Vill du skriva över?" @@ -6040,7 +6179,7 @@ msgstr "Lediga filer: %1" msgid "Free Look Control Type" msgstr "Fri vy-kontrolltyp" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "Fri vy-kontroll %1" @@ -6075,7 +6214,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:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Franska" @@ -6099,7 +6238,7 @@ msgstr "Från" msgid "From:" msgstr "Från:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Helskärm" @@ -6131,7 +6270,7 @@ msgstr "GBA-kärna" msgid "GBA Port %1" msgstr "GBA i uttag %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA-inställningar" @@ -6270,20 +6409,20 @@ msgstr "" "GPU: Stöder ditt grafikkort OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Spel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-kassetter (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6291,7 +6430,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:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance i uttag %1" @@ -6319,8 +6458,8 @@ msgstr "Spelets gamma" msgid "Game Gamma:" msgstr "Spelets gamma:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Spel-ID" @@ -6384,11 +6523,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube-kontroll" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "GameCube-kontroll i uttag %1" @@ -6396,11 +6535,11 @@ msgstr "GameCube-kontroll i uttag %1" msgid "GameCube Controllers" msgstr "GameCube-kontroller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube-tangentbord" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-tangentbord i uttag %1" @@ -6413,11 +6552,11 @@ msgid "GameCube Memory Cards" msgstr "GameCude-minneskort" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube-minneskort (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube-mikrofon i plats %1" @@ -6445,7 +6584,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koder" @@ -6455,35 +6594,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Allmänt" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Allmänt och alternativ" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "Generera Action Replay-kod" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Generera en ny statistikidentitet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "Genererade AR-kod." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tyska" @@ -6495,18 +6634,18 @@ msgstr "Tyskland" msgid "GetDeviceList failed: {0}" msgstr "GetDeviceList misslyckades: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "Jätte" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "Giants" @@ -6519,8 +6658,8 @@ msgid "Good dump" msgstr "Korrekt kopia" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6564,7 +6703,7 @@ msgstr "Grön vänster" msgid "Green Right" msgstr "Grön höger" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Rutnätsvy" @@ -6573,7 +6712,7 @@ msgstr "Rutnätsvy" msgid "Guitar" msgstr "Gitarr" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "Gyroskop" @@ -6601,36 +6740,35 @@ msgstr "HDR efterbehandling" msgid "Hacks" msgstr "Hack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "Huvud" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Hjälp" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "Hjältenivå" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "Hex" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "Hex 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "Hex 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "Hex 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "Hexbytesträng" @@ -6643,7 +6781,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Göm" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "Dölj alla" @@ -6659,12 +6801,12 @@ msgstr "Dölj inkompatibla sessioner" msgid "Hide Remote GBAs" msgstr "Dölj andras GBA-fönster" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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" @@ -6673,14 +6815,8 @@ msgstr "Högsta" msgid "Hit Strength" msgstr "Slagstyrka" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "Träffar" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "Horisontellt vyfält" @@ -6697,7 +6833,7 @@ msgstr "Värdkod:" msgid "Host Input Authority" msgstr "Värdauktoritet för indata" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "Värdstorlek" @@ -6726,16 +6862,16 @@ msgstr "Värdauktoritet för indata påslaget" msgid "Host with NetPlay" msgstr "Starta nätspel som värd" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "Värdnamn" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Kortkommandoinställningar" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Kortkommandon" @@ -6744,7 +6880,7 @@ msgstr "Kortkommandon" msgid "Hotkeys Require Window Focus" msgstr "Snabbtangenter kräver fönsterfokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybridübershaders" @@ -6758,16 +6894,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Jag är medveten om riskerna och vill fortsätta" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "Det angivna ID-numret är ogiltigt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -6808,7 +6944,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR-känslighet:" @@ -6859,11 +6995,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:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "Identitetsgenerering" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6935,11 +7071,15 @@ msgstr "" msgid "Ignore" msgstr "Ignorera" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Ignorera formatändringar" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "Ignorera för den här sessionen" @@ -6972,7 +7112,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Presentera XFB omedelbart" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6987,7 +7127,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "Importera BootMii-NAND-kopia..." @@ -7002,15 +7142,15 @@ msgstr "Importering misslyckades" msgid "Import Save File(s)" msgstr "Importera sparfil(er)" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Importera Wii-sparning…" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "Importerar NAND-kopia" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -7023,15 +7163,6 @@ msgstr "" msgid "In-Game?" msgstr "Spelar?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "Inkluderade: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "Inkluderade: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7045,27 +7176,27 @@ msgstr "" "tar längre tid att ladda/spara.

Om du är osäker kan " "du lämna detta markerat." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "Inkorrekt hjältenivåvärde!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "Inkorrekt senast placerad-tid!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "Inkorrekt senast nollställd-tid!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "Inkorrekt pengavärde!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "Inkorrekt smeknamn!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "Inkorrekt speltidsvärde!" @@ -7110,15 +7241,16 @@ msgstr "Inkrementell rotation" msgid "Incremental Rotation (rad/sec)" msgstr "Inkrementell rotation (rad/sek)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Infinityfigurskapare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Infinityhanterare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Infinityobjekt (*.bin);;" @@ -7140,8 +7272,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Information" @@ -7155,10 +7287,10 @@ msgstr "Injicera" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Indata" @@ -7172,20 +7304,26 @@ 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/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Sätt in &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sätt in SD-kort" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "Inspekterad" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7199,7 +7337,7 @@ msgstr "Installationspartition (%1)" msgid "Install Update" msgstr "Installera uppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "Installera WAD…" @@ -7207,11 +7345,13 @@ msgstr "Installera WAD…" msgid "Install to the NAND" msgstr "Installera till NAND-minnet" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruktion" @@ -7220,7 +7360,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "Instruktionsbrytpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "Instruktion:" @@ -7229,7 +7369,7 @@ msgstr "Instruktion:" msgid "Instruction: %1" msgstr "Instruktion: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7246,19 +7386,19 @@ msgstr "Intensitet" msgid "Interface" msgstr "Gränssnitt" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Internt LZ4-fel - Försökte dekomprimera {0} byte" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "Internt LZ4-fel - komprimering misslyckades" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Internt LZ4-fel - dekomprimering misslyckades ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Internt LZ4-fel - payloadstorleken matchar inte ({0} / {1})" @@ -7271,7 +7411,7 @@ msgstr "Internt LZO-fel - komprimering misslyckades" msgid "Internal LZO Error - decompression failed" msgstr "Internt LZO-fel - dekomprimering misslyckades" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7280,7 +7420,7 @@ msgstr "" "Det gick inte att hämta versionsinformation från den här gamla " "snabbsparningen." -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7288,7 +7428,7 @@ msgstr "" "Internt LZO-fel - misslyckades att läsa dekomprimerad versionskaka och " "versionssträngslängd ({0})" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7305,7 +7445,7 @@ msgstr "Intern upplösning" msgid "Internal Resolution:" msgstr "Intern upplösning:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "Ett internt fel uppstod när AR-kod skulle genereras." @@ -7313,11 +7453,11 @@ msgstr "Ett internt fel uppstod när AR-kod skulle genereras." msgid "Interpreter (slowest)" msgstr "Interpreterare (långsammast)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "Interpreterarkärna" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Ogiltigt uttryck." @@ -7329,7 +7469,7 @@ msgstr "Tog emot ogiltig JSON från autouppdateringstjänsten: {0}" msgid "Invalid Mixed Code" msgstr "Ogiltig blandad kod" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "Ogiltigt paket %1: %2" @@ -7338,11 +7478,11 @@ msgstr "Ogiltigt paket %1: %2" msgid "Invalid Player ID" msgstr "Ogiltigt spelar-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "Ogiltig RSO-moduladress: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "Ogiltig anropsstack" @@ -7371,7 +7511,7 @@ msgstr "Ogiltig indata" msgid "Invalid literal." msgstr "Ogiltig literal." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "Ogiltiga sökparametrar." @@ -7383,19 +7523,19 @@ msgstr "Ogiltigt lösenord angivet." msgid "Invalid recording file" msgstr "Ogiltig inspelningsfil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Ogiltiga sökparametrar (inget objekt markerat)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Ogiltig söksträng (endast jämna stränglängder stöds)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "Ogiltigt titel-ID." @@ -7405,7 +7545,7 @@ msgstr "Ogiltig bevakningsadress: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italienska" @@ -7414,63 +7554,63 @@ msgid "Italy" msgstr "Italien" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "Föremål" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "JIT-blocklänkning av" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT-block" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "JIT Branch av" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint av" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "JIT Integer av" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating av" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "JIT LoadStore av" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired av" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz av" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx av" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz av" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "JIT av (JIT-kärna)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "JIT Paired av" @@ -7482,16 +7622,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:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "JIT Register Cache av" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters av" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7500,12 +7640,16 @@ msgstr "" "aldrig hända. Rapportera gärna detta till utvecklarna. Dolphin kommer nu " "avslutas." -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanska" @@ -7516,7 +7660,7 @@ msgstr "Japanska" msgid "Japanese (Shift-JIS)" msgstr "Japansk (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" @@ -7524,7 +7668,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:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "Fortsätt köra" @@ -7538,7 +7682,7 @@ msgstr "Visa alltid fönster överst" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "Behåll adresser där värdet i minnet" @@ -7559,7 +7703,7 @@ msgstr "Tangentbordskontroll" msgid "Keys" msgstr "Tangenter" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7567,12 +7711,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Sparka ut spelare" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreanska" @@ -7583,7 +7727,7 @@ msgstr "Koreanska" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "&Ladda in ROM..." @@ -7593,7 +7737,7 @@ msgstr "&Ladda in ROM..." msgid "L-Analog" msgstr "L-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR Save" @@ -7601,35 +7745,37 @@ msgstr "LR Save" msgid "Label" msgstr "Etikett" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "Föregående värde" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "Senast placerad:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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" @@ -7705,13 +7851,13 @@ msgstr "" msgid "Levers" msgstr "Spakar" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Licens" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "Liv" @@ -7725,7 +7871,7 @@ msgstr "Lyft" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "Ljus" @@ -7733,11 +7879,11 @@ msgstr "Ljus" msgid "Limit Chunked Upload Speed:" msgstr "Begränsa segmentuppladdningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "Listkolumner" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Listvy" @@ -7748,29 +7894,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Läs in" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "Ladda &felaktig map-fil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "Ladda &annan map-fil..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Läs in anpassade texturer" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "Ladda fil" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "Ladda GameCube-huvudmeny" @@ -7791,7 +7944,7 @@ msgstr "Laddningssökväg:" msgid "Load ROM" msgstr "Ladda in ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "Ladda plats" @@ -7880,19 +8033,19 @@ msgstr "Läs in snabbsparningsplats 8" msgid "Load State Slot 9" msgstr "Läs in snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Läs in snabbsparning från fil" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Läs in snabbsparning från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Läs in snabbsparning från plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Starta Wii-systemmeny %1" @@ -7904,16 +8057,16 @@ msgstr "Ladda och skriv värdens spardata" msgid "Load from Selected Slot" msgstr "Ladda från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "Läs in från plats %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "Ladda map-fil" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "Starta vWii-systemmeny %1" @@ -7921,11 +8074,11 @@ msgstr "Starta vWii-systemmeny %1" msgid "Load..." msgstr "Ladda..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "Laddade symboler från '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -7935,7 +8088,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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7958,7 +8111,7 @@ msgid "Locked" msgstr "Låst" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Logg" @@ -7970,7 +8123,7 @@ msgstr "Loggkonfiguration" msgid "Log In" msgstr "Logga in" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "Logga JIT-instruktionstäckning" @@ -7978,7 +8131,7 @@ msgstr "Logga JIT-instruktionstäckning" msgid "Log Out" msgstr "Logga ut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Logga renderingstid till fil" @@ -7994,7 +8147,7 @@ msgstr "Loggningsutdata" msgid "Login Failed" msgstr "Inloggning misslyckades" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -8013,16 +8166,16 @@ msgstr "Slinga" msgid "Lost connection to NetPlay server..." msgstr "Tappade anslutningen till nätspelsservern..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -8030,7 +8183,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MHE" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "MORIBUND" @@ -8040,7 +8193,7 @@ msgstr "MadCatz Gameshark-filer" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "Magi" @@ -8048,37 +8201,37 @@ msgstr "Magi" msgid "Main Stick" msgstr "Huvudspak" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "Se till att hjältenivåvärdet är mellan 0 och 100!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "Se till att datum och tid för \"Senast placerad\" är giltiga!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "Se till att datum och tid för \"Senast nollställd\" är giltiga!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "Se till att pengavärdet är mellan 0 och 65000!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "Se till att smeknamnet är mellan 0 och 15 tecken långt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "Se till att speltiden är giltig!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 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:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "Skapare" @@ -8100,12 +8253,12 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "Hantera NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Manuell textursampling" @@ -8117,7 +8270,7 @@ msgstr "Mappning" msgid "Mask ROM" msgstr "Mask-ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "Sökträff hittades" @@ -8134,16 +8287,16 @@ msgstr "Buffertstorleken ändrades till %1" msgid "Maximum tilt angle." msgstr "Maximal lutningsvinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "Medium" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Minne" @@ -8155,7 +8308,7 @@ msgstr "Minnesbrytpunkt" msgid "Memory Card" msgstr "Minneskort" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "Minneskorthanterare" @@ -8167,7 +8320,7 @@ msgstr "Minneskortssökväg:" msgid "Memory Override" msgstr "Minnesåsidosättning" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "Minnesbrytpunktsalternativ" @@ -8183,7 +8336,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:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8195,29 +8348,33 @@ 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:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Övrigt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Övriga inställningar" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -8245,12 +8402,16 @@ msgstr "" "- Titel: {3}\n" "- Hash: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8261,24 +8422,25 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "Modifiera plats" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "Modifierar Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "Moduler hittade: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "Pengar:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8290,16 +8452,16 @@ msgstr "Monoskopiska skuggor" msgid "Monospaced Font" msgstr "Teckensnitt med fast teckenbredd" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "Rörelseinmatning" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "Rörelsesimulering" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -8338,6 +8500,10 @@ 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 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8347,10 +8513,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ej till alla" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-minneskontroll" @@ -8359,8 +8525,8 @@ msgstr "NAND-minneskontroll" msgid "NKit Warning" msgstr "NKit-varning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8369,7 +8535,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8386,25 +8552,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "Namn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "Namn för ny etikett:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "Namn på etiketten att ta bort:" @@ -8413,7 +8579,7 @@ msgid "Name of your session shown in the server browser" msgstr "Namnet på din session som visas i serverlistan" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8476,7 +8642,7 @@ msgstr "" msgid "Network" msgstr "Nätverk" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "Format för nätverksdumpning:" @@ -8506,7 +8672,7 @@ msgstr "Ny fil" msgid "New File (%1)" msgstr "Ny fil (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "Ny sökning" @@ -8514,7 +8680,7 @@ msgstr "Ny sökning" msgid "New Tag..." msgstr "Ny etikett..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "En ny identitet har genererats." @@ -8522,7 +8688,7 @@ msgstr "En ny identitet har genererats." msgid "New instruction:" msgstr "Ny instruktion:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Ny etikett" @@ -8531,7 +8697,7 @@ msgstr "Ny etikett" msgid "Next Game Profile" msgstr "Nästa spelprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "Nästa matchning" @@ -8545,7 +8711,7 @@ msgid "Nickname is too long." msgstr "Smeknamnet är för långt." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Smeknamn:" @@ -8559,7 +8725,7 @@ msgstr "Nej" msgid "No Adapter Detected" msgstr "Ingen adapter upptäcktes" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8573,7 +8739,7 @@ msgstr "Ingen ljuduppspelning" msgid "No Compression" msgstr "Ingen komprimering" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Ingen sökträff" @@ -8581,16 +8747,16 @@ msgstr "Ingen sökträff" msgid "No Save Data" msgstr "Ingen spardata" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "Ingen data att modifiera!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Ingen beskrivning tillgänglig" @@ -8606,15 +8772,15 @@ msgstr "Ingen extern kontroll har valts." msgid "No file loaded / recorded." msgstr "Ingen fil inläst/inspelad." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "Inget spel körs." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Inget spel körs." -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "Ingen grafikmodd vald" @@ -8623,7 +8789,7 @@ msgstr "Ingen grafikmodd vald" msgid "No input" msgstr "Ingen indata" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "Inga problem upptäcktes." @@ -8635,10 +8801,6 @@ msgstr "Inget matchande spel hittades" msgid "No paths found in the M3U file \"{0}\"" msgstr "Inga sökvägar hittades i M3U-filen \"{0}\"" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "Inga möjliga funktioner kvar. Nollställ." - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "Inga problem hittades." @@ -8653,11 +8815,11 @@ msgstr "" "men eftersom Wii-titlar innehåller mycket verifieringsdata betyder det att " "det antagligen inte finns några problem som påverkar emuleringen." -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "Inga profiler hittades för spelinställningen \"{0}\"" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "Ingen inspelning laddad." @@ -8666,7 +8828,7 @@ msgstr "Ingen inspelning laddad." msgid "No save data found." msgstr "Ingen spardata hittades." -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" "Ingen undo.dtm hittades, avbryter ångring av snabbsparningsinläsning för att " @@ -8675,11 +8837,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Ingen" @@ -8744,7 +8906,7 @@ msgid "Null" msgstr "Null" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "NumExec" @@ -8779,10 +8941,58 @@ msgstr "Nunchuk-spak" msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "Objekt %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Räckvidd för objekt" @@ -8796,7 +9006,7 @@ msgstr "Oceanien" msgid "Off" msgstr "Av" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "Förskjutning" @@ -8808,14 +9018,29 @@ msgstr "På" msgid "On Movement" msgstr "Vid rörelse" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "&Dokumentation online " @@ -8823,7 +9048,7 @@ msgstr "&Dokumentation online " msgid "Only Show Collection" msgstr "Visa bara samling" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8831,7 +9056,7 @@ msgstr "" "Lägg endast till symboler med prefix:\n" "(Lämna tomt för att exportera alla symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8841,7 +9066,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Öppna" @@ -8850,11 +9075,11 @@ msgstr "Öppna" msgid "Open &Containing Folder" msgstr "Öppna &innehållande mapp" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "Öppna &användarmapp" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Öppna mapp..." @@ -8875,7 +9100,7 @@ msgstr "Öppna Riivolution-XML..." msgid "Open Wii &Save Folder" msgstr "Öppna &sparningsmappen för Wii" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "Öppna dumpningsmap" @@ -8908,11 +9133,11 @@ msgid "Operators" msgstr "Operatörer" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Alternativ" @@ -8925,13 +9150,36 @@ msgstr "Orange" msgid "Orbital" msgstr "Omloppsbana" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Övrigt" @@ -8944,7 +9192,7 @@ msgstr "Annan partition (%1)" msgid "Other State Hotkeys" msgstr "Andra snabbsparningskortkommandon" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "Annan snabbsparningshantering" @@ -8964,16 +9212,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "Överskrivet" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "Spe&la upp inspelning..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8982,15 +9230,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG-komprimeringsnivå" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG-komprimeringsnivå:" @@ -8998,11 +9246,11 @@ msgstr "PNG-komprimeringsnivå:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG-bildfil (*.png);; Alla filer (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC-storlek" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC mot värd" @@ -9015,11 +9263,11 @@ msgstr "Kontroll" msgid "Pads" msgstr "Kontroller" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "Parametrar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "Tolka som hexadecimalt" @@ -9070,11 +9318,15 @@ msgstr "Sökväg:" msgid "Paths" msgstr "Sökvägar" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Pausa vid slutet av inspelningar" @@ -9113,7 +9365,7 @@ msgstr "Topphastigheten för svingande utåt." msgid "Per-Pixel Lighting" msgstr "Ljus per bildpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "Uppdatera systemmjukvaran via internet" @@ -9121,33 +9373,33 @@ msgstr "Uppdatera systemmjukvaran via internet" msgid "Perform System Update" msgstr "Uppdatera systemmjukvaran" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Prestandasampelfönster (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Prestandasampelfönster (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Prestandastatistik" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "Fysisk" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "Fysiskt adressutrymme" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "Välj ett teckensnitt för felsökning" @@ -9163,12 +9415,12 @@ msgstr "Luta nedåt" msgid "Pitch Up" msgstr "Luta uppåt" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Plattform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Spela" @@ -9180,7 +9432,7 @@ msgstr "Spela / spela in" msgid "Play Recording" msgstr "Spela upp inspelning" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" @@ -9192,27 +9444,27 @@ msgstr "Uppspelningsalternativ" msgid "Player" msgstr "Spelare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "Spelare ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "Spelare ett förmåga ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "Spelare ett förmåga två" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "Spelare två" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "Spelare två förmåga ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "Spelare två förmåga två" @@ -9221,7 +9473,8 @@ msgstr "Spelare två förmåga två" msgid "Players" msgstr "Spelare" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "Speltid:" @@ -9236,7 +9489,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:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9244,17 +9497,21 @@ msgstr "" "standardminnesregioner." #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "Peka" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "Uttag %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "ROM i uttag %1:" @@ -9263,7 +9520,7 @@ msgstr "ROM i uttag %1:" msgid "Port:" msgstr "Port:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "Portalplatser" @@ -9286,11 +9543,11 @@ msgid "Post-Processing Shader Configuration" msgstr "Efterbehandlingsshaderkonfiguration" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Läs in anpassade texturer i förhand" @@ -9298,11 +9555,11 @@ msgstr "Läs in anpassade texturer i förhand" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Tidigt inspelningsslut i PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Tidigt inspelningsslut i PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Tidigt inspelningsslut i PlayWiimote. {0} > {1}" @@ -9327,7 +9584,7 @@ msgstr "Synkknapptryckning" msgid "Pressure" msgstr "Tryck" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9347,7 +9604,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Föregående spelprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "Föregående matchning" @@ -9358,7 +9615,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "Primitiv %1" @@ -9370,7 +9627,7 @@ msgstr "Privat" msgid "Private and Public" msgstr "Privat och offentlig" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "Problem" @@ -9410,8 +9667,8 @@ msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Förlopp" @@ -9419,11 +9676,11 @@ msgstr "Förlopp" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "Töm cache för spellista" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "Lägg IPL-ROM-filer i User/GC/." @@ -9443,7 +9700,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." @@ -9451,7 +9708,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:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Fråga" @@ -9472,19 +9729,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO auto-upptäckt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "KÖR" @@ -9497,11 +9754,11 @@ msgstr "RVZ-GC/Wii-skivavbildningar (*.rvz)" msgid "Range" msgstr "Räckvidd" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "Intervall slut:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "Intervall start:" @@ -9513,7 +9770,11 @@ msgstr "Rank %1" msgid "Raw" msgstr "Rå" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "Byt &ut instruktion" @@ -9525,14 +9786,14 @@ msgstr "Läs" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Läs och skriv" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Endast läs" @@ -9553,10 +9814,15 @@ msgstr "Riktig balansbräda" msgid "Real Wii Remote" msgstr "Riktig Wii-fjärrkontroll" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 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 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9570,7 +9836,7 @@ msgstr "Spela in" msgid "Record Inputs" msgstr "Spela in inmatningar" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "Inspelning" @@ -9611,7 +9877,7 @@ msgstr "" "

Om du är osäker kan du välja Ingen." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org-status:" @@ -9619,14 +9885,14 @@ msgstr "Redump.org-status:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Uppdatera" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "Uppdatera nuvarande värden" @@ -9634,11 +9900,11 @@ msgstr "Uppdatera nuvarande värden" msgid "Refresh Game List" msgstr "Uppdatera spellista" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "Uppdatering misslyckades. Kör spelet ett kort tag och prova igen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "Uppdaterade nuvarande värden." @@ -9647,8 +9913,8 @@ msgstr "Uppdaterade nuvarande värden." msgid "Refreshing..." msgstr "Uppdaterar..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9677,7 +9943,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Ta bort" @@ -9694,7 +9960,7 @@ msgstr "Ta bort skräpdata (kan ej återställas):" msgid "Remove Tag..." msgstr "Ta bort etikett..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "Ta bort etikett" @@ -9708,8 +9974,8 @@ 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:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "Byt namn på symbol" @@ -9717,11 +9983,11 @@ msgstr "Byt namn på symbol" msgid "Render Window" msgstr "Renderingsfönster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9739,23 +10005,22 @@ msgstr "Förfrågan att vara med i din grupp" #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Återställ" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "Återställ alla" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "Nollställ ignorera panikhanterare" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "Återställ resultat" @@ -9783,6 +10048,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "Resurspaketshanterare" @@ -9799,7 +10068,7 @@ msgstr "Omstart krävs" msgid "Restore Defaults" msgstr "Återställ förval" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "Återställ instruktion" @@ -9816,7 +10085,7 @@ msgstr "Returhastighet" msgid "Revision" msgstr "Revision" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "Revision: %1" @@ -9875,7 +10144,7 @@ msgstr "Rulla höger" msgid "Room ID" msgstr "Rum-ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "Rotation" @@ -9898,26 +10167,52 @@ msgstr "" "upplösning används.

Om du är osäker, lämna detta " "avmarkerat." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "Kör &hit" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: 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:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "Kör tills" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "Kör tills (och ignorera brytpunkter)" @@ -9933,19 +10228,19 @@ msgstr "Ryssland" msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Filstorlek för SD-kort:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: 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:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kortssökväg:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-kortsinställningar" @@ -9953,7 +10248,7 @@ msgstr "SD-kortsinställningar" msgid "SD Root:" msgstr "SD-rot:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD-synkmapp:" @@ -9966,7 +10261,7 @@ msgstr "" msgid "SELECT" msgstr "SELECT" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9974,11 +10269,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1-kontrollsumma" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL-kontext" @@ -9988,11 +10283,11 @@ msgstr "SSL-kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "&Spara kod" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "Spa&ra snabbsparning" @@ -10005,7 +10300,6 @@ msgstr "Säker" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10015,9 +10309,17 @@ msgstr "Spara" msgid "Save All" msgstr "Spara alla" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "Sparfilsexportering" @@ -10026,24 +10328,24 @@ msgid "Save FIFO log" msgstr "Spara FIFO-logg" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Spara fil till" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "Sparfil" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Sparfiler (*.sav);;Alla filer (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "Sparfilsimportering" @@ -10055,13 +10357,13 @@ msgstr "Spara äldsta snabbsparning" msgid "Save Preset" msgstr "Spara förinställningar" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "Spara inspelning som" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Spara snabbsparning" @@ -10105,23 +10407,23 @@ msgstr "Spara snabbsparningsplats 8" msgid "Save State Slot 9" msgstr "Spara snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "Spara snabbsparning till fil" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "Spara snabbsparning på äldsta platsen" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Snabbspara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "Spara snabbsparning på plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "Spara symbol-map so&m..." @@ -10129,7 +10431,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:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "Spara och läs in snabbsparning" @@ -10141,11 +10443,11 @@ msgstr "Spara som förinställningar..." msgid "Save as..." msgstr "Spara som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "Spara kombinerad utdatafil som" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10155,15 +10457,15 @@ msgstr "" "en säkerhetskopia på de nuvarande sparfilerna före du skriver över.\n" "Vill du skriva över nu?" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "Spara i samma katalog som ROM-filen" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "Spara map-fil" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "Spara signaturfil" @@ -10171,7 +10473,7 @@ msgstr "Spara signaturfil" msgid "Save to Selected Slot" msgstr "Spara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "Spara på plats %1 - %2" @@ -10185,7 +10487,7 @@ msgstr "" "Sparade Wii-fjärrkontrollparningar kan bara nollställas när ett Wii-spel " "körs." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "Sparfiler:" @@ -10197,26 +10499,26 @@ msgstr "Snabbsparningsinspelningen {0} är korrupt. Inspelningen stoppas..." msgid "Scaled EFB Copy" msgstr "Skalad EFB-kopia" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "Skanning lyckades." -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Skärmdump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Sök" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Sök adress" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Sök aktuellt objekt" @@ -10224,11 +10526,11 @@ msgstr "Sök aktuellt objekt" msgid "Search Subfolders" msgstr "Sök undermappar" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "Sök och filtrera" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." @@ -10236,7 +10538,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:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Sök efter en instruktion" @@ -10244,11 +10546,11 @@ msgstr "Sök efter en instruktion" msgid "Search games..." msgstr "Sök efter spel..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "Sök efter en instruktion" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "Sök:" @@ -10268,7 +10570,7 @@ msgstr "Avsnitt som innehåller alla grafikinställningar." msgid "Section that contains most CPU and Hardware related settings." msgstr "Avsnitt som innehåller de flesta CPU- och hårdvaruinställningarna." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "Säkerhetsalternativ" @@ -10276,28 +10578,36 @@ msgstr "Säkerhetsalternativ" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: 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:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "Välj exporteringskatalog" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "Välj figurfil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "Välj GBA-BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "Välj GBA-ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "Välj GBA-sparfilssökväg" @@ -10317,15 +10627,15 @@ msgstr "Välj resurspaketssökväg" msgid "Select Riivolution XML file" msgstr "Välj Riivolution-XML-fil" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Välj Skylandersamling" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Välj Skylanderfil" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "Välj plats %1 - %2" @@ -10333,7 +10643,7 @@ msgstr "Välj plats %1 - %2" msgid "Select State" msgstr "Välj snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Välj snabbsparningsplats" @@ -10392,15 +10702,15 @@ msgstr "Välj en mapp" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Välj en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: 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" @@ -10408,11 +10718,11 @@ msgstr "Välj mapp att synkronisera med SD-kortsfilen" msgid "Select a Game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: 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:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Välj en fil" @@ -10420,19 +10730,19 @@ msgstr "Välj en fil" msgid "Select a game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "Välj en titel att installera till NAND-minnet" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Välj e-Readerkort" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "Välj RSO-modulens adress:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "Välj inspelning att spela upp" @@ -10440,12 +10750,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:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Välj nyckelfil (OTP/SEEPROM-kopia)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Välj sparningsfilen" @@ -10461,7 +10771,7 @@ msgstr "Välj var du vill spara de konverterade skivavbildningarna" msgid "Selected Font" msgstr "Valt teckensnitt" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Den valda kontrollprofilen finns inte" @@ -10473,15 +10783,15 @@ msgstr "Den valda kontrollprofilen finns inte" msgid "Selected game doesn't exist in game list!" msgstr "Det valda spelet finns inte i spellistan!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "Markerad tråds anropsstack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "Markerad tråds kontext" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10489,7 +10799,7 @@ msgstr "" "Väljer en hårdvaruadapter att använda.

%1 stöder " "inte den här funktionen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10497,6 +10807,25 @@ 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 +msgid "" +"Selects how frame dumps (videos) and screenshots are going to be captured." +"
If the game or window resolution change during a recording, multiple " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10515,18 +10844,29 @@ 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:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10548,7 +10888,7 @@ msgstr "" msgid "Send" msgstr "Skicka" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Position för Sensor Bar:" @@ -10576,16 +10916,12 @@ msgstr "Serverns port" msgid "Server rejected traversal attempt" msgstr "Servern avvisade traverseringsförsök" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "Sätt &värde" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Sätt PC" @@ -10601,23 +10937,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:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "Ställ in slut&adress för symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "Ställ in &storlek för symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "Ställ in slutadress för symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "Ange storlek för symbol (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10626,11 +10962,11 @@ 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Ställer in Wii-systemspråk." -#: 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." @@ -10638,7 +10974,7 @@ msgstr "" "Anger latens i millisekunder. Högre värden kan minska ljudknaster. Endast " "för vissa backends." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10653,20 +10989,20 @@ msgstr "" msgid "Settings" msgstr "Inställningar" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Kan inte skapa filen setting.txt" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "Allvarlighet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Shaderkompilering" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Skaka" @@ -10683,16 +11019,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansenkontroll" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Visa %-hastighet" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "Visa &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Visa &verktygsfält" @@ -10700,53 +11036,53 @@ msgstr "Visa &verktygsfält" msgid "Show Active Title in Window Title" msgstr "Visa aktiv titel i fönstertitel" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "Visa alla" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Visa Australien" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Visa nuvarande spel på Discord" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "Visa avstängda koder först" -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "Visa ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "Visa påslagna koder först" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Visa bildfrekvens" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Visa bildruteräknare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Visa bildrutetider" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Visa Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "Visa GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Visa Tyskland" @@ -10758,23 +11094,23 @@ msgstr "Visa överlägg för golfläge" msgid "Show Infinity Base" msgstr "Visa Infinitybas" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Visa indata" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "Visa Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "Visa JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Visa Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Visa laggräknare" @@ -10782,19 +11118,19 @@ msgstr "Visa laggräknare" msgid "Show Language:" msgstr "Visa språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Visa logg&konfiguration" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Visa nätspelsmeddelanden" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Visa nätspelsping" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Visa Nederländerna" @@ -10802,32 +11138,36 @@ msgstr "Visa Nederländerna" msgid "Show On-Screen Display Messages" msgstr "Visa meddelanden på skärmen" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Visa PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Visa prestandagrafer" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Visa plattformar" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Visa regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "Visa ominspelningsräknare" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Visa Ryssland" @@ -10835,72 +11175,72 @@ msgstr "Visa Ryssland" msgid "Show Skylanders Portal" msgstr "Visa Skylandersportal" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "Visa Spanien" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Visa hastighetsfärger" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Visa statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Visa systemklocka" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Visa Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Visa USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Visa okänd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Visa vblank-tider" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Visa VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "Visa WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Visa Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Visa världen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "Visa i &minne" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "Visa i kod" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "Visa i minne" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "Visa i kod" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "Visa i minne" @@ -10908,11 +11248,11 @@ msgstr "Visa i minne" msgid "Show in server browser" msgstr "Visa i serverlistan" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -10921,42 +11261,42 @@ msgstr "" "under nätspel.

Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -10974,7 +11314,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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10986,34 +11332,34 @@ msgstr "" msgid "Side-by-Side" msgstr "Sida-vid-sida" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "Håll inne för liggande läge" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "Tryck för liggande läge" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "Liggande Wii-fjärrkontroll" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "Signaturdatabas" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "Signerat 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "Signerat 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "Signerat 8" @@ -11022,7 +11368,7 @@ msgid "Signed Integer" msgstr "Signed int" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Förenklad kinesiska" @@ -11039,7 +11385,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." @@ -11047,11 +11393,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Hoppa över" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Hoppa över att rita" @@ -11097,24 +11443,24 @@ msgstr "" "dolphin_emphasis>" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Alla filer(*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Sökväg för Skylandersamling:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "Skylandern hittades inte i den här samlingen. Vill du skapa en ny fil?" @@ -11122,12 +11468,6 @@ msgstr "Skylandern hittades inte i den här samlingen. Vill du skapa en ny fil?" msgid "Skylanders Manager" msgstr "Skylandershanterare" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" -"Ingen Skylandersmapp hittades för den här användaren. Vill du skapa en ny " -"mapp?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11137,7 +11477,7 @@ msgstr "Slider Bar" msgid "Slot A" msgstr "Plats A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Plats A:" @@ -11145,7 +11485,7 @@ msgstr "Plats A:" msgid "Slot B" msgstr "Plats B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Plats B:" @@ -11153,7 +11493,7 @@ msgstr "Plats B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "Avrundar spakens position till den närmsta åttahörningsaxeln." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "Sockettabell" @@ -11181,12 +11521,12 @@ msgstr "" "Vissa av de angivna värdena är ogiltiga.\n" "Kontrollera de markerade värdena." -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Sortera alfabetiskt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Ljud:" @@ -11200,27 +11540,27 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanska" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "Högtalarpanorering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Högtalarvolym:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specialiserad (standard)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "Specifik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11250,15 +11590,15 @@ msgstr "Hastighet" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "Stackslut" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "Stackstart" @@ -11271,25 +11611,28 @@ msgstr "Standardkontroll" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "Starta &nätspel..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Starta ny fusksökning" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "Starta &inspelning" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Starta inspelning" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Starta i helskärm" @@ -11305,10 +11648,10 @@ msgstr "Starta med Riivolution-moddar..." msgid "Started game" msgstr "Startade spelet" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "Tillstånd" @@ -11318,7 +11661,7 @@ msgstr "Ratt" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "Stega" @@ -11330,13 +11673,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Stega över" @@ -11352,7 +11695,7 @@ msgstr "Urstegningen gjorde timeout!" msgid "Step over in progress..." msgstr "Överstegning pågår..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Stegning lyckades!" @@ -11361,7 +11704,7 @@ msgstr "Stegning lyckades!" msgid "Stepping" msgstr "Stega" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11391,18 +11734,14 @@ msgstr "Spak" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stoppa" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "Avbryt uppspelning/inspelning" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "Stoppa inspelning" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "Stoppade spelet" @@ -11445,7 +11784,7 @@ msgstr "" "texturer)

Om du är osäker kan du lämna detta " "markerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Sträck ut till fönster" @@ -11480,8 +11819,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "Klar" @@ -11508,7 +11847,7 @@ msgstr "Exporterade %n av %1 sparfil(er)." msgid "Successfully exported save files" msgstr "Exporteringen av sparfiler lyckades" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "Certifikaten har extraherats från NAND-minnet" @@ -11520,12 +11859,12 @@ msgstr "Extraheringen av filen lyckades." msgid "Successfully extracted system data." msgstr "Extraheringen av systemdata lyckades." -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "Importeringen av sparfilen lyckades." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "Titeln har installerats i NAND-minnet." @@ -11536,11 +11875,11 @@ msgstr "Titeln har tagits bort från NAND-minnet." #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "SuperChargers" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Support" @@ -11548,16 +11887,16 @@ msgstr "Support" msgid "Supported file formats" msgstr "Filformat som stöds" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "Vilande" @@ -11567,12 +11906,12 @@ msgstr "Byt plats på ögon" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "Swap Force" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "Swapper" @@ -11586,7 +11925,7 @@ msgstr "" "detta omarkerat.
" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Svinga" @@ -11600,34 +11939,21 @@ msgid "Switch to B" msgstr "Byt till B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "Slutadress för symbol (%1):" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "Symbolnamn" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Symboler" @@ -11656,7 +11982,7 @@ msgstr "" "slumpartade frysningar när läget \"Dubbla kärnor\" används. (PÅ = " "kompatibel, AV = snabb)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11677,24 +12003,24 @@ msgid "Synchronizing save data..." msgstr "Synkroniserar spardata..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS-verktyg" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Etiketter" @@ -11704,7 +12030,7 @@ msgstr "Etiketter" msgid "Taiko Drum" msgstr "Taikotrumma" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "Svans" @@ -11712,15 +12038,15 @@ msgstr "Svans" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Ta en skärmdump" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11728,7 +12054,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "Teknologi" @@ -11736,6 +12062,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11745,7 +12077,7 @@ msgstr "Texturcache" msgid "Texture Cache Accuracy" msgstr "Texturcachenoggrannhet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texturdumpning" @@ -11757,7 +12089,7 @@ msgstr "Texturfiltrering" msgid "Texture Filtering:" msgstr "Texturfiltrering:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Överlägg för texturformat" @@ -11787,7 +12119,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "H3-hashtabellen för {0}-partitionen är inte korrekt." -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "IPL-filen är inte en känd korrekt version. (CRC32: {0:x})" @@ -11801,7 +12133,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:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11810,7 +12142,7 @@ msgstr "" "säkerhetskopia av ditt nuvarande NAND-minne och sedan börjar om med ett " "nyskapat NAND-minne." -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND-minnet har reparerats." @@ -11824,11 +12156,11 @@ msgstr "" "titeln till SD-kortet kommer Wii-menyn inte längre kunna starta den eller " "kopiera eller flytta tillbaka den till NAND-minnet." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "Mängden pengar den här Skylandern ska ha. Mellan 0 och 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11869,6 +12201,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "Avkrypteringsnycklarna måste bifogas till NAND-säkerhetskopian." +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11891,7 +12230,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Skivan som skulle sättas in hittades inte." @@ -11913,17 +12252,17 @@ msgstr "Den emulerade Wii-konsolen har redan den nyaste systemmjukvaran." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "Den angivna MAC-adressen är ogiltig." #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Det angivna PID:t är ogiltigt." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Det angivna VID:t är ogiltigt." @@ -11931,7 +12270,7 @@ msgstr "Det angivna VID:t är ogiltigt." msgid "The expression contains a syntax error." msgstr "Uttrycket innehåller ett syntaxfel." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11951,7 +12290,7 @@ msgstr "" "Filen %1 finns redan.\n" "Vill du byta ut den?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11971,7 +12310,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "Filen {0} var redan öppen. Filheadern kommer inte att skrivas." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11985,7 +12324,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:573 +#: 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 " @@ -12055,13 +12394,11 @@ msgstr "Kontrollsummorna stämmer inte!" msgid "The hashes match!" msgstr "Kontrollsummorna stämmer!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"Hjältenivå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 "" @@ -12075,11 +12412,11 @@ msgstr "" msgid "The install partition is missing." msgstr "Installationspartitionen saknas." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "Senaste gången figuren placerades på en portal" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -12098,9 +12435,9 @@ msgstr "" "finns inget minneskort där just nu (istället är {1} inmatat). För att " "filmen ska synka korrekt, ändra vald enhet till Minneskort eller GCI-mapp." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "Smeknamnet för den här Skylandern. Max 15 tecken" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12130,12 +12467,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Den resulterande dekrypterade AR-koden innehåller inga rader." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 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:596 +#: 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 "" @@ -12176,7 +12513,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Den angivna filen \"{0}\" finns inte" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12191,11 +12528,11 @@ msgstr "Destinationsminneskortet innehåller redan en fil med namnet \"%1\"." msgid "The ticket is not correctly signed." msgstr "Ticket-datan är inte korrekt signerad." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "Hur länge den här figuren har använts i spel totalt, i sekunder" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" "Leksakskoden för den här figuren. Bara tillgängligt för riktiga figurer." @@ -12204,15 +12541,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "Typen av en partition kunde inte läsas." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "Den här Skylandertypen har ingen data att modifiera!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "Typen för den här Skylandern är okänd!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -12241,7 +12578,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:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12267,7 +12604,7 @@ msgstr "{0}-partitionen ligger inte på en giltig position." msgid "There are too many partitions in the first partition table." msgstr "Det finns för många partitioner i den första partitionstabellen." -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12277,7 +12614,12 @@ msgstr "" "\n" "Vill du spara före du stänger den?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Det finns inget att ångra!" @@ -12319,19 +12661,19 @@ msgstr "" "Denna koreanska speltitel är inställd på att använda en IOS som vanligtvis " "inte används i koreanska konsoler. Detta kommer troligtvis orsaka ERROR #002." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "Den här Skylandertypen kan inte modifieras än!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Den här enheten används redan med USB-genomsläppning." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Denna WAD går inte att starta." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "Denna WAD är inte giltig." @@ -12485,6 +12827,10 @@ msgstr "" msgid "This is a good dump." msgstr "Detta är en korrekt kopia." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "Den här sessionen kräver ett lösenord:" @@ -12501,12 +12847,12 @@ msgstr "" "\n" "Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 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:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "Denna titel kan inte startas." @@ -12519,7 +12865,7 @@ msgstr "Denna titel är inställd på att använda ett ogiltigt IOS." msgid "This title is set to use an invalid common key." msgstr "Denna titel är inställd på att använda en ogiltig gemensam nyckel." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12531,7 +12877,7 @@ msgstr "" "\n" "DSPHLE: Okänd µcode (CRC = {0:08x}) - AX kommer användas." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12558,6 +12904,13 @@ msgstr "" "Det här värdet multipliceras med djupet som har ställts in i " "grafikkonfigurationen." +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12578,11 +12931,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:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "Trådens kontext" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "Trådar" @@ -12590,12 +12943,12 @@ msgstr "Trådar" msgid "Threshold" msgstr "Tröskel" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Luta" @@ -12611,10 +12964,10 @@ msgstr "" msgid "Timed Out" msgstr "Timeout" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Titel" @@ -12628,7 +12981,7 @@ msgstr "till" msgid "To:" msgstr "Till:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Helskärm" @@ -12653,7 +13006,7 @@ msgid "Toggle Aspect Ratio" msgstr "Växla bildförhållande" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Slå på/av brytpunkt" @@ -12705,15 +13058,19 @@ msgstr "Slå på/av XFB-kopior" msgid "Toggle XFB Immediate Mode" msgstr "Slå på/av omedelbar XFB-presentation" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "Tokenisering misslyckades." -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Verktygsfält" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Ovan" @@ -12721,9 +13078,8 @@ msgstr "Ovan" msgid "Top-and-Bottom" msgstr "Topp-och-botten" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "Totalt antal träffar" @@ -12760,28 +13116,28 @@ msgstr "Totalt förflyttningsavstånd" msgid "Touch" msgstr "Beröring" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "Leksakskod:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Traditionell kinesiska" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "Trap Team" @@ -12820,26 +13176,26 @@ msgid "Triggers" msgstr "Avtryckare" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Typ" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "Typiskt GameCube/Wii-adressutrymme" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "OKÄND" @@ -12851,7 +13207,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB-enhetsemulering" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB-emulering" @@ -12863,13 +13219,13 @@ msgstr "Emulerade USB-enheter" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "Ogiltig USB-enhet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -12880,7 +13236,7 @@ msgstr "" "kraftfull hårdvara.

Om du är osäker, välj det här " "läget." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -12892,7 +13248,7 @@ msgstr "" "om du upplever pauser med hybridübershaders och du har en väldigt kraftfull " "grafikprocessor.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12906,7 +13262,7 @@ msgstr "" "prestandapåverkan, men resultaten varierar beroende på grafikdrivrutinernas " "beteende." -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "Kunde inte upptäcka RSO-modul automatiskt" @@ -12918,11 +13274,11 @@ msgstr "Kunde inte kontakta uppdateringsservern." msgid "Unable to create updater copy." msgstr "Kunde inte skapa en kopia av uppdateraren." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "Misslyckades att öppna fil." @@ -12950,7 +13306,7 @@ msgstr "" "\n" "Vill du ignorera denna rad och fortsätta tolka resten?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "Misslyckades att läsa fil." @@ -12973,15 +13329,15 @@ msgstr "Okomprimerade GC/Wii-skivavbildningar (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "Odöd" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Ångra inläsning av snabbsparning" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Ångra snabbsparning" @@ -13002,11 +13358,11 @@ 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:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "USA" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -13017,12 +13373,13 @@ msgstr "USA" msgid "Unknown" msgstr "Okänd" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "Okänd (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Okänt DVD-kommando {0:08x} - katastrofalt fel" @@ -13050,11 +13407,11 @@ msgstr "" "Tog emot ett okänt SYNC_SAVE_DATA-meddelande med id:{0} från spelare:{1} " "Spelaren sparkas ut!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "Okänd Skylandertyp!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "Okänt adressutrymme" @@ -13062,7 +13419,7 @@ msgstr "Okänt adressutrymme" msgid "Unknown author" msgstr "Okänd författare" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "Okänd datatyp" @@ -13070,7 +13427,7 @@ msgstr "Okänd datatyp" msgid "Unknown disc" msgstr "Okänd skiva" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "Okänt fel inträffade." @@ -13092,16 +13449,18 @@ msgstr "" "Tog emot ett okänt meddelande med id:{0} från spelare:{1} Spelaren sparkas " "ut!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Okänd(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Okänd(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Obegränsad" @@ -13134,22 +13493,22 @@ msgid "Unpacking" msgstr "Packar upp" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "Osparade ändringar" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "Osignerat 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "Osignerat 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "Osignerat 8" @@ -13213,23 +13572,23 @@ msgstr "" "Uppdaterar titel %1...\n" "Detta kan ta ett tag." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "Håll inne för stående läge" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "Tryck för stående läge" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "Stående Wii-fjärrkontroll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "Statistikrapporteringsinställningar" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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" @@ -13241,15 +13600,15 @@ 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:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Använd förlustfritt kodek (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "Använd muskontrollerad pekning" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Använd PAL60-läge (EuRGB60)" @@ -13257,7 +13616,7 @@ msgstr "Använd PAL60-läge (EuRGB60)" msgid "Use Panic Handlers" msgstr "Använd panikhanterare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13288,44 +13647,19 @@ msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" "Gör så att båda ögon använder samma djupbuffert. Vissa spel kräver detta." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" "Använd den minnesmappningskonfiguration som är inställd vid skanntillfället" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "Använd fysiska adresser" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "Använd virtuella adresser när det är möjligt" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Användarinställningar" @@ -13364,7 +13698,7 @@ msgstr "" "grafikprocessor.

Om du är osäker kan du lämna detta " "markerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13374,7 +13708,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:247 +#: 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.
Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "Använder Qt %1" @@ -13392,31 +13726,31 @@ msgstr "Använder Qt %1" msgid "Using TTL %1 for probe packet" msgstr "Använder TTL %1 för prövopaket" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "Används i vanliga fall för ljusobjekt" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "Används i vanliga fall för normalmatriser" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "Används i vanliga fall för positionsmatriser" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "Används i vanliga fall för texturkoordinatmatriser" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Hjälpprogram" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "V-synk" @@ -13424,11 +13758,11 @@ msgstr "V-synk" msgid "VBI Skip" msgstr "Hoppa över VBI" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Värde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "Värde spårat till nuvarande instruktion." @@ -13436,17 +13770,17 @@ msgstr "Värde spårat till nuvarande instruktion." msgid "Value:" msgstr "Värde:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "Den angivna varianten är ogiltig!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "Variant:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "Farkost" @@ -13462,16 +13796,16 @@ msgstr "Felsökningsnivå" msgid "Verify" msgstr "Verifiera" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "Verifiera integritet" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "Verifiera certifikat" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "Verifierar" @@ -13485,7 +13819,7 @@ msgid "Vertex Rounding" msgstr "Vertexavrundning" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "Vertikalt synfält" @@ -13499,12 +13833,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "Visa &kod" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "Visa &minne" @@ -13512,14 +13846,14 @@ msgstr "Visa &minne" msgid "Virtual Notches" msgstr "Virtuella jack" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "Virtuellt adressutrymme" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volym" @@ -13539,32 +13873,32 @@ msgstr "Volym upp" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD-filer (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "WAD-installation misslyckades: Kunde inte skapa Wii Shop-loggfiler." -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WAD-installation misslyckades: Kunde inte finalisera titelimport." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "WAD-installation misslyckades: Kunde inte importera innehåll {0:08x}." -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" "WAD-installation misslyckades: Kunde inte initialisera titelimport (fel {0})." -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "WAD-installation misslyckades: Den valda filen är inte en giltig WAD." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "VÄNTAR" @@ -13614,12 +13948,12 @@ msgstr "WFS-sökväg:" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA-GC/Wii-skivavbildningar (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "Väntar på första skanning..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13637,7 +13971,7 @@ msgstr "" "prestandan.

I övriga fall kan du lämna detta " "omarkerat om du är osäker." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13668,7 +14002,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Varning" @@ -13773,7 +14107,7 @@ msgstr "Bevakning" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "Vatten" @@ -13790,7 +14124,7 @@ msgstr "Västerländsk (Windows-1252)" msgid "Whammy" msgstr "Svajarm" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13802,7 +14136,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:311 +#: 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 " @@ -13815,7 +14149,7 @@ msgstr "" "

Om du är osäker kan du lämna detta markerat." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Enheter som används med USB-genomsläppning" @@ -13839,7 +14173,7 @@ msgstr "Wii Menu" msgid "Wii NAND Root:" msgstr "Wii-NAND-rot:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii-fjärrkontroll" @@ -13847,7 +14181,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13865,7 +14199,7 @@ msgstr "Wii-fjärrkontrollknappar" msgid "Wii Remote Gyroscope" msgstr "Wii-fjärrkontrollgyroskop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii-fjärrkontrollinställningar" @@ -13885,7 +14219,7 @@ msgstr "Wii-TAS-inmatning %1 - Wii-fjärrkontroll" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii-TAS-inmatning %1 - Wii-fjärrkontroll + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii och Wii-fjärrkontroller" @@ -13893,11 +14227,11 @@ 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:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-sparfiler (*.bin);;Alla filer (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools-signaturmegafil" @@ -13909,11 +14243,23 @@ 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 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Fönsterstorlek" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Radbrytning" @@ -13927,10 +14273,14 @@ msgstr "Världen" msgid "Write" msgstr "Skriv" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Endast skriv" @@ -13972,6 +14322,14 @@ msgstr "Fel region" msgid "Wrong revision" msgstr "Fel revision" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13980,11 +14338,11 @@ msgstr "Fel revision" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF-register " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA-destinationsadress" @@ -14019,7 +14377,7 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja till &alla" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -14028,7 +14386,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:272 +#: 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 " @@ -14172,7 +14530,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:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14190,15 +14548,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3-kod stöds inte" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Nollkod som är okänd för Dolphin: {0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] och [%3, %4]" @@ -14206,11 +14568,11 @@ msgstr "[%1, %2] och [%3, %4]" msgid "^ Xor" msgstr "^ Exklusiv eller" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "justerat" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "valfritt värde" @@ -14229,21 +14591,21 @@ msgstr "cm" msgid "d3d12.dll could not be loaded." msgstr "d3d12.dll kunde inte läsas in." -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "förval" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "frånkopplad" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Readerkort (*.raw);;Alla filer (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14251,31 +14613,35 @@ msgstr "errno" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "är lika med" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "är större än" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "är större än eller lika med" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "är mindre än" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "är mindre än eller lika med" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "inte är lika med" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "föregående värde" @@ -14285,7 +14651,7 @@ msgstr "föregående värde" msgid "m/s" msgstr "m/s" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14297,13 +14663,13 @@ msgstr "" msgid "none" msgstr "ingen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "av" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "på" @@ -14320,16 +14686,20 @@ msgstr "s" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "följande värde:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw GameTablet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "ej justerat" @@ -14344,11 +14714,11 @@ msgstr "ej justerat" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{0}-IPL hittades i {1}-mappen. Det kan hända att skivan inte kommer kunna " @@ -14387,7 +14757,7 @@ msgstr "| Eller" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14398,8 +14768,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/tr.po b/Languages/po/tr.po index 8081da679a3a..e64de273e051 100644 --- a/Languages/po/tr.po +++ b/Languages/po/tr.po @@ -6,6 +6,7 @@ # Ali Ozderya , 2019 # Bahadır Usta , 2017 # Bahadır Usta , 2017 +# zenkyomu, 2024 # Erdoğan Şahin, 2016-2017 # Erdoğan Şahin, 2017 # Erdoğan Şahin, 2016 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: i286, 2022\n" +"Last-Translator: zenkyomu, 2024\n" "Language-Team: Turkish (http://app.transifex.com/delroth/dolphin-emu/" "language/tr/)\n" "Language: tr\n" @@ -47,6 +48,10 @@ msgid "" "Because this title is not for retail Wii consoles, Dolphin cannot ensure " "that it hasn't been tampered with, even if signatures appear valid." msgstr "" +"\n" +"\n" +"Bu yazılım perakende Wii konsolları için olmadığından, Dolphin, imzalar " +"geçerli görünse bile kurcalanmadığından emin olamaz." #: Source/Core/DolphinQt/GameList/GameListModel.cpp:102 msgid " (Disc %1)" @@ -54,15 +59,17 @@ msgstr " (Disk %1)" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:283 msgid "! Not" -msgstr "" +msgstr "! Değil" #: Source/Core/Core/Boot/Boot.cpp:261 msgid "\"{0}\" is an invalid GCM/ISO file, or is not a GC/Wii ISO." msgstr "" +"\"{0}\" geçersiz bir GCM/ISO dosyası, ya da herhangi bir GC/Wii ISO dosyası " +"değil." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:295 msgid "$ User Variable" -msgstr "" +msgstr "$ Kullanıcı Değişkeni" #. i18n: The symbol for percent. #. i18n: The percent symbol. @@ -71,8 +78,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -83,7 +90,7 @@ msgstr "%" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:286 msgid "% Modulo" -msgstr "" +msgstr "% Modulo" #: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:58 msgid "" @@ -91,21 +98,22 @@ msgid "" "wants to join your party." msgstr "" "%1\n" -"partinize katılmak istiyor." +"partine katılmak istiyor." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" -msgstr "" +msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" -msgstr "" +msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -126,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (Standart)" @@ -144,7 +152,7 @@ msgstr "%1 (yavaş)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 msgid "" @@ -152,6 +160,9 @@ msgid "" "%2 memory bytes\n" "%3 frames" msgstr "" +"%1 FIFO baytları\n" +"%2 bellek baytları\n" +"%3 kareler" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:73 msgid "%1 Graphics Configuration" @@ -159,15 +170,20 @@ msgstr "%1 Grafik Yapılandırması" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 msgid "%1 MB (MEM1)" -msgstr "" +msgstr "%1 MB (MEM1)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 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 "" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." -msgstr "%1, sisteminizde bu özellik desteklemiyor." +msgstr "%1, sisteminde bu özellik desteklemiyor." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 msgid "%1 doesn't support this feature." @@ -179,6 +195,9 @@ msgid "" "%2 object(s)\n" "Current Frame: %3" msgstr "" +"%1 kare\n" +"%2 nesne\n" +"Mevcut Kare: %3" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 msgid "%1 has joined" @@ -186,17 +205,18 @@ msgstr "%1 katıldı" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 msgid "%1 has left" -msgstr "" +msgstr "%1 ayrıldı" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" -msgstr "" +msgstr "%1 %4/%5 puan değerinde %2/%3 başarıyı açtı" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 msgid "%1 is not a valid ROM" @@ -204,25 +224,25 @@ msgstr "%1 geçerli bir ROM değil" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 msgid "%1 is now golfing" -msgstr "" +msgstr "Oynama sırası %1'de" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 msgid "%1 is playing %2" -msgstr "" +msgstr "%1 %2 oynuyor" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 msgid "%1 memory ranges" -msgstr "" +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" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 msgid "%1 points" -msgstr "" +msgstr "%1 puan" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:265 msgid "%1 session found" @@ -232,40 +252,40 @@ 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 "" +msgstr "%1%" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 msgid "%1% (%2 MHz)" -msgstr "" +msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" -msgstr "" +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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" -msgstr "" +msgstr "%1'nin değeri tetiklendi" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" -msgstr "" +msgstr "%1'in değeri kullanıldı" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" -msgstr "" +msgstr "%1, %2, %3, %4" #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" -msgstr "" +msgstr "%1: %2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -277,66 +297,66 @@ 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 msgid "%1x MSAA" -msgstr "" +msgstr "%1x MSAA" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:98 msgid "%1x Native (%2x%3)" -msgstr "%1x Doğal (%2x%3)" +msgstr "%1x Yerel (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "" +msgstr "%1x Yerel (%2x%3) %4 için" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 #, c-format msgid "%1x SSAA" -msgstr "" +msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." -msgstr "%n adresleri emüle edilen bellekte erişilemedi." +msgstr "%n adres öykünen bellekte erişilemedi." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." -msgstr "" +msgstr "%n adres kaldı." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." -msgstr "" +msgstr "%n adres kaldırıldı." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:291 msgid "& And" msgstr "& Ve" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" -msgstr "" +msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" -msgstr "" +msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" -msgstr "" +msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" -msgstr "" +msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "&Hakkında" @@ -344,12 +364,12 @@ msgstr "&Hakkında" msgid "&Add Memory Breakpoint" msgstr "&Bellek Kesme Noktası Ekle" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "&Yeni Kod Ekle..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "&Fonksiyon Ekle" @@ -357,27 +377,27 @@ msgstr "&Fonksiyon Ekle" msgid "&Add..." msgstr "&Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" -msgstr "" +msgstr "&Birleştirici" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "&Ses Ayarları" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "&Otomatik Güncelle:" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "&Çerçevesiz pencere" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "&Kesme Noktaları" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "&Hata İzleyici" @@ -385,15 +405,15 @@ msgstr "&Hata İzleyici" msgid "&Cancel" msgstr "&İptal" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "&Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "&Güncellemeleri Denetle..." -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "&Sembolleri Temizle" @@ -401,19 +421,24 @@ msgstr "&Sembolleri Temizle" msgid "&Clone..." msgstr "&Çoğalt..." -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "&Kod" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" -msgstr "" +msgstr "&Bağlandı" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "&Denetleyici Ayarları" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "&Adresi kopyala" @@ -421,7 +446,7 @@ msgstr "&Adresi kopyala" msgid "&Create..." msgstr "&Oluştur..." -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Sil" @@ -430,17 +455,17 @@ msgstr "&Sil" #. It's not related to timekeeping devices. #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 msgid "&Delete Watch" -msgstr "" +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 msgid "&Delete Watches" -msgstr "" +msgstr "&Gözlemcileri Kaldır" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "&Kodu Düzenle..." @@ -448,99 +473,97 @@ msgstr "&Kodu Düzenle..." msgid "&Edit..." msgstr "&Düzenle..." -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" -msgstr "&Diski Çıkart" +msgstr "&Diski Çıkar" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "&Emülasyon" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" -msgstr "" +msgstr "&Dışarı Aktar" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." -msgstr "" +msgstr "&Oyun Kaydını Dışa Aktar..." -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." -msgstr "" +msgstr "&Durumu Dışa Aktar..." #: Source/Core/DolphinQt/GCMemcardManager.cpp:117 msgid "&Export as .gci..." -msgstr "" +msgstr "&.gci Olarak Dışarı Aktar..." -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "&Dosya" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "&Yazı Tipi..." -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "&Kare İlerletme" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" -msgstr "" +msgstr "&Serbest Bakış Ayarları" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "&Sembolleri Şuradan Getir" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "&GitHub Repo'su" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "&Grafik Ayarları" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "&Yardım" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "&Kısayol Ayarları" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" -msgstr "" +msgstr "&İçe Aktar" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "&İçeri oyun kaydı aktar" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." -msgstr "" +msgstr "&Durumu İçe Aktar..." #: Source/Core/DolphinQt/GCMemcardManager.cpp:127 msgid "&Import..." msgstr "&İçeri aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" -msgstr "" +msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "&BLR yerleştir" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" -msgstr "" +msgstr "&Karelerarası Harmanlama" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -548,41 +571,45 @@ msgstr "&JIT" msgid "&Language:" msgstr "&Dil:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "Durumu &Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "&Sembol Haritasını Yükle" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" -msgstr "" +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 msgid "&Lock Watches" -msgstr "" +msgstr "&Gözlemcileri Kilitle" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "&Gereçleri Yerinde Kilitle" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "&Hafıza" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "&Film" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" -msgstr "" +msgstr "&Sustur" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "&Ağ" @@ -591,23 +618,23 @@ msgid "&No" msgstr "&Hayır" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "&Aç..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "&Seçenekler" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "&HLE Fonksiyonlarını Yamala" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "&Duraklat" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "&Oynat" @@ -615,15 +642,15 @@ msgstr "&Oynat" msgid "&Properties" msgstr "&Özellikler" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "&Salt-Okunur Mod" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" -msgstr "" +msgstr "&Listeyi Yenile" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "&Kayıtlar" @@ -631,41 +658,45 @@ msgstr "&Kayıtlar" msgid "&Remove" msgstr "&Kaldır" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "&Kodu Sil" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "&Sembolü yeniden adlandır" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "&Sıfırla" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "&Kaynak Paketi Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "&Sembol Haritasını Kaydet" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." -msgstr "" +msgstr "&e-Okuyucu Kart(lar)ı Tara..." -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" -msgstr "" +msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "&Hız Limiti:" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "&Durdur" @@ -673,35 +704,39 @@ msgstr "&Durdur" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" +msgstr "&İş parçacıkları" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "&Araçlar" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" -msgstr "" +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 msgid "&Unlock Watches" -msgstr "" +msgstr "&Gözlemcilerin Kilidini Aç" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "&İzle" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "&Website" @@ -713,41 +748,41 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Evet" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" -msgstr "" +msgstr "'%1' bulunamadı, sembol adları oluşturulmadı" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" -msgstr "" +msgstr "'%1' bulunamadı, yerine yaygın fonksiyonlar taranıyor" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 msgid "(Dark)" -msgstr "" +msgstr "(Koyu)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 msgid "(Light)" -msgstr "" +msgstr "(Açık)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 msgid "(System)" -msgstr "" +msgstr "(Sistem)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" -msgstr "" +msgstr "(evsahibi)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 msgid "(off)" msgstr "(kapalı)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" -msgstr "" +msgstr "(ppc)" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:284 msgid "* Multiply" -msgstr "" +msgstr "* Çarp" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:287 msgid "+ Add" @@ -755,63 +790,63 @@ msgstr "+ Ekle" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:298 msgid ", Comma" -msgstr "" +msgstr ", Virgül" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:288 msgid "- Subtract" -msgstr "" +msgstr "- Çıkar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" -msgstr "" +msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" -msgstr "" +msgstr "--Bilinmeyen--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." -msgstr "" +msgstr "..." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:285 msgid "/ Divide" -msgstr "" +msgstr "/ Böl" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" -msgstr "" +msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" -msgstr "" +msgstr "1 GiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1080p" -msgstr "" +msgstr "1080p" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31 msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 blok)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" -msgstr "" +msgstr "128 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1440p" -msgstr "" +msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" -msgstr "" +msgstr "16 Bayt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: 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)" @@ -821,35 +856,35 @@ msgstr "16 Mbit (251 blok)" msgid "16-bit" msgstr "16-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" -msgstr "" +msgstr "16-bit İmzalı Tamsayı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" -msgstr "" +msgstr "16-bit İmzasız Tamsayı" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117 msgid "16x Anisotropic" -msgstr "" +msgstr "16x Eşyönsüz" #: Source/Core/Core/HotkeyManager.cpp:193 msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" -msgstr "" +msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" -msgstr "" +msgstr "256 MiB" #: Source/Core/Core/HotkeyManager.cpp:194 msgid "2x" @@ -857,11 +892,11 @@ msgstr "2x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114 msgid "2x Anisotropic" -msgstr "" +msgstr "2x Eşyönsüz" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" -msgstr "" +msgstr "32 GiB (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:29 msgid "32 Mbit (507 blocks)" @@ -871,25 +906,25 @@ msgstr "32 Mbit (507 blok)" msgid "32-bit" msgstr "32-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" -msgstr "" +msgstr "32-bit Ondalıklı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" -msgstr "" +msgstr "32-bit İmzalı Tamsayı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" -msgstr "" +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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -901,27 +936,27 @@ msgstr "3D Derinlik" #: Source/Core/Core/HotkeyManager.cpp:195 msgid "3x" -msgstr "" +msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" -msgstr "" +msgstr "4 Bayt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: 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 "4 Mbit (59 blok)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "4K" -msgstr "" +msgstr "4K" #: Source/Core/Core/HotkeyManager.cpp:196 msgid "4x" @@ -929,50 +964,50 @@ msgstr "4x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115 msgid "4x Anisotropic" -msgstr "" +msgstr "4x Eşyönsüz" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" -msgstr "" +msgstr "512 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "5K" -msgstr "" +msgstr "5K" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30 msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 blok)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" -msgstr "" +msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" -msgstr "" +msgstr "64-bit Ondalıklı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" -msgstr "" +msgstr "64-bit İmzalı Tamsayı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" -msgstr "" +msgstr "64-bit İmzasız Tamsayı" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "720p" -msgstr "" +msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" -msgstr "" +msgstr "8 Bayt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: 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)" @@ -982,50 +1017,54 @@ msgstr "8 Mbit (123 blok)" msgid "8-bit" msgstr "8-bit" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" -msgstr "" +msgstr "8-bit İmzalı Tamsayı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" -msgstr "" +msgstr "8-bit İmzasız Tamsayı" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:79 msgid "8K" -msgstr "" +msgstr "8K" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116 msgid "8x Anisotropic" -msgstr "" +msgstr "8x Eşyönsüz" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290 msgid "< Less-than" msgstr "< Daha az" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" -msgstr "" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 msgid "" -msgstr "" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 msgid "Disabled in Hardcore Mode." msgstr "" +"Zorlayıcı Modunda Devre Dışı Bırakıldı." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" +"Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" +"AutoStepping zaman aşımına uğradı. Mevcut talimat " +"ilgisiz." #: Source/Core/DolphinQt/Updater.cpp:64 msgid "" @@ -1034,7 +1073,7 @@ msgid "" "Notes:" msgstr "" "

Yeni bir Dolphin sürümü mevcut!

Dolphin %1 indirmeye açık. Şu anda " -"%2 sürümü bulunuyor.
Yükseltmek ister misiniz?

Bu güncelemeyle " +"%2 sürümü bulunuyor.
Yükseltmek ister misin?

Bu güncelemeyle " "birlikte gelen yenilikler:

" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:20 @@ -1042,23 +1081,27 @@ msgstr "" msgid "" "Error on line %1 col %2" msgstr "" +"Satır %1 sütun %2'de hata" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:528 msgid "" "Warning invalid base address, " "defaulting to 0" msgstr "" +"Uyarı geçersiz taban adres, varsayılan " +"olarak 0'a ayarlandı" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:289 msgid "> Greater-than" -msgstr "" +msgstr "> -dan/-den büyük" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" -msgstr "Şu anda zaten bir NetPlay oturumu çalışmakta!" +msgstr "Bir NetPlay Oturumu halihazırda devam ediyor!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1067,50 +1110,58 @@ msgid "" "\n" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -"Bu başlığın farklı bir sürümü zaten NAND üzerinde mevcut!\n" +"Bu başlığın farklı bir sürümü NAND'de zaten yüklü.\n" "\n" -"Mevcut sürüm: {0}\n" +"Yüklü sürüm: {0}\n" "WAD sürümü: {1}\n" "\n" -"Bu WAD'ı yüklemek geri dönülemeyecek şekilde eskisinin yerini alacaktır. " -"Devam edilsin mi?" +"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:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." -msgstr "Zaten bir diskin yerleştirilme işlemi sürüyor." +msgstr "Zaten bir disk takılmak üzere." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." msgstr "" +"Wii ve GC oyunlarının amaçlandığı renk alanıyla eşleşen, renkleri daha doğru " +"hale getiren bir grup özellik." -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." -msgstr "" +msgstr "Başlatılacak oyun belirtilmeden 'kaydetme durumu' yüklenemez." -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" msgstr "" -"Kapanma işlemi sürüyor. Eğer mevcut emülasyonu, kapanma işlemi tamamlanmadan " -"durdurursanız kaydedilmemiş bazı veriler kaybolabilir. Durdurulsun mu?" +"Kapanma işlemi sürüyor. Eğer mevcut öykünmeyi, kapanma işlemi tamamlanmadan " +"durdurursan, kaydedilmemiş bazı veriler kaybolabilir. Durdurulsun mu?" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:161 msgid "" "A supported Bluetooth device could not be found.\n" "You must manually connect your Wii Remote." msgstr "" +"Desteklenen bir Bluetooth cihazı bulunamadı.\n" +"Wii Remote'unu manuel olarak bağlaman gerekiyor." #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:234 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 +msgid "A&uto Save" +msgstr "" + #. 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 "" @@ -1127,8 +1178,20 @@ msgid "" "Wii Remote support in netplay is experimental and may not work correctly.\n" "Use at your own risk.\n" msgstr "" +"UYARI:\n" +"\n" +"Tüm oyuncular aynı Dolphin sürümünü kullanmalıdır.\n" +"SD kartlar etkinleştirilirse, oyuncular arasında aynı olması gerekir.\n" +"DSP LLE kullanılıyorsa DSP ROM'lar oyuncular arasında aynı olmalıdır.\n" +"Bir oyun açılışta takılı kalıyorsa Çift Çekirdekli Netplay'i desteklemiyor " +"olabilir. Çift Çekirdeği devre dışı bırak.\n" +"Doğrudan bağlanıyorsan, ana bilgisayarın seçilen UDP bağlantı noktasını açık/" +"yönlendirilmiş olması gerekir!\n" +"\n" +"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:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR Kodu" @@ -1137,22 +1200,22 @@ msgstr "AR Kodu" msgid "AR Codes" msgstr "AR Kodları" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 #: qtbase/src/gui/kernel/qplatformtheme.cpp:724 msgid "Abort" -msgstr "" +msgstr "Durdur" #: Source/Core/DolphinQt/AboutDialog.cpp:17 msgid "About Dolphin" msgstr "Dolphin Hakkında" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "İvmeölçer" @@ -1160,7 +1223,7 @@ msgstr "İvmeölçer" #. i18n: Percentage value of accelerometer data (complementary filter coefficient). #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:44 msgid "Accelerometer Influence" -msgstr "" +msgstr "İvmeölçer Etkisi" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:78 msgid "Accuracy:" @@ -1168,18 +1231,20 @@ msgstr "Doğruluk:" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "Başarı Ayarları" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" -msgstr "" +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" @@ -1193,34 +1258,47 @@ msgid "" "Culprit Code:\n" "{0}" msgstr "" +"Action Replay Kod Deşifre Hatası:\n" +"Parite Kontrolü Başarısız\n" +"\n" +"Suçlu Kod:\n" +"{0}" #: Source/Core/Core/ActionReplay.cpp:536 msgid "" "Action Replay Error: Invalid size ({0:08x} : address = {1:08x}) in Add Code " "({2})" msgstr "" +"Action Replay Hatası: Geçersiz boyut ({0:08x} : adres = {1:08x}) Kod Ekle'de " +"({2})" #: Source/Core/Core/ActionReplay.cpp:628 msgid "" "Action Replay Error: Invalid size ({0:08x} : address = {1:08x}) in Fill and " "Slide ({2})" msgstr "" +"Action Replay Hatası: Geçersiz boyut ({0:08x} : adres = {1:08x}) Doldur ve " +"Kaydır'da ({2})" #: Source/Core/Core/ActionReplay.cpp:409 msgid "" "Action Replay Error: Invalid size ({0:08x} : address = {1:08x}) in Ram Write " "And Fill ({2})" msgstr "" +"Action Replay Hatası: Geçersiz boyut ({0:08x} : adres = {1:08x}) Bellek Yaz " +"ve Doldur'da ({2})" #: Source/Core/Core/ActionReplay.cpp:470 msgid "" "Action Replay Error: Invalid size ({0:08x} : address = {1:08x}) in Write To " "Pointer ({2})" msgstr "" +"Action Replay Hatası: Geçersiz boyut ({0:08x} : adres = {1:08x}) İşaretçiye " +"Yaz'da ({2})" #: Source/Core/Core/ActionReplay.cpp:687 msgid "Action Replay Error: Invalid value ({0:08x}) in Memory Copy ({1})" -msgstr "" +msgstr "Action Replay Hatası: Geçersiz değer ({0:08x}) Bellek Kopyala'da ({1})" #: Source/Core/Core/ActionReplay.cpp:551 msgid "" @@ -1228,58 +1306,60 @@ msgid "" "({0})\n" "Master codes are not needed. Do not use master codes." msgstr "" +"Action Replay Hatası: Ana Kod ve Yazma Adresi CCXXXXXX uygulanmadı ({0})\n" +"Ana kodlara gerek yok. Ana kodları kullanmayın." #: Source/Core/Core/ActionReplay.cpp:225 msgid "Action Replay Error: invalid AR code line: {0}" -msgstr "" +msgstr "Action Replay Hatası: geçersiz AR kod satırı: {0}" #: Source/Core/Core/ActionReplay.cpp:799 msgid "Action Replay: Conditional Code: Invalid Size {0:08x} ({1})" -msgstr "" +msgstr "Action Replay: Koşullu Kod: Hatalı Boyut {0:08x} ({1})" #: Source/Core/Core/ActionReplay.cpp:766 msgid "Action Replay: Invalid Normal Code Type {0:08x} ({1})" -msgstr "" +msgstr "Action Replay: Geçersiz Normal Kod Türü {0:08x} ({1})" #: Source/Core/Core/ActionReplay.cpp:724 msgid "Action Replay: Normal Code 0: Invalid Subtype {0:08x} ({1})" -msgstr "" +msgstr "Action Replay: Normal Kod 0: Geçersiz Alt Tür {0:08x} ({1})" #: Source/Core/Core/ActionReplay.cpp:823 msgid "Action Replay: Normal Code {0}: Invalid subtype {1:08x} ({2})" -msgstr "" +msgstr "Action Replay: Normal Kod {0}: Geçersiz alt tür {1:08x} ({2})" #: Source/Core/Core/HotkeyManager.cpp:39 msgid "Activate NetPlay Chat" -msgstr "" +msgstr "NetPlay Sohbeti Etkinleştir" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 msgid "Active" msgstr "Aktif" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" -msgstr "" +msgstr "Etkin Infinity Figürleri:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" -msgstr "" +msgstr "Etkin iş parçacığı sırası" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" -msgstr "" +msgstr "Etkin iş parçacıkları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" -msgstr "" +msgstr "GPU" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:71 msgid "Adapter Detected" -msgstr "Adaptör Algılandı" +msgstr "GPU Algılandı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" -msgstr "Ekran Kartı:" +msgstr "GPU:" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:56 #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:74 @@ -1287,13 +1367,13 @@ msgstr "Ekran Kartı:" msgid "Add" msgstr "Ekle" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" -msgstr "" +msgstr "&Breakpoint ekle" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:31 msgid "Add New DSU Server" -msgstr "" +msgstr "Yeni DSU Sunucusu Ekle" #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:45 msgid "Add New USB Device" @@ -1306,69 +1386,66 @@ msgstr "Masaüstüne kısayol oluştur" #: Source/Core/Core/HotkeyManager.cpp:77 msgid "Add a Breakpoint" -msgstr "Kesim Noktası Ekle" +msgstr "Breakpoint Ekle" #: Source/Core/Core/HotkeyManager.cpp:78 msgid "Add a Memory Breakpoint" -msgstr "Hafıza Kesim Noktası Ekle" +msgstr "Breakpoint Ekle" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 msgid "Add memory &breakpoint" -msgstr "" +msgstr "Bellek &breakpoint'i ekle" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 msgid "Add memory breakpoint" -msgstr "" +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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" -msgstr "Ekle &izlemeye" +msgstr "&Gözlemci'ye ekle" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Add to watch" -msgstr "" +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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "Ekle..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "Adres" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" -msgstr "" +msgstr "Adres Alanı" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" -msgstr "" +msgstr "CPU durumuna göre adres alanı" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:155 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:108 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 msgid "Address:" -msgstr "" +msgstr "Adres:" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 msgid "" @@ -1380,11 +1457,19 @@ msgid "" "option is incompatible with Manual Texture Sampling." "

If unsure, select 'Default'." msgstr "" +"Doku filtrelemeyi ayarlayın. Eşyönsüz filtreleme, eğik görüş açılarındaki " +"dokuların görsel kalitesini artırır. En Yakını Zorla ve Doğrusal Olarak " +"Zorla oyun tarafından seçilen doku ölçekleme filtresini geçersiz kılar." +"

'Varsayılan' dışındaki herhangi bir seçenek oyunun dokularının " +"görünümünü değiştirir ve az sayıda oyunlarda sorunlara neden olabilir." +"

\"Bu seçenek Manuel Doku Örnekleme ile uyumlu değildir." +"

Emin değilsen, 'Varsayılan'ı seç." #. 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 "Simüle edilen stick gate'in hedeflenen yarıçapını ayarlar." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:246 msgid "" @@ -1394,6 +1479,11 @@ msgid "" "garbled in certain games.

If unsure, select the " "rightmost value." msgstr "" +"GPU'nun RAM'den doku güncellemelerini alma doğruluğunu ayarlar.

" +"\"Güvenli\" ayarı GPU'nun RAM'den doku güncellemelerini kaçırma olasılığını " +"ortadan kaldırır. Düşük doğruluklar bazı oyunlarda oyun içi metnin bozuk " +"görünmesine neden olur.

Emin değilsen, en sağdaki " +"değeri seçin." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:151 msgid "" @@ -1402,6 +1492,10 @@ msgid "" "WARNING: Enabling this will completely break many games. Only a small number " "of games can benefit from this." msgstr "" +"Öykünülen konsoldaki RAM miktarını ayarlar.\n" +"\n" +"UYARI: Bunu etkinleştirmek birçok oyunu tamamen bozacaktır. Sadece az sayıda " +"oyun bundan faydalanabilir." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:110 msgid "" @@ -1415,20 +1509,29 @@ msgid "" "cause glitches. Do so at your own risk. Please do not report bugs that occur " "with a non-default clock." msgstr "" +"Öykünülen CPU'nun saat hızını ayarlar.\n" +"\n" +"Daha yüksek değerler, değişken kare hızına sahip oyunların performans " +"pahasına daha yüksek kare hızında çalışmasını sağlayabilir. Düşük değerler " +"oyunun dahili kare atlamasını etkinleştirerek performansı artırabilir.\n" +"\n" +"UYARI: Bunu varsayılandan (%100) değiştirmek oyunları bozabilir ve " +"'glitch'lere neden olabilir. Bunu kendi sorumluluğunuzda yapın. Lütfen " +"varsayılan olmayan bir saat hızıyla oluşan hataları bildirmeyin." #: Source/Core/Core/HW/EXI/EXI_Device.h:104 msgid "Advance Game Port" msgstr "Advance Game Port" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "Gelişmiş" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" -msgstr "" +msgstr "Gelişmiş Ayarlar" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 msgid "" @@ -1441,15 +1544,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1459,93 +1562,93 @@ msgstr "Afrika" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" -msgstr "" +msgstr "Hava" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" -msgstr "" +msgstr "Veri türü uzunluğuna hizalanmış" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" -msgstr "" +msgstr "Hepsi" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:585 msgid "All Assembly files" -msgstr "" +msgstr "Tüm Assembly dosyaları" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 msgid "All Double" -msgstr "" +msgstr "Tüm Double" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 msgid "All Files" -msgstr "" +msgstr "Tüm Dosyalar" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" #. i18n: A floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 msgid "All Float" -msgstr "" +msgstr "Tüm Float" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" -msgstr "" +msgstr "Tüm GC/Wii dosyaları" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 msgid "All Hexadecimal" -msgstr "" +msgstr "Tüm Onaltılık" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" -msgstr "" +msgstr "Tüm Kayıt Durumları (*.sav *.s##);; Tüm Dosyalar (*)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 msgid "All Signed Integer" -msgstr "" +msgstr "Tüm İmzalı Tamsayı" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 msgid "All Unsigned Integer" -msgstr "" +msgstr "Tüm İmzasız Tamsayı" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" -msgstr "" +msgstr "Tüm Dosyalar (*)" #: Source/Core/Core/NetPlayServer.cpp:1210 msgid "All players' codes synchronized." -msgstr "" +msgstr "Tüm oyuncuların kodları senkronize edildi." #: Source/Core/Core/NetPlayServer.cpp:1152 msgid "All players' saves synchronized." -msgstr "" +msgstr "Tüm oyuncuların kayıtları senkronize edildi." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "Uyumsuz Bölge Ayarlarına İzin Ver" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasına İzin Ver" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD Karta Yazmaya İzin Ver" @@ -1554,6 +1657,8 @@ msgid "" "Allows manipulation of the in-game camera.

If " "unsure, leave this unchecked." msgstr "" +"Oyun içi kameranın manipülasyonuna izin verir.

Emin " +"değilseniz, bunu işaretlemeyin." #: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:37 #: Source/Core/DolphinQt/Config/ControllerInterface/ControllerInterfaceWindow.cpp:19 @@ -1565,21 +1670,21 @@ msgstr "Alternatif Giriş Kaynakları" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Always" -msgstr "" +msgstr "Her zaman" #. i18n: Treat a controller as always being connected regardless of what #. devices the user actually has plugged in #: Source/Core/Core/HW/GCPadEmu.cpp:87 msgid "Always Connected" -msgstr "" +msgstr "Her zaman bağlı" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" -msgstr "" +msgstr "Her Zaman &Üstte" #: Source/Core/Core/HW/DVD/DVDThread.cpp:115 msgid "An inserted disc was expected but not found." -msgstr "Bir diskin yerleştirilmesi bekleniyordu ancak disk bulunamadı." +msgstr "Takılı bir disk bekleniyordu ancak bulunamadı." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Anaglyph" @@ -1597,11 +1702,11 @@ msgstr "Açı" #. i18n: Refers to the dead-zone setting of gyroscope input. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:41 msgid "Angular velocity to ignore and remap." -msgstr "" +msgstr "Yok sayılacak ve yeniden eşlenecek açısal hız." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 msgid "Anti-Aliasing" -msgstr "" +msgstr "Kenar Yumuşatma" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:168 msgid "Anti-Aliasing:" @@ -1611,23 +1716,26 @@ msgstr "Kenar Yumuşatma:" msgid "Any Region" msgstr "Herhangi Bir Bölge" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" -msgstr "" +msgstr "Şuraya imza ekle" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." -msgstr "" +msgstr "&Mevcut İmza Dosyasına Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." -msgstr "" +msgstr "İmza Dosyasını &Uygula..." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." msgstr "" +"Bir kareyi oluşturduktan sonra bir işlem sonrası efekti uygular.

Emin değilseniz, (kapalı) seçeneğini seçin." #: Source/Core/DolphinQt/Config/InfoWidget.cpp:127 msgid "Apploader Date:" @@ -1637,91 +1745,95 @@ msgstr "Apploader Tarihi:" msgid "Apply" msgstr "Uygula" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" -msgstr "" +msgstr "İmza dosyasını uygula" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" -msgstr "Küçük Haritaları algıla" +msgstr "Rastgele Mipmap Algılama" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 msgid "Are you sure that you want to delete '%1'?" -msgstr "" +msgstr "'%1'i silmek istediğinizden emin misiniz?" #: Source/Core/DolphinQt/GameList/GameList.cpp:834 msgid "Are you sure you want to delete this file?" -msgstr "" +msgstr "Bu dosyayı silmek istediğinizden emin misiniz?" #: Source/Core/DolphinQt/ResourcePackManager.cpp:241 msgid "Are you sure you want to delete this pack?" -msgstr "" +msgstr "Bu paketi silmek istediğinizden emin misiniz?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 msgid "Are you sure you want to quit NetPlay?" -msgstr "" +msgstr "NetPlay'den çıkmak istediğinizden emin misiniz?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" -msgstr "" +msgstr "Emin misiniz?" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:142 msgid "Area Sampling" -msgstr "" +msgstr "Alan Örnekleme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" +msgstr "En-Boy Oranı" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "En-Boy Oranı:" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" -msgstr "" +msgstr "Birleştir" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" -msgstr "" +msgstr "Talimat birleştir" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" -msgstr "" +msgstr "Birleştirici" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" -msgstr "" +msgstr "Assembly Dosyası" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Assign Controller Ports" -msgstr "Denetleyici Noktalarını Ata" +msgstr "Denetleyici Bağlantı Noktalarını Ata" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:21 msgid "Assign Controllers" -msgstr "" +msgstr "Denetleyici Ata" #: Source/Core/DolphinQt/GCMemcardManager.cpp:536 msgid "" "At least two of the selected save files have the same internal filename." -msgstr "" +msgstr "Seçilen kayıt dosyalarının en az ikisi aynı iç dosya adına sahip." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" -msgstr "" +msgstr "MotionPlus'u Tak" #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:39 msgid "Audio" msgstr "Ses" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" -msgstr "Ses Çözücüsü:" +msgstr "Ses Arka Ucu:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" -msgstr "Ses Geciktirme Ayarları" +msgstr "Ses Esnetme Ayarları" #: Source/Core/DiscIO/Enums.cpp:33 msgid "Australia" @@ -1731,12 +1843,12 @@ msgstr "Avustralya" msgid "Author" msgstr "Yazar" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "Yazarlar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Otomatik" @@ -1744,11 +1856,7 @@ msgstr "Otomatik" msgid "Auto (Multiple of 640x528)" msgstr "Otomatik (640x528'in katları)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "Otomatik Güncelleme Ayarları" @@ -1759,8 +1867,12 @@ msgid "" "\n" "Please select a specific internal resolution." msgstr "" +"Otomatik dahili çözünürlüğe, pencere boyutuna bağlı olduğu için sıkı " +"senkronizasyon modunda izin verilmez.\n" +"\n" +"Lütfen belirli bir dahili çözünürlük seçin." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Pencere Boyutunu Otomatik Ayarla" @@ -1768,78 +1880,88 @@ msgstr "Pencere Boyutunu Otomatik Ayarla" msgid "Auto-Hide" msgstr "Otomatik Gizle" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" -msgstr "" +msgstr "RSO modüllerini otomatik olarak algıla?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" -msgstr "" +msgstr "Otomatik Olarak Klasörle Senkronize Et" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" +"Otomatik olarak pencere boyutunu dahili çözünürlüğe ayarlar." +"

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" -msgstr "" +msgstr "Otomatik olarak geçerli değerleri güncelleştirin" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" -msgstr "" +msgstr "Auxiliary" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" -msgstr "" +msgstr "B" #: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:602 msgid "BAT incorrect. Dolphin will now exit" -msgstr "BAT Yanlış. Dolphin kapatılacak" +msgstr "BAT Yanlış. Dolphin şimdi kapatılacak" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" +"BBA MAC adresi {0} XLink Kai için geçersiz. Geçerli bir Nintendo GameCube " +"MAC adresi kullanılmalıdır. 00:09:bf veya 00:17:ab ile başlayan yeni bir MAC " +"adresi oluşturun." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 -msgid "BIOS:" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 +msgid "BIOS:" +msgstr "BIOS:" + +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " -msgstr "BP kaydı " +msgstr "BP kaydı" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" -msgstr "" +msgstr "Arka Zincir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" -msgstr "" +msgstr "Arka uç" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" -msgstr "" +msgstr "Arka Uç Çoklu İş Parçacığı" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" -msgstr "Çözücü Ayarları" +msgstr "Arka Uç Ayarları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" -msgstr "Çözücü:" +msgstr "Arka Uç:" #: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:35 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:71 msgid "Background Input" -msgstr "Arkaplan Girişi" +msgstr "Arka Plan Girdisi" #: Source/Core/Core/FreeLookManager.cpp:93 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:25 @@ -1848,34 +1970,34 @@ msgstr "Arkaplan Girişi" msgid "Backward" msgstr "Geri" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" -msgstr "" +msgstr "Kötü Değer Sağlandı" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "Kötü adres sağlandı." #: Source/Core/DiscIO/VolumeVerifier.cpp:355 msgid "Bad dump" -msgstr "" +msgstr "Kötü döküm" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." -msgstr "" +msgstr "Kötü ofset sağlandı." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." -msgstr "" +msgstr "Kötü değer sağlandı." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "Afiş" @@ -1893,17 +2015,17 @@ msgstr "Çubuk" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:417 msgid "Base Address" -msgstr "" +msgstr "Baz Adres" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" -msgstr "" +msgstr "Baz önceliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Temel" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "Temel Ayarlar" @@ -1911,74 +2033,76 @@ msgstr "Temel Ayarlar" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." -msgstr "" +msgstr "Oyun belirtilmeden yığın işlem modu kullanılamaz." -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "Batarya" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: 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 "" +msgstr "BetterJoy, DS4Windows, vb." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:134 msgid "Bicubic: B-Spline" -msgstr "" +msgstr "Bikübik: B-Spline" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:138 msgid "Bicubic: Catmull-Rom" -msgstr "" +msgstr "Bikübik: Catmull-Rom" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:136 msgid "Bicubic: Mitchell-Netravali" -msgstr "" +msgstr "Bikübik: Mitchell-Netravali" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:132 msgid "Bilinear" -msgstr "" +msgstr "Bilineer" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" -msgstr "" +msgstr "Binary SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" -msgstr "" +msgstr "Binary SSL (oku)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" -msgstr "" +msgstr "Binary SSL (yaz)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" -msgstr "" +msgstr "Bit hızı (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" -msgstr "" +msgstr "Blok Boyutu" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:75 #: Source/Core/DolphinQt/ConvertDialog.cpp:64 msgid "Block Size:" -msgstr "" +msgstr "Blok Boyutu:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" -msgstr "" +msgstr "Bloklama" #: Source/Core/DolphinQt/GCMemcardManager.cpp:158 msgid "Blocks" @@ -2002,97 +2126,208 @@ msgid "" "Bluetooth passthrough mode is enabled, but Dolphin was built without libusb. " "Passthrough mode cannot be used." msgstr "" -"Bluetooth Geçişi Modu etkin, ancak Dolphin libusb olmadan oluşturuldu. Geçiş " +"Bluetooth geçiş modu etkin, ancak Dolphin libusb olmadan derlendi. Geçiş " "modu kullanılamaz." -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" -msgstr "" +msgstr "Önyüklendiğinde Duraklat" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" -msgstr "" +msgstr "BootMii NAND yedekleme dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" -msgstr "" +msgstr "BootMii anahtarları dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Çerçevesiz Tam Ekran" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Alt" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" -msgstr "" +msgstr "Branş: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" -msgstr "" +msgstr "Branşlar" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 msgid "Break" -msgstr "" +msgstr "Kır" #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" -msgstr "" +msgstr "Breakpoint" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 msgid "Breakpoint encountered! Step out aborted." -msgstr "" +msgstr "Breakpoint ile karşılaşıldı! Adım dışına çıkma iptal edildi." #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 msgid "Breakpoints" -msgstr "" +msgstr "Breakpoint'ler" #: Source/Core/Core/HW/EXI/EXI_Device.h:107 msgid "Broadband Adapter (HLE)" -msgstr "" +msgstr "Genişbant Adaptörü (HLE)" #: Source/Core/Core/HW/EXI/EXI_Device.h:100 msgid "Broadband Adapter (TAP)" -msgstr "" +msgstr "Genişbant Adaptörü (TAP)" #: Source/Core/Core/HW/EXI/EXI_Device.h:105 msgid "Broadband Adapter (XLink Kai)" -msgstr "" +msgstr "Genişbant Adaptörü (XLink Kai)" #: Source/Core/Core/HW/EXI/EXI_Device.h:106 msgid "Broadband Adapter (tapserver)" -msgstr "" +msgstr "Genişbant Adaptörü (tapserver)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" -msgstr "" +msgstr "Genişbant Adaptörü DNS ayarı" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" -msgstr "" +msgstr "Genişbant Adaptör Hatası" #. 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:48 msgid "Broadband Adapter MAC Address" -msgstr "" +msgstr "Genişbant Adaptör MAC Adresi" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." -msgstr "" +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:927 msgid "Buffer size changed to %1" -msgstr "" +msgstr "Arabellek boyutu %1 olarak değiştirildi." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 @@ -2105,6 +2340,9 @@ msgid "" "Please either install the closed-source GPU driver or update your Mesa 3D " "version." msgstr "" +"Hatalı GPU sürücüsü tespit edildi.\n" +"Lütfen kapalı kaynaklı GPU sürücüsünü yükleyin veya Mesa 3D sürümünüzü " +"güncelleyin." #: Source/Core/Core/HW/GCPadEmu.cpp:75 msgid "Button" @@ -2118,7 +2356,7 @@ msgstr "Düğme" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2134,9 +2372,9 @@ msgstr "Düğme" msgid "Buttons" msgstr "Düğmeler" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: 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 @@ -2144,40 +2382,44 @@ msgstr "" msgid "C Stick" msgstr "C Çubuğu" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." -msgstr "" +msgstr "&İmzalı Dosya Oluştur..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP kaydı " #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:63 msgid "CPU Emulation Engine:" -msgstr "" +msgstr "CPU Öykünme Motoru" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:52 msgid "CPU Options" -msgstr "İşlemci Seçenekleri" +msgstr "CPU Seçenekleri" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:32 msgid "Cached Interpreter (slower)" -msgstr "Önbellekli Interpreter (yavaş)" +msgstr "Önbellekli Yorumlayıcı (yavaş)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" +"Sistemin RAM'ine özel dokuları önbellekler.

Bu, üstel olarak daha " +"fazla RAM gerektirebilir ama olası takılmaları düzeltir." +"

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" -msgstr "" +msgstr "Hesapla" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 msgid "" @@ -2186,125 +2428,144 @@ msgid "" "less noticeable.

Rarely causes slowdowns or graphical issues." "

If unsure, leave this unchecked." msgstr "" +"3D nesnelerin aydınlatmasını verteks başına değil piksel başına hesaplar, " +"aydınlatılmış çokgenlerin görünümünü yumuşatır ve bireysel üçgenleri daha az " +"fark edilir hale getirir.

Nadiren yavaşlama veya grafik sorunlarına " +"neden olur.

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" -msgstr "" +msgstr "Kalibre et" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" -msgstr "" +msgstr "Kalibrasyon" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:45 msgid "Calibration Period" -msgstr "" +msgstr "Kalibrasyon Periyodu" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" -msgstr "" +msgstr "%1 görüntü listesini %2 boyutunda çağır" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" -msgstr "" +msgstr "Çağırıcılar" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" -msgstr "" +msgstr "Çağrılar" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" -msgstr "" +msgstr "Çağrı Yığını" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:75 msgid "Camera 1" -msgstr "" +msgstr "Kamera 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." -msgstr "" +msgstr "Kamera görüş alanı (yönlendirme hassasiyetini etkiler)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." -msgstr "" +msgstr "Sadece sanal bellekteki değerler için AR kodu oluşturabilir." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" -msgstr "" +msgstr "Henüz değiştirilemez!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" -msgstr "" +msgstr "Bu kupa için kötü karakterler düzenlenemez!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" -msgstr "" +msgstr "Bağlantı tutamacına göre Wii Remote bulunamıyor {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 msgid "Can't start a NetPlay Session while a game is still running!" -msgstr "" +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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: 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" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" +msgstr "Kalibrasyonu İptal Et" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -"SingleStep, FIFO ile kullanılamaz. Bunun yerine Kare İlerletme'yi kullanın." +"SingleStep, FIFO ile kullanılamıyor. Bunun yerine Kare İlerletme'yi kullanın." -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." -msgstr "" +msgstr "NAND'a yüklenemediği için bu WAD başlatılamıyor." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." -msgstr "" +msgstr "İlk aramada son değerle karşılaştırılamıyor." -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "GC IPL bulunamadı." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." -msgstr "" +msgstr "Bu adres için AR kodu oluşturulamıyor." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:438 msgid "Cannot refresh without results." -msgstr "" +msgstr "Sonuçlar olmadan yenilenemiyor." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." -msgstr "" +msgstr "GCI klasörünü boş bir yol olarak ayarlayamazsınız." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." -msgstr "" +msgstr "Bellek kartını boş bir yola ayarlayamazsınız." -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "GC IPL bulunamadığı için oyun başlatılamıyor." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" -msgstr "" +msgstr "Yakalanan kötü karakter %1:" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:41 msgid "Card Size" -msgstr "" +msgstr "Kart Boyutu" #. i18n: Refers to the "center" of a TaTaCon drum. #: Source/Core/Core/HW/WiimoteEmu/Extension/TaTaCon.cpp:45 @@ -2314,17 +2575,17 @@ msgstr "Merkez" #: Source/Core/Core/HotkeyManager.cpp:38 msgid "Center Mouse" -msgstr "" +msgstr "Orta Fare" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" -msgstr "" +msgstr "Ortala ve Kalibre Et" #: Source/Core/DolphinQt/GameList/GameList.cpp:421 msgid "Change &Disc" msgstr "&Diski Değiştir" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "&Diski Değiştir..." @@ -2332,19 +2593,22 @@ msgstr "&Diski Değiştir..." msgid "Change Disc" msgstr "Diski Değiştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "Diskleri Otomatik Değiştir" #: Source/Core/Core/Movie.cpp:1261 msgid "Change the disc to {0}" -msgstr "" +msgstr "Diski {0} olarak değiştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." msgstr "" +"Öykünme hızına bağlı olarak FPS sayacının rengini değiştirir." +"

Emin değilsen, bunu işaretli bırak." #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:51 msgid "" @@ -2357,6 +2621,15 @@ msgid "" "camera around the original camera. Has no lateral movement, only rotation " "and you may zoom up to the camera's origin point." msgstr "" +"Serbest Bakış sırasında oyun içi kamera türünü değiştirir.

Altı " +"Eksen: Sıfır yerçekiminde bir uzay aracını hareket ettirmeye benzer şekilde " +"tüm eksenlerde tam kamera kontrolü sunar. Bu en güçlü Serbest Bakış " +"seçeneğidir ancak kullanımı en zor olanıdır.

Birinci Şahıs: Serbest " +"kamerayı birinci şahıs video oyununa benzer şekilde kontrol eder. Kamera " +"dönebilir ve hareket edebilir, ancak yuvarlanmak imkansızdır. Kullanımı " +"kolay, ancak sınırlayıcı.

Orbital: Serbest kamerayı orijinal kamera " +"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 msgid "Changing cheats will only take effect when the game is restarted." @@ -2364,11 +2637,11 @@ msgstr "Değiştirilen hileler oyunu yeniden başlattığınızda etkili olacakt #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:151 msgid "Channel Partition (%1)" -msgstr "" +msgstr "Kanal Bölümü (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" -msgstr "" +msgstr "Girilen karakter geçersiz!" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 msgid "Chat" @@ -2378,23 +2651,23 @@ msgstr "Sohbet" msgid "Cheat Code Editor" msgstr "Hile Kodu Düzenleyici" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Hile Arama" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." -msgstr "" +msgstr "NAND'ı Kontrol Et..." #: Source/Core/DolphinQt/Settings/PathPane.cpp:149 msgid "Check for Game List Changes in the Background" -msgstr "" +msgstr "Arka Planda Oyun Listesi Değişikliklerini Kontrol Et" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "Güncellemeleri kontrol et" @@ -2403,117 +2676,107 @@ msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." 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 msgid "Checksum" -msgstr "" +msgstr "Sağlama" #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "China" msgstr "Çin" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" -msgstr "" +msgstr "Seç" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "Açmak için bir dosya seçin" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" -msgstr "" +msgstr "Açmak veya oluşturmak için bir dosya seçin" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" -msgstr "" +msgstr "Öncelikli girdi dosyasını seçin" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" -msgstr "" +msgstr "İkincil girdi dosyasını seçin" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" -msgstr "" +msgstr "GCI baz klasörünü seçin" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 msgid "Choose the folder to extract to" -msgstr "Genişletmek için bir klasör seçin" +msgstr "Çıkarılacak klasörü seçin" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 msgid "Clamping of rotation about the yaw axis." -msgstr "" +msgstr "Yaw ekseni etrafında dönüşün sıkıştırılması." #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 msgid "Classic Buttons" -msgstr "" +msgstr "Klasik Düğmeler" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.cpp:54 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:45 msgid "Classic Controller" -msgstr "" +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/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "Temizle" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "Önbelleği Temizle" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" -msgstr "" +msgstr "Yuvayı Temizle" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:90 msgid "Clock Override" -msgstr "" +msgstr "Saat Hızını Geçersiz Kıl" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." -msgstr "" +msgstr "Klonla ve Kodu &Düzenle..." #: Source/Core/DolphinQt/SearchBar.cpp:27 #: qtbase/src/gui/kernel/qplatformtheme.cpp:730 msgid "Close" msgstr "Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "Ya&pılandırma" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 -msgid "Code" -msgstr "Kod" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 +msgid "Code" +msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2522,36 +2785,40 @@ msgstr "Code:" #: Source/Core/Core/NetPlayClient.cpp:1865 msgid "Codes received!" -msgstr "" +msgstr "Kodlar alındı!" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 msgid "Color Correction" -msgstr "" +msgstr "Renk Düzeltme" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:24 msgid "Color Correction Configuration" -msgstr "" +msgstr "Renk Düzeltme Yapılandırması" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:180 msgid "Color Correction:" -msgstr "" +msgstr "Renk Düzeltme:" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:58 msgid "Color Space" +msgstr "Renk Alanı" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." -msgstr "" +msgstr "İki İmza Dosyasını &Birleştir..." #. i18n: This is "common" as in "shared", not the opposite of "uncommon" #: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:33 msgid "Common" -msgstr "" +msgstr "Ortak" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:151 msgid "Comparand:" -msgstr "" +msgstr "Karşılaştırılacak öğe:" #: Source/Core/DiscIO/VolumeVerifier.cpp:1430 msgid "" @@ -2559,6 +2826,9 @@ msgid "" "found. Despite this, it's possible that this is a good dump compared to the " "Wii U eShop release of the game. Dolphin can't verify this." msgstr "" +"Oyunun Wii disk sürümü ile karşılaştırıldığında, düşük şiddette sorunlar " +"bulundu. Buna 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/DiscIO/VolumeVerifier.cpp:1394 msgid "" @@ -2566,55 +2836,64 @@ msgid "" "this, it's possible that this is a good dump compared to the Wii U eShop " "release of the game. Dolphin can't verify this." msgstr "" +"Oyunun Wii disk sürümüyle karşılaştırıldığında bu kötü bir döküm. Buna " +"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:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" -msgstr "" +msgstr "Başlamadan önce gölgelendiricileri derle" #: Source/Core/VideoCommon/ShaderCache.cpp:174 msgid "Compiling Shaders" -msgstr "" +msgstr "Gölgelendiriciler Derleniyor" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" -msgstr "" +msgstr "Sıkıştırma" #: Source/Core/DolphinQt/ConvertDialog.cpp:72 msgid "Compression Level:" -msgstr "" +msgstr "Sıkıştırma Seviyesi:" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:68 msgid "Compression:" +msgstr "Sıkıştırma" + +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." 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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 msgid "Condition" -msgstr "" +msgstr "Koşul" #. i18n: 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:178 msgid "Condition:" -msgstr "" +msgstr "Koşul:" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:150 msgid "Conditional" -msgstr "" +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 msgid "Conditional help" -msgstr "" +msgstr "Koşullu Yardımı" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:327 msgid "" @@ -2665,8 +2944,54 @@ 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:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "Yapılandırma" @@ -2679,7 +3004,7 @@ msgstr "Yapılandır" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:45 msgid "Configure Controller" -msgstr "" +msgstr "Denetleyiciyi Yapılandır" #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 @@ -2688,53 +3013,53 @@ msgstr "Dolphin'i Yapılandır" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242 msgid "Configure Input" -msgstr "" +msgstr "Girdileri Yapılandır" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242 msgid "Configure Output" -msgstr "" +msgstr "Çıktıları Yapılandır" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" -msgstr "" +msgstr "Onayla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" -msgstr "" +msgstr "Arka uç değişikliğini onayla" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 msgid "Confirm on Stop" msgstr "Durdurmayı Onayla" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" -msgstr "" +msgstr "Onay" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:105 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:205 msgid "Connect" msgstr "Bağlan" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "Balance Board Bağla" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB Klavye Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" -msgstr "" +msgstr "Wii Remote'u Bağla: %1" #: Source/Core/Core/HotkeyManager.cpp:81 msgid "Connect Wii Remote 1" @@ -2752,13 +3077,13 @@ msgstr "3. Wii Remote'u Bağla" msgid "Connect Wii Remote 4" msgstr "4. Wii Remote'u Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "Wii Remote Bağla" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:116 msgid "Connect Wii Remotes for Emulated Controllers" -msgstr "" +msgstr "Öykünülmüş Denetleyiciler için Wii Remote'ları Bağla" #: Source/Core/DolphinQt/WiiUpdate.cpp:143 msgid "Connect to the Internet and perform an online system update?" @@ -2768,11 +3093,11 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:89 msgid "Connected" -msgstr "" +msgstr "Bağlandı" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 msgid "Connecting" -msgstr "" +msgstr "Bağlanıyor" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:196 msgid "Connection Type:" @@ -2780,7 +3105,7 @@ msgstr "Bağlantı Tipi:" #: Source/Core/DiscIO/VolumeVerifier.cpp:1234 msgid "Content {0:08x} is corrupt." -msgstr "" +msgstr "İçerik {0:08x} bozuk." #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113 msgid "Continuous Scanning" @@ -2788,38 +3113,38 @@ msgstr "Devamlı Arama" #: Source/Core/Core/HotkeyManager.cpp:40 msgid "Control NetPlay Golf Mode" -msgstr "" +msgstr "NetPlay Golf Modunu Kontrol Et" #: Source/Core/Core/HW/GCPadEmu.cpp:55 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:29 msgid "Control Stick" msgstr "Kontrol Çubuğu" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" -msgstr "" +msgstr "Denetleyici Profili" #: Source/Core/Core/HotkeyManager.cpp:342 msgid "Controller Profile 1" -msgstr "" +msgstr "Denetleyici Profili 1" #: Source/Core/Core/HotkeyManager.cpp:343 msgid "Controller Profile 2" -msgstr "" +msgstr "Denetleyici Profili 2" #: Source/Core/Core/HotkeyManager.cpp:344 msgid "Controller Profile 3" -msgstr "" +msgstr "Denetleyici Profili 3" #: Source/Core/Core/HotkeyManager.cpp:345 msgid "Controller Profile 4" -msgstr "" +msgstr "Denetleyici Profili 4" #: Source/Core/DolphinQt/Config/ControllersWindow.cpp:16 msgid "Controller Settings" -msgstr "" +msgstr "Denetleyici Ayarları" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "Denetleyiciler" @@ -2830,6 +3155,11 @@ msgid "" "display.

HDR output is required for this setting to take effect." "

If unsure, leave this at 203." msgstr "" +"Kağıt beyazı yüzeyin taban parlaklığını nit cinsinden kontrol eder. HDR " +"ekran kullanırken farklı ortam aydınlatma koşullarına uyum sağlamak için " +"kullanışlıdır.

Bu ayarın etkili olması için HDR çıkışı gereklidir." +"

Emin değilsen, bunu 203'te bırak." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" @@ -2838,6 +3168,9 @@ msgid "" "higher value creates stronger out-of-screen effects while a lower value is " "more comfortable." msgstr "" +"Yakınsama düzleminin mesafesini kontrol eder. Bu, sanal nesnelerin ekranın " +"ö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:496 msgid "" @@ -2847,6 +3180,11 @@ msgid "" "better performance will be.

If unsure, select " "Native." msgstr "" +"İşleme çözünürlüğünü kontrol eder.

Yüksek bir çözünürlük görsel " +"kaliteyi büyük ölçüde artırır, ancak aynı zamanda GPU yükünü büyük ölçüde " +"artırır ve bazı oyunlarda sorunlara neden olabilir. Genel olarak, dahili " +"çö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:582 msgid "" @@ -2854,66 +3192,76 @@ msgid "" "higher value creates a stronger feeling of depth while a lower value is more " "comfortable." msgstr "" +"Sanal kameralar arasındaki ayırma mesafesini kontrol eder.

Daha " +"yüksek bir değer daha güçlü bir derinlik hissi yaratırken, daha düşük bir " +"değer daha rahattır." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:36 msgid "" "Controls whether or not Dual Core should be enabled. Can improve performance " "but can also cause issues. Defaults to True" msgstr "" +"Çift Çekirdeğin etkinleştirilip etkinleştirilmeyeceğini kontrol eder. " +"Performansı artırabilir ancak sorunlara da neden olabilir. Varsayılan değer " +"Etkin'dir." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:44 msgid "" "Controls whether or not the Memory Management Unit should be emulated fully. " "Few games require it." msgstr "" +"Bellek Yönetim Biriminin tam olarak öykünülüp öykünülmeyeceğini ayarlar. Az " +"oyun bunu gerektirir." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:49 msgid "" "Controls whether to use high or low-level DSP emulation. Defaults to " "True" 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:658 msgid "Convergence" -msgstr "" +msgstr "Yakınsama" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:145 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:222 msgid "Convergence:" msgstr "Yakınsama:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." -msgstr "" +msgstr "Dönüşüm başarısız oldu." #: Source/Core/DolphinQt/ConvertDialog.cpp:44 msgid "Convert" -msgstr "" +msgstr "Dönüştür" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" +msgstr "Dosyayı Klasöre Şimdi Dönüştür" #: Source/Core/DolphinQt/GameList/GameList.cpp:419 msgid "Convert File..." -msgstr "" +msgstr "Dosyayı dönüştür..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" +msgstr "Klasörü Dosyaya Şimdi Dönüştür" #: Source/Core/DolphinQt/GameList/GameList.cpp:383 msgid "Convert Selected Files..." -msgstr "" +msgstr "Seçili Dosyaları Dönüştür..." #: Source/Core/DolphinQt/ConvertDialog.cpp:79 msgid "Convert..." -msgstr "" +msgstr "Dönüştür..." #: Source/Core/DolphinQt/ConvertDialog.cpp:316 msgid "" @@ -2921,18 +3269,23 @@ msgid "" "any noticeable amount of space compared to converting to ISO. Do you want to " "continue anyway?" msgstr "" +"Wii disk görüntülerini gereksiz verileri kaldırmadan GCZ'ye dönüştürmek, " +"ISO'ya dönüştürmeye kıyasla gözle görülür miktarda alan tasarrufu sağlamaz. " +"Yine de devam etmek istiyor musun?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." -msgstr "" +msgstr "Dönüştürülüyor..." #: Source/Core/DolphinQt/ConvertDialog.cpp:442 msgid "" "Converting...\n" "%1" msgstr "" +"Dönüştürülüyor...\n" +"%1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:34 msgid "" @@ -2945,6 +3298,15 @@ msgid "" "required to show all the colors from the PAL and NTSC-J color spaces." "

If unsure, leave this unchecked." msgstr "" +"Renkleri, GC/Wii'nin birlikte çalışması amaçlanan renk alanlarından sRGB/" +"Rec.709'a dönüştürür.

Birden fazla standart olduğu ve çoğu oyunun " +"bunları kabul etmediği için oyunların tam olarak hangi renk alanı için " +"tasarlandığını bilmenin bir yolu yoktur, bu nedenle oyun diski bölgesinden " +"bir format varsaymak doğru değildir. Sadece size daha doğal görüneni seçin " +"veya oyunun geliştirildiği bölgeyle eşleştirin.

PAL ve NTSC-J renk " +"alanlarındaki tüm renkleri göstermek için HDR çıkışı gereklidir." +"

Emin değilseniz, bunu işaretlemeyin." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:47 msgid "" @@ -2952,6 +3314,10 @@ msgid "" "display targets.
Monitors often target sRGB. TVs often target 2.2." "

If unsure, leave this unchecked." msgstr "" +"Gama değerini oyunun hedeflediği değerden mevcut SDR ekranınızın hedeflediği " +"değere dönüştürür.
Monitörler genellikle sRGB'yi hedefler. TV'ler " +"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 @@ -2960,45 +3326,45 @@ msgstr "" msgid "Copy" msgstr "Kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "Kopyala &Fonksiyon" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "Kopyala &Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" -msgstr "" +msgstr "Adresi kopyala" #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" -msgstr "" +msgstr "Kopyalama başarısız" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" -msgstr "" +msgstr "Hex'i Kopyala" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" -msgstr "" +msgstr "Değeri Kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" -msgstr "" +msgstr "Kod &dizesini kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" -msgstr "" +msgstr "Hedef ad&resi kopyala" #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" -msgstr "" +msgstr "A'ya kopyala" #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to B" -msgstr "" +msgstr "B'ye kopyala" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:208 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:83 @@ -3006,31 +3372,36 @@ msgstr "" msgid "Core" msgstr "Çekirdek" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" -msgstr "" +msgstr "Renk Alanını Düzelt" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:93 msgid "Correct SDR Gamma" -msgstr "" +msgstr "SDR Gamasını Düzelt" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "Performans Maliyeti" #: Source/Core/Core/NetPlayClient.cpp:176 #: Source/Core/Core/NetPlayClient.cpp:240 msgid "Could not communicate with host." -msgstr "" +msgstr "Ana bilgisayarla iletişim kurulamadı." #: Source/Core/Core/NetPlayClient.cpp:142 msgid "Could not create client." -msgstr "" +msgstr "İstemci oluşturulamadı." #: Source/Core/Core/NetPlayClient.cpp:156 msgid "Could not create peer." -msgstr "" +msgstr "Eş oluşturulamadı." #: Source/Core/DolphinQt/WiiUpdate.cpp:49 msgid "" @@ -3054,6 +3425,9 @@ msgid "" "\n" "The emulated console will now stop." msgstr "" +"Bluetooth Geçişi için kullanılabilir bir Bluetooth USB adaptörü bulunamadı.\n" +"\n" +"Öykünülen konsol şimdi duracak." #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:175 msgid "" @@ -3063,6 +3437,11 @@ msgid "" "\n" "The emulated console will now stop." msgstr "" +"Bluetooth Geçişi için kullanılabilir bir Bluetooth USB adaptörü bulunamadı.\n" +"Dolphin bir bağdaştırıcı kullanmayı denediğinde aşağıdaki hata oluştu:\n" +"{0}\n" +"\n" +"Öykünülen konsol şimdi duracak." #: Source/Core/DolphinQt/WiiUpdate.cpp:54 msgid "" @@ -3077,33 +3456,37 @@ msgid "" "Could not launch IOS {0:016x} because it is missing from the NAND.\n" "The emulated software will likely hang now." msgstr "" +"IOS {0:016x} NAND'de eksik olduğu için başlatılamadı.\n" +"Öykünülen yazılım büyük olasılıkla şimdi donacak." #: Source/Core/Core/IOS/ES/ES.cpp:416 msgid "" "Could not launch the Wii Menu because it is missing from the NAND.\n" "The emulated software will likely hang now." msgstr "" -"Wii Menü'sü dosyaları NAND'da eksik olduğu için Wii Menü'sü başlatılamadı.\n" -"Emülasyon yazılımı büyük olasılıkla yanıt vermeyecektir." +"Wii Menüsü NAND'de eksik olduğu için başlatılamadı.\n" +"Öykünülen yazılım büyük olasılıkla şimdi donacak." #: Source/Core/Core/IOS/ES/ES.cpp:421 msgid "" "Could not launch title {0:016x} because it is missing from the NAND.\n" "The emulated software will likely hang now." msgstr "" +"Başlık {0:016x} NAND'de eksik olduğu için başlatılamadı.\n" +"Öykünülen yazılım büyük olasılıkla şimdi donacak." #: Source/Core/Core/Boot/Boot.cpp:283 Source/Core/Core/Boot/Boot.cpp:300 msgid "Could not recognize file {0}" -msgstr "" +msgstr "Dosya {0} tanınamadı." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" -msgstr "" +msgstr "Değişiklikleriniz kaydedilemedi!" #: Source/Core/UICommon/AutoUpdate.cpp:303 #: Source/Core/UICommon/AutoUpdate.cpp:309 msgid "Could not start updater process: {0}" -msgstr "" +msgstr "Güncelleme işlemi başlatılamadı: {0}" #: Source/Core/Core/HW/GCMemcard/GCMemcardRaw.cpp:139 msgid "" @@ -3116,139 +3499,146 @@ msgid "" "If so, then you may need to re-specify your memory card location in the " "options." msgstr "" +"{0} hafıza kartı dosyası yazılamadı.\n" +"\n" +"Dolphin'i bir CD/DVD'den mi çalıştırıyorsunuz, belki kayıt dosyası yazmaya " +"karşı korumalı?\n" +"\n" +"Bunu öykünücü dizinini taşıdıktan sonra mı alıyorsunuz?\n" +"Öyleyse, seçeneklerde hafıza kartınızın konumunu yeniden belirtmeniz " +"gerekebilir." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 msgid "Couldn't look up central server" -msgstr "" +msgstr "Merkezi sunucu aranamadı" #: Source/Core/DolphinQt/GCMemcardManager.cpp:829 msgid "Couldn't open file." -msgstr "" +msgstr "Dosya açılamadı." #: Source/Core/DolphinQt/GCMemcardManager.cpp:832 msgid "Couldn't read file." -msgstr "" +msgstr "Dosya okunamadı." #: Source/Core/DolphinQt/Config/InfoWidget.cpp:123 msgid "Country:" msgstr "Ülke:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" -msgstr "" +msgstr "Oluştur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" -msgstr "" +msgstr "Infinity Dosyası Oluştur" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:62 #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:74 msgid "Create New Memory Card" -msgstr "" +msgstr "Yeni Hafıza Kartı Oluştur" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" -msgstr "" - -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" +msgstr "Skylander Dosyası Oluştur" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" -msgstr "" +msgstr "Diğer cihazlar için eşlemeler oluştur" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:45 msgid "Create..." msgstr "Oluştur..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" -msgstr "" +msgstr "Oluşturan:" #: Source/Core/Common/MsgHandler.cpp:62 msgid "Critical" msgstr "Kritik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Kırp" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." "

If unsure, leave this unchecked." msgstr "" +"Resmi, kendi doğal en boy oranından (nadiren 4:3 veya 16:9 ile tam olarak " +"eşleşir) belirli kullanıcı hedef en boy oranına (örneğin 4:3 veya 16:9) " +"kırpar.

Emin değilseniz, bunu işaretlemeyin." #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:82 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:175 msgid "Crossfade" -msgstr "Geçişli" +msgstr "Çapraz solma" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" -msgstr "" +msgstr "CPU'da Verteksleri Ayıkla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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 "" +"Gerekli çizim çağrılarının sayısını azaltmak için CPU'daki köşeleri ayıklar. " +"Performansı ve çizim istatistiklerini etkileyebilir." +"

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "Mevcut Bölge" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" -msgstr "" +msgstr "Mevcut Değer" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" -msgstr "" +msgstr "Mevcut bağlam" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Current game" msgstr "Mevcut oyun" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" -msgstr "" +msgstr "Mevcut iş parçacığı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" +msgstr "Özel" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" -msgstr "" +msgstr "Özel Adres Alanı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "" +msgstr "Özel En Boy Oranı Yüksekliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "" +msgstr "Özel En Boy Oranı Genişliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "Özel En Boy Oranı:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3256,15 +3646,15 @@ msgstr "Özel RTC Seçenekleri" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:102 msgid "Custom:" -msgstr "" +msgstr "Özel:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" -msgstr "" +msgstr "Özelleştir" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3275,43 +3665,45 @@ msgstr "Yön Tuşları" #: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:229 msgid "DFF file magic number is incorrect: got {0:08x}, expected {1:08x}" msgstr "" +"DFF dosyasının sihirli numarası yanlış: {0:08x} elde edildi, {1:08x} " +"bekleniyordu" #: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:219 msgid "DFF file size is 0; corrupt/incomplete file?" -msgstr "" +msgstr "DFF dosya boyutu 0; bozuk/eksik dosya?" #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:49 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:149 msgid "DJ Turntable" -msgstr "" +msgstr "DJ Turntable" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:40 msgid "DK Bongos" -msgstr "DK Bongos Kontr." +msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" -msgstr "" +msgstr "DSP Öykünme Motoru" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:92 msgid "DSP HLE (fast)" -msgstr "" +msgstr "DSP HLE (hızlı)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" -msgstr "" +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 "" +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 "" +msgstr "DSP LLE Recompiler (yavaş)" #: Source/Core/DolphinQt/Config/ControllerInterface/ControllerInterfaceWindow.cpp:31 msgid "DSU Client" -msgstr "" +msgstr "DSU İstemcisi" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:51 msgid "" @@ -3320,6 +3712,10 @@ msgid "" "setup instructions, refer to this page." msgstr "" +"DSU protokolü PlayStation, Nintendo Switch ve Steam denetleyicileri gibi " +"uyumlu kaynaklardan gelen giriş ve hareket verilerinin kullanılmasını sağlar." +"

Kurulum talimatları için, bu sayfaya göz atın." #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:39 msgid "Dance Mat" @@ -3327,9 +3723,9 @@ msgstr "Dance Mat" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" -msgstr "" +msgstr "Dark" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 msgid "Data" @@ -3337,13 +3733,13 @@ msgstr "Veri" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:145 msgid "Data Partition (%1)" -msgstr "" +msgstr "Veri Bölümü (%1)" #: Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp:46 msgid "Data Transfer" msgstr "Veri Aktarımı" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "Veri Tipi" @@ -3353,19 +3749,19 @@ msgstr "Kullanılmaması gereken dosya alanındaki veriler." #: Source/Core/DolphinQt/GCMemcardManager.cpp:867 msgid "Data in unrecognized format or corrupted." -msgstr "" +msgstr "Tanınmayan bir formatta veya bozulmuş veri." #: Source/Core/DolphinQt/GCMemcardManager.cpp:378 msgid "Data inconsistency in GCMemcardManager, aborting action." -msgstr "" +msgstr "GCMemcardManager'da veri tutarsızlığı, işlem iptal ediliyor." #: Source/Core/Core/NetPlayClient.cpp:1823 msgid "Data received!" -msgstr "" +msgstr "Veri alındı!" #: Source/Core/DolphinQt/GCMemcardManager.cpp:403 msgid "Datel MaxDrive/Pro files" -msgstr "" +msgstr "Datel MaxDrive/Pro dosyaları" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:43 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:37 @@ -3374,25 +3770,25 @@ msgstr "Ölü Bölge" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:49 msgid "Debug" -msgstr "" +msgstr "Hata ayıkla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "Hata ayıklama" #. i18n: The base 10 numeral system. Not related to non-integer numbers #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:93 msgid "Decimal" -msgstr "Onluk taban" +msgstr "Ondalık" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" -msgstr "" +msgstr "Kod Çözme Kalitesi:" #: Source/Core/Core/FreeLookManager.cpp:97 msgid "Decrease" -msgstr "" +msgstr "Azalt" #: Source/Core/Core/HotkeyManager.cpp:128 msgid "Decrease Convergence" @@ -3404,24 +3800,24 @@ msgstr "Derinliği Azalt" #: Source/Core/Core/HotkeyManager.cpp:46 msgid "Decrease Emulation Speed" -msgstr "Emülasyon Hızını Düşür" +msgstr "Öykünme Hızını Düşür" #. i18n: IR stands for internal resolution #: Source/Core/Core/HotkeyManager.cpp:119 msgid "Decrease IR" -msgstr "IR'yi Azalt" +msgstr "IR'ı Azalt" #: Source/Core/Core/HotkeyManager.cpp:183 msgid "Decrease Selected State Slot" -msgstr "" +msgstr "Seçili Durum Yuvasını Azalt" #: Source/Core/Core/FreeLookManager.cpp:108 msgid "Decrease X" -msgstr "" +msgstr "X'i Azalt" #: Source/Core/Core/FreeLookManager.cpp:110 msgid "Decrease Y" -msgstr "" +msgstr "Y'yi Azalt" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 @@ -3431,33 +3827,33 @@ msgstr "Varsayılan" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:176 msgid "Default Config (Read Only)" -msgstr "" +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" #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Default Font" -msgstr "" +msgstr "Varsayılan Yazı Tipi" #: Source/Core/DolphinQt/Settings/PathPane.cpp:185 msgid "Default ISO:" msgstr "Varsayılan ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" -msgstr "" +msgstr "Varsayılan iş parçacığı" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" -msgstr "" +msgstr "EFB Önbelleği Geçersiz Kılmayı Ertele" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:55 msgid "Defer EFB Copies to RAM" -msgstr "" +msgstr "EFB Kopyalarını RAM'e Ertele" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3465,6 +3861,12 @@ msgid "" "EFB Access at the cost of stability.

If unsure, " "leave this unchecked." msgstr "" +"Bir GPU senkronizasyon komutu yürütülene kadar EFB erişim önbelleğinin " +"geçersiz kılınmasını erteler. Devre dışı bırakılırsa, önbellek her çizim " +"çağrısında geçersiz kılınır.

Kararlılık pahasına CPU EFB Erişimine " +"dayanan bazı oyunlarda performansı artırabilir." +"

Emin değilseniz, bunu işaretlemeyin." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 @@ -3474,74 +3876,101 @@ msgstr "Sil" #: Source/Core/DolphinQt/GameList/GameList.cpp:489 msgid "Delete File..." -msgstr "" +msgstr "Dosyayı Sil..." #: Source/Core/DolphinQt/GameList/GameList.cpp:394 msgid "Delete Selected Files..." -msgstr "" +msgstr "Seçili Dosyaları Sil..." #: Source/Core/AudioCommon/WaveFile.cpp:38 #: Source/Core/VideoCommon/FrameDumpFFMpeg.cpp:140 msgid "Delete the existing file '{0}'?" -msgstr "" +msgstr "Varolan '{0}' dosyasını sil?" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 msgid "Depth" -msgstr "" +msgstr "Derinlik" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:143 msgid "Depth Percentage:" -msgstr "" +msgstr "Derinlik Yüzdesi:" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:220 msgid "Depth:" msgstr "Derinlik:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Açıklama" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "Açıklama:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" +msgstr "Açıklama: %1" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 -msgid "Detached" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" msgstr "" +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +msgid "Detached" +msgstr "Ayrılmış" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:262 msgid "Detect" msgstr "Belirle" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" -msgstr "" +msgstr "RSO Modülleri Algılanıyor" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:118 msgid "Deterministic dual core:" -msgstr "" +msgstr "Deterministik çift çekirdek:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" -msgstr "" +msgstr "Geliştirme (günde birkaç kez)" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 msgid "Device" msgstr "Cihaz" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "Cihaz PID (örn. 0305)" @@ -3550,23 +3979,19 @@ msgid "Device Settings" msgstr "Cihaz Ayarları" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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:" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:151 msgid "Did not recognize %1 as a valid Riivolution XML file." -msgstr "" +msgstr "%1 geçerli bir Riivolution XML dosyası olarak tanınmadı." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: 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." @@ -3578,14 +4003,14 @@ msgstr "Doğrudan Bağlantı" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" -msgstr "" +msgstr "Bağlantı ke&sildi" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" -msgstr "" +msgstr "Devre Dışı Bırak" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" @@ -3595,37 +4020,37 @@ 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:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" -msgstr "" +msgstr "EFB VRAM Kopyalarını Devre Dışı Bırak" #: Source/Core/Core/HotkeyManager.cpp:48 msgid "Disable Emulation Speed Limit" -msgstr "Emülasyon Hızı Limitini Kapat" +msgstr "Öykünme Hızı Limitini Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" -msgstr "" +msgstr "Fastmem'i Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" -msgstr "" +msgstr "Fastmem Alanını Devre Dışı Bırak" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:154 msgid "Disable Fog" msgstr "Sisi Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" -msgstr "" +msgstr "JIT Önbelleğini Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" -msgstr "" +msgstr "Büyük Giriş Noktaları Haritasını Devre Dışı Bırak" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:214 msgid "Disabled" -msgstr "" +msgstr "Devre Dışı" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:278 msgid "" @@ -3633,13 +4058,20 @@ msgid "" "significantly, but some games will break.

If " "unsure, leave this checked." msgstr "" +"Sınırlayıcı kutu öykünmesini devre dışı bırakır.

Bu, GPU " +"performansını önemli ölçüde artırabilir, ancak bazı oyunlar bozulabilir." +"

Emin değilsen, bunu işaretli bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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." msgstr "" +"EFB'nin VRAM kopyasını devre dışı bırakarak RAM'e gidiş-dönüşü zorlar. Tüm " +"yukarı ölçeklendirmeyi engeller.

Emin değilseniz, " +"bunu işaretlemeyin." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 msgid "" @@ -3649,6 +4081,12 @@ msgid "" "Causes few graphical issues.

If unsure, leave this " "checked." msgstr "" +"EFB kopyalanırken bitişik satırların harmanlanmasını devre dışı bırakır. Bu " +"bazı oyunlarda \"titremeyi giderme\" veya \"yumuşatma\" olarak bilinir." +"

Filtrenin devre dışı bırakılmasının performans üzerinde bir etkisi " +"yoktur, ancak daha keskin bir görüntüye neden olabilir. Birkaç grafik " +"sorununa neden olur.

Emin değilsen, bunu işaretli " +"bırak." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -3656,15 +4094,15 @@ msgstr "Disk" #: qtbase/src/gui/kernel/qplatformtheme.cpp:734 msgid "Discard" -msgstr "" +msgstr "Vazgeç" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:182 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" -msgstr "" +msgstr "Ekran Türü" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:240 msgid "Display values in Hex" -msgstr "" +msgstr "Değerleri Hex olarak görüntüle" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:257 msgid "" @@ -3674,71 +4112,78 @@ msgid "" "on reduces latency.

If unsure, leave this unchecked." "" msgstr "" +"XFB kopyalarını, tarama çıkışını beklemek yerine oluşturuldukları anda " +"görüntüler.

Oyun tüm XFB kopyalarının görüntülenmesini beklemiyorsa " +"bazı oyunlarda grafik kusurlarına neden olabilir. Ancak, bu ayarı açmak " +"gecikmeyi azaltır.

Emin değilsen, bunu işaretsiz " +"bırak." #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:28 msgid "Distance" -msgstr "" +msgstr "Mesafe" #. i18n: Refering to emulated wii remote swing movement. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:32 msgid "Distance of travel from neutral position." -msgstr "" +msgstr "Nötr pozisyondan seyahat mesafesi." -#: Source/Core/DolphinQt/Main.cpp:264 +#: Source/Core/DolphinQt/Main.cpp:265 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:1741 +#: Source/Core/DolphinQt/MainWindow.cpp:1744 msgid "Do you want to add \"%1\" to the list of Game Paths?" -msgstr "" +msgstr "\"%1\"yi Oyun Dizinleri listesine eklemek istiyor musun?" -#: Source/Core/DolphinQt/MenuBar.cpp:1258 +#: Source/Core/DolphinQt/MenuBar.cpp:1298 msgid "Do you want to clear the list of symbol names?" -msgstr "" +msgstr "Simge adlarının listesini temizlemek istiyor musun?" #: Source/Core/DolphinQt/GCMemcardManager.cpp:659 #, c-format msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" -msgstr "" +msgstr "%n seçili kayıt dosyasını silmek istiyor musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:955 +#: Source/Core/DolphinQt/MainWindow.cpp:952 msgid "Do you want to stop the current emulation?" -msgstr "Emülasyonu durdurmak istiyor musunuz?" +msgstr "Mevcut öykünmeyi durdurmak istiyor musun?" #: Source/Core/DolphinQt/NANDRepairDialog.cpp:86 msgid "Do you want to try to repair the NAND?" -msgstr "" +msgstr "NAND'ı tamir etmeyi denemek ister misin?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 msgid "Dolby Pro Logic II Decoder" -msgstr "" +msgstr "Dolby Pro Logic II Kod Çözücü" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Dolphin FIFO Log (*.dff)" -msgstr "" +msgstr "Dolphin FIFO Günlüğü (*.dff)" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:344 msgid "Dolphin Game Mod Preset" -msgstr "" +msgstr "Dolphin Oyun Modu Ayarı" -#: Source/Core/DolphinQt/MenuBar.cpp:1554 -#: Source/Core/DolphinQt/MenuBar.cpp:1571 -#: Source/Core/DolphinQt/MenuBar.cpp:1590 +#: Source/Core/DolphinQt/MenuBar.cpp:1599 +#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1635 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Harita Dosyası (*.map)" -#: Source/Core/DolphinQt/MenuBar.cpp:75 +#: Source/Core/DolphinQt/MenuBar.cpp:78 msgid "Dolphin Signature CSV File" -msgstr "" +msgstr "Dolphin İmza CSV Dosyası" -#: Source/Core/DolphinQt/MenuBar.cpp:75 +#: Source/Core/DolphinQt/MenuBar.cpp:78 msgid "Dolphin Signature File" -msgstr "" +msgstr "Dolphin İmza Dosyası" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmleri (*.dtm)" @@ -3752,26 +4197,34 @@ msgid "" "\n" "Do you want to continue anyway?" msgstr "" +"Dolphin, NKit dosyalarını NKit olmayan dosyalara dönüştüremez. Dolphin'de " +"bir NKit dosyasının dönüştürülmesi başka bir NKit dosyasıyla " +"sonuçlanacaktır.\n" +"\n" +"Bir NKit dosyasını NKit olmayan dosyaya dönüştürmek istiyorsan, dosyayı NKit " +"formatına dönüştürürken kullandığın aynı programı kullanabilirsin.\n" +"\n" +"Yine de devam etmek istiyor musun?" #: Source/Core/DolphinQt/GameList/GameList.cpp:281 msgid "" "Dolphin could not find any GameCube/Wii ISOs or WADs.\n" "Double-click here to set a games directory..." msgstr "" -"Dolphin, herhangi bir GameCube/Wii ISO veya WAD bulamadı.\n" -"Oyun dizini ayarlamak için burayı çift tıklayın..." +"Dolphin herhangi bir GameCube/Wii ISO'su veya WAD'i bulamadı.\n" +"Bir oyun dizini ayarlamak için buraya çift tıklayın..." #: Source/Core/DolphinQt/ConvertDialog.cpp:529 msgid "Dolphin failed to complete the requested action." -msgstr "" +msgstr "Dolphin istenen işlemi gerçekleştiremedi." #. i18n: The word "free" in the standard phrase "free and open source" #. is "free" as in "freedom" - it refers to certain properties of the #. software's license, not the software's price. (It is true that Dolphin #. can be downloaded at no cost, but that's not what this message says.) -#: Source/Core/DolphinQt/AboutDialog.cpp:64 +#: Source/Core/DolphinQt/AboutDialog.cpp:74 msgid "Dolphin is a free and open-source GameCube and Wii emulator." -msgstr "" +msgstr "Dolphin ücretsiz ve açık kaynaklı bir GameCube ve Wii emülatörüdür." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Dolphin is too old for traversal server" @@ -3782,50 +4235,54 @@ msgid "" "Dolphin is unable to verify typical TGC files properly, since they are not " "dumps of actual discs." msgstr "" +"Dolphin, tipik TGC dosyalarını düzgün bir şekilde doğrulayamıyor çünkü " +"bunlar gerçek disklerin dökümü değil." #: Source/Core/DiscIO/VolumeVerifier.cpp:1376 msgid "Dolphin is unable to verify unlicensed discs." -msgstr "" +msgstr "Dolphin lisanssız diskleri doğrulayamıyor." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 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:73 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin'in hile sistemi şu anda devre dışı." -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Domain" -msgstr "" +msgstr "Alan" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Don't Update" -msgstr "" +msgstr "Güncelleme Yapma" #: Source/Core/DolphinQt/NKitWarningDialog.cpp:56 msgid "Don't show this again" -msgstr "" +msgstr "Bunu tekrar gösterme" #: Source/Core/DiscIO/CompressedBlob.cpp:374 msgid "Done compressing disc image." -msgstr "Disk imajı sıkıştırılma işlemi tamamlandı." +msgstr "Disk imajı sıkıştırma işlemi tamamlandı." #. i18n: A light on the Shinkansen controller that lights up when the train doors are locked. #. Labeled 戸じめ (in Japanese) on the actual controller. #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:55 msgid "Doors Locked" -msgstr "" +msgstr "Kapılar kilitli" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 msgid "Double" -msgstr "" +msgstr "Double" #: Source/Core/Core/FreeLookManager.cpp:89 #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80 @@ -3837,162 +4294,167 @@ msgstr "" msgid "Down" msgstr "Aşağı" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:92 msgid "Download Codes" -msgstr "" +msgstr "Kodları İndir" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:93 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:94 msgid "Download Codes from the WiiRD Database" -msgstr "" +msgstr "WiiRD Veritabanından Kodları İndir" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" -msgstr "" +msgstr "GameTDB.com'dan Oyun Kapaklarını Grid Modunda Kullanmak İçin İndir" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:384 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:385 msgid "Download complete" -msgstr "" +msgstr "İndirme tamamlandı" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:385 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:386 msgid "Downloaded %1 codes. (added %2)" -msgstr "" +msgstr "%1 kod indirildi. (%2 eklendi)" #. 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 msgid "Drawsome Tablet" -msgstr "" +msgstr "Drawsome Tablet" #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:56 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:73 msgid "Drum Kit" -msgstr "" +msgstr "Drum Kit" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:210 msgid "Dual Core" -msgstr "" +msgstr "Çift Çekirdek" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:212 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:214 msgid "Dual View" -msgstr "" +msgstr "Çift Görünüm" #: Source/Core/Core/HW/EXI/EXI_Device.h:94 msgid "Dummy" msgstr "Kukla" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:260 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:262 msgid "Dump &ARAM" -msgstr "" +msgstr "&ARAM'i Dök" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:261 msgid "Dump &ExRAM" -msgstr "" +msgstr "&ExRAM'i Dök" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:261 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:263 msgid "Dump &FakeVMEM" -msgstr "" +msgstr "&FakeVMEM'i Dök" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:258 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:260 msgid "Dump &MRAM" -msgstr "" +msgstr "&MRAM'i Dök" -#: Source/Core/DolphinQt/MenuBar.cpp:825 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "Dump Audio" msgstr "Sesi Dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Base Textures" -msgstr "" +msgstr "Baz Dokuları Dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump EFB Target" -msgstr "EFB Hedef Dökümü" +msgstr "EFB Hedefini Dök" -#: Source/Core/DolphinQt/MenuBar.cpp:819 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Frames" msgstr "Kareleri Dök" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:380 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 msgid "Dump GameCube BBA traffic" -msgstr "" +msgstr "GameCube BBA trafiğini dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 msgid "Dump Mip Maps" -msgstr "" +msgstr "Mip Map'leri Dök" #: Source/Core/DolphinQt/Settings/PathPane.cpp:202 msgid "Dump Path:" msgstr "Döküm Dizini:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 msgid "Dump XFB Target" -msgstr "" +msgstr "XFB Hedefini Dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 -msgid "Dump at Internal Resolution" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:376 msgid "Dump decrypted SSL reads" -msgstr "" +msgstr "Şifrelenmiş SSL okumalarını dök" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:376 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:377 msgid "Dump decrypted SSL writes" -msgstr "" +msgstr "Şifrelenmiş SSL yazılarını dök" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:370 msgid "Dump options" -msgstr "" +msgstr "Döküm Ayarları" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:379 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:380 msgid "Dump peer certificates" -msgstr "" +msgstr "Eş sertifikalarını dök" #. i18n: CA stands for certificate authority -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:379 msgid "Dump root CA certificates" -msgstr "" +msgstr "Kök CA sertifikalarını dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:307 +#: 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." msgstr "" +"Diğer bayraklara göre kodu çözülmüş oyun dokularını User/Dump/Textures/<" +"game_id>/ dizinine döker.

Emin değilsen, bunu " +"işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:329 +#: 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 "" +"EFB kopyalarının içeriğini User/Dump/Textures/ dizinine döker." +"

Emin değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" +"XFB kopyalarının içeriğini User/Dump/Textures/ dizinine döker." +"

Emin değilsen, bunu işaretsiz bırak." #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 msgid "Duration of Turbo Button Press (frames):" -msgstr "" +msgstr "Turbo Düğmesine Basma Süresi (kare):" #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 msgid "Duration of Turbo Button Release (frames):" -msgstr "" +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:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Flemenkçe" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "&Çıkış" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" -msgstr "" +msgstr "EFB kopyası %1" #: Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp:216 msgid "" @@ -4001,6 +4463,10 @@ msgid "" "reboot is probably required at this point to get Windows to see the new " "driver." msgstr "" +"HATA: Dolphin'in bu sürümü, en az {0}.{1} sürümü olan bir TAP-Win32 sürücüsü " +"gerektirir. -- Dolphin dağıtımını yakın zamanda yükselttiysen, Windows'un " +"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 msgid "" @@ -4009,6 +4475,10 @@ msgid "" "Suitable for competitive games where fairness and minimal latency are most " "important." msgstr "" +"Her oyuncu, oyuna kendi girişlerini eşit arabellek boyutuyla gönderir. Bu " +"ayar ev sahibi tarafından yapılandırılır.\n" +"Adaletin ve minimum gecikmenin çok önemli olduğu rekabetçi oyunlar için " +"uygundur." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 msgid "Early Memory Updates" @@ -4016,27 +4486,27 @@ msgstr "Erken Hafıza Güncellemeleri" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" -msgstr "" +msgstr "Dünya" #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "East Asia" -msgstr "" +msgstr "Doğu Asya" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:40 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:60 msgid "Edit Breakpoint" -msgstr "" +msgstr "Breakpoint'i Düzenle" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." -msgstr "" +msgstr "Düzenle..." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:200 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:201 msgid "Editor" -msgstr "" +msgstr "Editör" #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:79 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:160 @@ -4045,69 +4515,71 @@ msgstr "Efekt" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" -msgstr "" +msgstr "Efektif" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" -msgstr "" +msgstr "Efektif önceliği" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" -msgstr "" +msgstr "EiB" #: Source/Core/Core/HotkeyManager.cpp:29 msgid "Eject Disc" -msgstr "" +msgstr "Diski Çıkar" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" -msgstr "" +msgstr "Element" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:45 msgid "Embedded Frame Buffer (EFB)" -msgstr "Yerleşik Çerçeve Arabellği (EFB)" +msgstr "Gömülü Kare Arabelleği (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "Boş" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" -msgstr "Emülasyon işlemi zaten çalışıyor" +msgstr "Öykünme iş parçacığı zaten çalışıyor" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:91 msgid "Emulate Disc Speed" -msgstr "" +msgstr "Disk Hızını Öykün" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" -msgstr "" +msgstr "Infinity Base'i Öykün" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" -msgstr "" +msgstr "Skylander Portal'ı Öykün" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:112 msgid "Emulate the Wii's Bluetooth adapter" -msgstr "Wii'nin Bluetooth adaptörünü taklit et" +msgstr "Wii'nin Bluetooth adaptörünü öykün" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:41 msgid "" "Emulate the disc speed of real hardware. Disabling can cause instability. " "Defaults to True" 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:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" -msgstr "" +msgstr "Öykünen USB Cihazları" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 msgid "Emulated Wii Remote" -msgstr "Taklit Wii Remote" +msgstr "Öykünen Wii Remote" #: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:277 msgid "" @@ -4115,56 +4587,47 @@ msgid "" "Current: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" +"Öykünen bellek boyutu uyuşmazlığı!\n" +"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/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" +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:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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 "" +msgstr "Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 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 "" +msgstr "Başarım Rozetlerini Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 msgid "Enable Achievements" -msgstr "" +msgstr "Başarımları Etkinleştir" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" -msgstr "Ses Geciktirmeyi Etkinleştir" +msgstr "Ses Esnetmeyi Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" -msgstr "Hilelere İzin Ver" +msgstr "Hileleri Etkinleştir" #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 msgid "Enable Controller Inpu&t" -msgstr "" +msgstr "Denetleyici Giri&şini Etkinleştir" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:162 msgid "Enable Custom RTC" @@ -4172,39 +4635,39 @@ msgstr "Özel RTC'yi Etkinleştir" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 msgid "Enable Debugging UI" -msgstr "" +msgstr "Hata Ayıklama Arayüzünü Etkinleştir" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" -msgstr "Çift Çekirdeğe İzin Ver" +msgstr "Çift Çekirdeği Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" -msgstr "Çift Çekirdeğe İzin Ver (Hızı Artırır)" +msgstr "Çift Çekirdeği Etkinleştir (Hızı Artırır)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" -msgstr "" +msgstr "Öykünen CPU Saat Hızını Geçersiz Kılmayı Etkinleştir" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:125 msgid "Enable Emulated Memory Size Override" -msgstr "" +msgstr "Öykünen Bellek Boyutu Geçersiz Kılmayı Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 msgid "Enable Encore Achievements" -msgstr "" +msgstr "Encore Başarımlarını Etkinleştir" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:89 msgid "Enable FPRF" -msgstr "FPRF'yi Etkinleştir" +msgstr "FPRF'i Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" -msgstr "" +msgstr "Grafik Modlarını Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "Zorlayıcı Modu Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 msgid "" @@ -4223,64 +4686,83 @@ msgid "" "
Be aware that turning Hardcore Mode off while a game is running requires " "the game to be closed before re-enabling." msgstr "" +"RetroAchievements'da Zorlayıcı Modunu etkinleştirir.

Zorlayıcı Modu, " +"orijinal donanımda oyun oynamaya mümkün olduğunca yakın bir deneyim " +"sağlamayı amaçlamaktadır. RetroAchievements sıralamaları öncelikli olarak " +"Zorlayıcı puanlarına yöneliktir (Kolay Mod puanları takip edilir ancak o " +"kadar vurgulanmaz) ve lider tabloları Zorlayıcı Modunun açık olmasını " +"gerektirir.

Bu deneyimi sağlamak için, öykünücü oyuncularına, konsol " +"oyuncularına göre avantaj sağladıkları için aşağıdaki özellikler devre dışı " +"bırakılacaktır:
- Yükleme durumları
-- Kaydetme durumlarına izin " +"verilir
- %100'den düşük öykünme hızı
-- Kare ilerlemesi devre " +"dışı
-- Turbo'ya izin verilir
- Hileler
- Bellek yamaları
-- " +"Dosya yamalarına izin verilir
- Hata ayıklama arayüzü
- Serbest " +"Bakış

Bu, oyun oynanırken etkinleştirilemez.
Etkinleştirmeden önce mevcut oyununuzu kapatın.
Bir " +"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 +msgid "Enable JIT Block Profiling" +msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" -msgstr "" +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'ya İzin Ver" +msgstr "MMU'yu Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 msgid "Enable Progress Notifications" -msgstr "" +msgstr "İlerleme Bildirimlerini Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" -msgstr "Progresif Taramaya İzin Ver" +msgstr "Progresif Taramayı Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 msgid "Enable RetroAchievements.org Integration" -msgstr "" +msgstr "RetroAchievements.org Entegrasyonunu Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 msgid "Enable Rich Presence" -msgstr "" +msgstr "Rich Presence'ı Etkinleştir" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" -msgstr "" +msgstr "Rumble'ı Etkinleştir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" -msgstr "Ekran Koruyucusuna İzin Ver" +msgstr "Ekran Koruyucusunu Etkinleştir" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:115 msgid "Enable Speaker Data" -msgstr "Hoparlör verisine izin ver" +msgstr "Hoparlör Verisini Etkinleştir" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 msgid "Enable Unofficial Achievements" -msgstr "" +msgstr "Resmi Olmayan Başarımları Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" -msgstr "İstatistik Raporlamayı Etkinleştir" +msgstr "Kullanım İstatistikleri Raporlamasını Etkinleştir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" -msgstr "" +msgstr "WiiLink Aracılığıyla WiiConnect24'u Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" -msgstr "Wireframe modu" +msgstr "Wireframe'i Etkinleştir" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:83 msgid "Enable Write-Back Cache (slow)" -msgstr "" +msgstr "Geri Yazma Önbelleğini Etkinleştir (yavaş)" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "" @@ -4288,12 +4770,17 @@ msgid "" "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 "" @@ -4302,12 +4789,20 @@ msgid "" "website. If this is disabled, the website will only report what game is " "being played.

This has no bearing on Discord rich presence." msgstr "" +"RetroAchievements 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 " "problems in some games. (ON = Compatible, OFF = Unlocked)" msgstr "" +"Öykünen disk hızını etkinleştirir. Bunu devre dışı bırakmak bazı oyunlarda " +"çökmelere ve diğer sorunlara neden olabilir. (AÇIK = Uyumlu, KAPALI = " +"Limitsiz)" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "" @@ -4316,6 +4811,10 @@ msgid "" "account to use. Dolphin does not save your password locally and uses an API " "token to maintain login." msgstr "" +"Başarımlar kazanmak ve liderlik tablolarında yarışmak için RetroAchievements " +"ile entegrasyonu etkinleştirir.

Kullanmak için bir RetroAchievements " +"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 msgid "" @@ -4323,6 +4822,9 @@ msgid "" "message whenever the player makes progress on an achievement that tracks an " "accumulated value, such as 60 out of 120 stars." msgstr "" +"Başarımlarda ilerleme bildirimlerini etkinleştirir.

Oyuncu, örneğin " +"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 msgid "" @@ -4331,10 +4833,14 @@ msgid "" "will be notified if they meet the unlock conditions again, useful for custom " "speedrun criteria or simply for fun." 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 "" +msgstr "Başarımların kilidini açmayı etkinleştir.
" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 msgid "" @@ -4343,21 +4849,25 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun." 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:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." msgstr "" -"Dolby Pro Logic II emülasyonunu etkinleştirerek 5.1 çevresel ses alınmasını " -"sağlar. Yalnızca bazı oyunlarda çalışır." +"Dolby Pro Logic II öykünmesini 5.1 çevresel ses düzeni kullanarak " +"etkinleştirir. Yalnızca belirli arka uçlar destekler." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:102 msgid "" "Enables Floating Point Result Flag calculation, needed for a few games. (ON " "= Compatible, OFF = Fast)" msgstr "" -"Birkaç oyun için gerekli olan Kayar Nokta Sonuç Bayrağı hesaplamasını " +"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:603 @@ -4370,6 +4880,13 @@ msgid "" "Texture Decoding.

If unsure, leave this unchecked." msgstr "" +"Bazı oyunların özel mesafe bazlı efektler için kullandığı rastgele " +"mipmap'lerin algılanmasını sağlar.

Çok düşük çözünürlüklü mipmap " +"kullanan oyunlarda olduğu gibi, yüksek dahili çözünürlükte bulanık dokulara " +"neden olan yanlış pozitifler olabilir. Bunun devre dışı bırakılması, sık sık " +"yeni doku yüklenen oyunlarda takılmayı da azaltabilir. Bu özellik GPU Doku " +"Çözücüsü ile uyumlu değildir.

Emin değilsen, bunu " +"işaretsiz bırak." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:85 msgid "" @@ -4378,21 +4895,34 @@ msgid "" "absolutely needed.

If unsure, leave this unchecked." "" msgstr "" +"CPU geri yazma önbelleğinin öykünmesini etkinleştirir.
Etkinleştirmek " +"performansı önemli ölçüde düşürür.
Kesinlikle gerekmedikçe bu özellik " +"devre dışı kalmalıdır.

Emin değilsen, bunu " +"işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " "more than two CPU cores. Currently, this is limited to the Vulkan backend." "

If unsure, leave this checked." msgstr "" +"Desteklendiği durumlarda arka uçlarda çok iş parçacıklı komut gönderimini " +"etkinleştirir. Bu seçeneğin etkinleştirilmesi, ikiden fazla CPU çekirdeği " +"olan sistemlerde performans artışı sağlayabilir. Şu anda bu özellik Vulkan " +"arka ucu ile sınırlıdır.

Emin değilsen, bunu " +"işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " "this unchecked." msgstr "" +"Öykünen yazılım tarafından destekleniyorsa progresif taramayı etkinleştirir. " +"Çoğu oyun bununla ilgili herhangi bir sorun yaşamaz." +"

Emin değilsen, bunu işaretsiz bırak." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 msgid "" @@ -4403,10 +4933,17 @@ msgid "" "

Note that games still render in SDR internally." "

If unsure, leave this unchecked." msgstr "" +"Grafik arka ucunuz ve monitörünüz tarafından destekleniyorsa scRGB HDR " +"çıkışını etkinleştirir. Tam ekran gerekebilir.

Bu, işlem sonrası " +"gölgelendiricilere doğruluk için daha fazla alan sağlar, \"AutoHDR\" işlem " +"sonrası gölgelendiricilerin çalışmasına izin verir ve PAL ve NTSC-J renk " +"alanlarının tam olarak görüntülenmesine olanak tanır.

Oyunların hâlâ " +"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 "" +msgstr "Öykünme hızına uyması için sesin esnetilmesini sağlar." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:269 msgid "" @@ -4416,14 +4953,19 @@ msgid "" "Detection.

If unsure, leave this unchecked." msgstr "" +"CPU yerine GPU kullanarak doku çözmeyi etkinleştirir.

Bu, bazı " +"senaryolarda veya CPU'nun darboğaz olduğu sistemlerde performans artışı " +"sağlayabilir.

Bu seçenek Rastgele Mipmap Algılama ile uyumlu değildir." +"

Emin değilsen, bunu işaretsiz bırak." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100 msgid "" "Enables the Memory Management Unit, needed for some games. (ON = Compatible, " "OFF = Fast)" msgstr "" -"Hafıza Yönetim Ünitesini etkinleştirir. Bazı oyunlarda gereklidir. (Açık = " -"Uyumlu, Kapalı = Hızlı)" +"Bazı oyunlar için gerekli olan Bellek Yönetim Birimini etkinleştirir. (AÇIK " +"= Uyumlu, KAPALI = Hızlı)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:71 msgid "" @@ -4431,33 +4973,48 @@ msgid "" "OFF = Fast)

If unsure, leave this unchecked." msgstr "" +"Bazı oyunlar için gerekli olan Bellek Yönetim Birimini (MMU) etkinleştirir. " +"(AÇIK = Uyumlu, KAPALI = Hızlı)

Emin değilsen, bunu " +"işaretsiz bırak." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " "such as the Forecast and Nintendo Channels\n" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +"WiiConnect24 kanalları için WiiLink hizmetini etkinleştirir.\n" +"WiiLink, Forecast ve Nintendo Kanalları gibi durdurulan WiiConnect24 " +"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:302 +#: 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 " "enables debug symbols for the compiled shaders.

If " "unsure, leave this unchecked." msgstr "" +"Video arka ucu tarafından yapılan API çağrılarının doğrulanmasını sağlar. " +"Grafik sorunlarının ayıklanmasına yardımcı olabilir. Vulkan ve D3D arka " +"uçlarında bu, derlenen gölgelendiriciler için hata ayıklama sembollerini de " +"etkinleştirir.

Emin değilsen, bunu işaretsiz bırak." +"" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." msgstr "" +"FFV1 codec bileşenini kullanarak kare dökümlerini kodlar." +"

Emin değilsen, bunu işaretsiz bırak." #. i18n: Character encoding #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:43 msgid "Encoding" -msgstr "" +msgstr "Kodlama" #: Source/Core/DolphinQt/GCMemcardManager.cpp:616 msgid "" @@ -4466,49 +5023,59 @@ msgid "" "\n" "Aborting import." msgstr "" +"Kayıt dosyaları açılırken aşağıdaki hatalarla karşılaşıldı:\n" +"%1\n" +"\n" +"İçe aktarım iptal ediliyor." #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" -msgstr "" +msgstr "Enet Başlatılamadı" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "İngilizce" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:65 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61 msgid "Enhancements" -msgstr "Geliştirmeler" +msgstr "İyileştirmeler" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" -msgstr "" +msgstr "XLink Kai istemcisini çalıştıran cihazın IP adresini girin:" #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:59 msgid "Enter USB device ID" -msgstr "USB aygıt ID'sini girin" +msgstr "USB cihaz ID'sini girin" #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" -msgstr "" +msgstr "Gözlemek için adres girin:" #. 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 "Yeni Geniş Bant Adaptörü MAC adresini girin:" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:301 msgid "Enter password" -msgstr "" +msgstr "Şifreyi gir" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" +msgstr "Kullanılacak DNS sunucusunu girin:" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "RSO modül adresini girin:" @@ -4517,8 +5084,8 @@ msgstr "RSO modül adresini girin:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4529,45 +5096,51 @@ msgstr "RSO modül adresini girin:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4577,450 +5150,433 @@ msgstr "RSO modül adresini girin:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "Hata" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:456 msgid "Error Log" -msgstr "" +msgstr "Hata Günlüğü" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:75 msgid "Error Opening Adapter: %1" -msgstr "" +msgstr "Adaptör Açılırken Hata Oluştu: %1" #: Source/Core/Core/NetPlayServer.cpp:1503 msgid "Error collecting save data!" -msgstr "" +msgstr "Kayıt verileri toplanırken hata oluştu!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" -msgstr "" +msgstr "Değer dönüştürülürken hata oluştu" #: Source/Core/DolphinQt/Translation.cpp:323 msgid "Error loading selected language. Falling back to system default." -msgstr "Seçili dili yüklerken hata. Sistem varsayılanlarına geri dönülüyor." +msgstr "" +"Seçili dil yüklenirken hata oluştu. Sistem varsayılanına geri dönülüyor." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:210 msgid "Error obtaining session list: %1" -msgstr "" +msgstr "Oturum listesi alınırken hata oluştu: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" -msgstr "" +msgstr "Bazı doku paketleri yüklenirken bir hata oluştu" #: Source/Core/Core/NetPlayClient.cpp:1852 msgid "Error processing codes." -msgstr "" +msgstr "Kodlar işlenirken hata oluştu." #: Source/Core/Core/NetPlayClient.cpp:1824 msgid "Error processing data." -msgstr "" +msgstr "Veri işlenirken hata oluştu." #: Source/Core/Core/NetPlayCommon.cpp:60 msgid "Error reading file: {0}" -msgstr "" +msgstr "Dosya okunurken hata oluştu: {0}" #: Source/Core/Core/NetPlayServer.cpp:1539 msgid "Error synchronizing cheat codes!" -msgstr "" +msgstr "Hile kodları eşitlenirken hata oluştu!" #: Source/Core/Core/NetPlayServer.cpp:1525 msgid "Error synchronizing save data!" -msgstr "" +msgstr "Kayıt verileri eşitlenirken hata oluştu!" #: Source/Core/Core/NetPlayCommon.cpp:214 msgid "Error writing file: {0}" -msgstr "" +msgstr "Dosya yazılırken hata oluştu: {0}" #: Source/Core/Common/ChunkFile.h:310 msgid "" "Error: After \"{0}\", found {1} ({2:#x}) instead of save marker {3} ({4:" "#x}). Aborting savestate load..." msgstr "" +"Hata: \"{0}\"'dan sonra, kayıt işareti {3} ({4:#x}) yerine {1} ({2:#x}) " +"bulundu. Kayıt durumu yüklemesi iptal ediliyor..." #: Source/Core/Core/HW/GBACore.cpp:192 msgid "Error: GBA{0} failed to create core" -msgstr "" +msgstr "Hata: GBA{0} çekirdek oluşturmada başarısız oldu" #: Source/Core/Core/HW/GBACore.cpp:347 msgid "Error: GBA{0} failed to load the BIOS in {1}" -msgstr "" +msgstr "Hata: GBA{0} {1} için BIOS yüklemede başarısız oldu" #: Source/Core/Core/HW/GBACore.cpp:212 msgid "Error: GBA{0} failed to load the ROM in {1}" -msgstr "" +msgstr "Hata: GBA{0} {1} için ROM yüklemede başarısız oldu" #: Source/Core/Core/HW/GBACore.cpp:366 msgid "Error: GBA{0} failed to load the save in {1}" -msgstr "" +msgstr "Hata: GBA{0} {1} için kayıt yüklemede başarısız oldu" #: Source/Core/Core/HW/GBACore.cpp:341 msgid "Error: GBA{0} failed to open the BIOS in {1}" -msgstr "" +msgstr "Hata: GBA{0} {1} için BIOS açmada başarısız oldu" #: Source/Core/Core/HW/GBACore.cpp:182 msgid "Error: GBA{0} failed to open the ROM in {1}" -msgstr "" +msgstr "Hata: GBA{0} {1} için ROM açmada başarısız oldu" #: Source/Core/Core/HW/GBACore.cpp:360 msgid "Error: GBA{0} failed to open the save in {1}" -msgstr "" +msgstr "Hata: GBA{0} {1} için kayıt açmada başarısız oldu" #: Source/Core/Core/HW/SI/SI_Device.cpp:201 msgid "Error: This build does not support emulated GBA controllers" -msgstr "" +msgstr "Hata: Bu derleme öykünen GBA denetleyicilerini desteklemiyor" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" +"Hata: Shift JIS yazı tiplerine erişilmeye çalışılıyor ancak bunlar yüklü " +"değil. Oyunlar yazı tiplerini doğru göstermeyebilir veya çökebilir." -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." msgstr "" +"Hata: Windows-1252 yazı tiplerine erişilmeye çalışılıyor ancak bunlar yüklü " +"değil. Oyunlar yazı tiplerini doğru göstermeyebilir veya çökebilir." #: Source/Core/DiscIO/VolumeVerifier.cpp:1332 msgid "Errors were found in {0} blocks in the {1} partition." -msgstr "" +msgstr "{1} bölümündeki {0} blokta hatalar bulundu." #: Source/Core/DiscIO/VolumeVerifier.cpp:1343 msgid "Errors were found in {0} unused blocks in the {1} partition." -msgstr "" +msgstr "{1} bölümündeki {0} kullanılmayan blokta hatalar bulundu." #. i18n: This button name refers to a gameplay element in DJ Hero #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:64 msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Avrupa" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" -msgstr "" +msgstr "Ayrıcalıklı Uber Gölgelendiriciler" #: Source/Core/Core/HotkeyManager.cpp:36 msgid "Exit" msgstr "Çıkış" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." -msgstr "" +msgstr "+ veya kapatma parantezi bekleniyor." #: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 msgid "Expected arguments: " -msgstr "" +msgstr "Beklenen argümanlar: " -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." -msgstr "" +msgstr "Kapatma parantezi bekleniyor." #: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:761 msgid "Expected comma." -msgstr "" +msgstr "Virgül bekleniyor." #: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:693 msgid "Expected end of expression." -msgstr "" +msgstr "İfadenin sonu bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." -msgstr "" +msgstr "Giriş ismi bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." -msgstr "" +msgstr "Açık parantez bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." -msgstr "" +msgstr "İfadenin başlangıcı bekleniyor." #: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 msgid "Expected variable name." -msgstr "" +msgstr "Değişken ismi bekleniyor." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" -msgstr "" +msgstr "Deneysel" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" -msgstr "Tüm Wii Kayıtlarını Ver" +msgstr "Tüm Wii Kayıtlarını Dışa Aktar" #: Source/Core/DolphinQt/GCMemcardManager.cpp:423 #: Source/Core/DolphinQt/GCMemcardManager.cpp:448 #: Source/Core/DolphinQt/GCMemcardManager.cpp:493 #: Source/Core/DolphinQt/GCMemcardManager.cpp:500 msgid "Export Failed" -msgstr "" +msgstr "Dışa Aktarma Başarısız Oldu" #: Source/Core/Core/HotkeyManager.cpp:57 msgid "Export Recording" -msgstr "Çekimi Ver" +msgstr "Kaydı Dışa Aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." -msgstr "Çekimi Ver..." +msgstr "Kaydı Dışa Aktar..." #: Source/Core/DolphinQt/GCMemcardManager.cpp:438 msgid "Export Save File" -msgstr "" +msgstr "Kayıt Dosyasını Dışa Aktar" #: Source/Core/DolphinQt/GCMemcardManager.cpp:455 msgid "Export Save Files" -msgstr "" +msgstr "Kayıt Dosyalarını Dışa Aktar" #: Source/Core/DolphinQt/GameList/GameList.cpp:474 msgid "Export Wii Save" -msgstr "" +msgstr "Wii Kaydını Dışa Aktar" #: Source/Core/DolphinQt/GameList/GameList.cpp:390 msgid "Export Wii Saves" -msgstr "" +msgstr "Wii Kayıtlarını Dışa Aktar" #: Source/Core/DolphinQt/GCMemcardManager.cpp:118 msgid "Export as .&gcs..." -msgstr "" +msgstr ".&gcs Olarak Dışarı Aktar..." #: Source/Core/DolphinQt/GCMemcardManager.cpp:119 msgid "Export as .&sav..." -msgstr "" +msgstr ".&sav Olarak Dışarı Aktar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" -msgstr "" +msgstr "%n kayıt dışa aktarıldı" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" -msgstr "Uzantı" +msgstr "Eklenti" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.h:121 msgid "Extension Motion Input" -msgstr "" +msgstr "Eklenti Hareket Girişi" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.h:122 msgid "Extension Motion Simulation" -msgstr "" +msgstr "Eklenti Hareket Simülasyonu" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "External" -msgstr "" +msgstr "Harici" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:87 msgid "External Frame Buffer (XFB)" -msgstr "Harici Çerçeve Arabelleği (XFB)" +msgstr "Harici Kare Arabelleği (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" -msgstr "" +msgstr "NAND'den Sertifikaları Çıkar" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." -msgstr "" +msgstr "Tüm Diski Çıkar..." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." -msgstr "" +msgstr "Tüm Bölümü Çıkar..." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." -msgstr "Dosyayı Genişlet..." +msgstr "Dosyayı Çıkar..." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." -msgstr "" +msgstr "Dosyaları Çıkar..." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." -msgstr "" +msgstr "Sistem Verilerini Çıkar..." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." -msgstr "" +msgstr "Tüm Dosyalar Çıkarılıyor..." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." -msgstr "" +msgstr "Dizin Çıkarılıyor..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" -msgstr "" +msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO Oynatıcısı" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:150 msgid "Failed loading XML." -msgstr "" +msgstr "XML yüklenemedi." #: Source/Core/DolphinQt/GCMemcardManager.cpp:348 msgid "" "Failed opening memory card:\n" "%1" msgstr "" +"Bellek kartı açılamadı:\n" +"%1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Failed to add this session to the NetPlay index: %1" -msgstr "" +msgstr "Bu oturum NetPlay dizinine eklenemedi: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" -msgstr "" +msgstr "İmza dosyasına eklenemedi: '%1'" #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:669 msgid "Failed to claim interface for BT passthrough: {0}" -msgstr "" +msgstr "BT geçişi için arayüz talep edilemedi: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" -msgstr "" +msgstr "Skylander silinemedi!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" -msgstr "" +msgstr "Redump.org'a bağlanılamadı." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 msgid "Failed to connect to server: %1" -msgstr "" +msgstr "Sunucuya bağlanılamadı: %1" #: Source/Core/VideoBackends/D3D/D3DMain.cpp:154 #: Source/Core/VideoBackends/D3D12/VideoBackend.cpp:129 msgid "Failed to create D3D swap chain" -msgstr "" +msgstr "D3D takas zinciri oluşturulamadı" #: Source/Core/VideoBackends/D3D12/VideoBackend.cpp:111 msgid "Failed to create D3D12 context" -msgstr "" +msgstr "D3D12 bağlamı oluşturulamadı" #: Source/Core/VideoBackends/D3D12/VideoBackend.cpp:120 msgid "Failed to create D3D12 global resources" -msgstr "" +msgstr "D3D12 küresel kaynakları oluşturulamadı" #: Source/Core/VideoBackends/D3D/D3DBase.cpp:60 msgid "Failed to create DXGI factory" -msgstr "" +msgstr "DXGI factory oluşturulamadı" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" -msgstr "" +msgstr "Infinity dosyası oluşturulamadı" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" -msgstr "" +msgstr "Skylander dosyası oluşturulamadı!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" +"NetPlay GBA{0} kayıt dosyası silinemedi. Yazma izinlerinizi doğrulayın." #: Source/Core/Core/NetPlayClient.cpp:1082 msgid "Failed to delete NetPlay memory card. Verify your write permissions." -msgstr "" +msgstr "NetPlay hafıza kartı silinemedi. Yazma izinlerinizi doğrulayın." #: Source/Core/DolphinQt/GameList/GameList.cpp:859 msgid "Failed to delete the selected file." -msgstr "" +msgstr "Seçilen dosya silinemedi." #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:662 msgid "Failed to detach kernel driver for BT passthrough: {0}" -msgstr "" +msgstr "BT geçişi için çekirdek sürücüsü ayrılamadı: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." -msgstr "Kod indirme başarısız." +msgstr "Kodlar indirilemedi." -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" -msgstr "" +msgstr "1 dökümü yapılamadı: Dosya açılamıyor" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" -msgstr "" +msgstr "1 dökümü yapılamadı: Dosyaya yazılamadı" #: Source/Core/DolphinQt/GCMemcardManager.cpp:489 msgctxt "" msgid "Failed to export %n out of %1 save file(s)." -msgstr "" +msgstr "%1 kayıt dosyasından %n tanesi dışa aktarılamadı." #: Source/Core/DolphinQt/GameList/GameList.cpp:589 msgid "Failed to export the following save files:" -msgstr "" +msgstr "Aşağıdaki kayıt dosyaları dışa aktarılamadı:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" -msgstr "" +msgstr "NAND'den sertifikalar çıkarılamadı" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." -msgstr "" +msgstr "Dosya çıkarılamadı." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." -msgstr "" +msgstr "Sistem verileri çıkarılamadı." #: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:655 msgid "" @@ -5028,40 +5584,45 @@ msgid "" "{0}\n" " will be overwritten" msgstr "" +"Yeni dosya adı bulunamadı.\n" +"{0}\n" +"üzerine yazılacaktır" #: Source/Core/VideoBackends/D3DCommon/D3DCommon.cpp:55 msgid "Failed to find one or more D3D symbols" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" +msgstr "Bir veya daha fazla D3D sembolü bulunamadı" #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." -msgstr "" +msgstr "\"%1\" içe aktarılamadı." -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 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:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." msgstr "" +"Kayıt dosyası içe aktarılamadı. Verilen dosya bozuk veya geçersiz bir Wii " +"kaydı olabilir." -#: Source/Core/DolphinQt/MenuBar.cpp:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 "" +"Kayıt dosyası içe aktarılamadı. NAND'ınız bozulmuş veya bir şey içindeki " +"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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" -msgstr "" +msgstr "Çekirdek başlatılamadı" #: Source/Core/VideoBackends/D3D/D3DBase.cpp:117 msgid "" @@ -5069,68 +5630,85 @@ msgid "" "Make sure your video card supports at least D3D 10.0\n" "{0}" msgstr "" +"Direct3D başlatılamadı.\n" +"Ekran kartınızın en az D3D 10.0 desteklediğinden emin olun\n" +"{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" -msgstr "" +msgstr "Görüntü işleyici sınıfları başlatılamadı" #: Source/Core/DolphinQt/ResourcePackManager.cpp:205 msgid "Failed to install pack: %1" -msgstr "" +msgstr "Paket kurulamadı: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." -msgstr "" +msgstr "Bu başlık NAND'a kurulamadı." -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" +"Port %1 dinlemesi başarısız oldu. Birden fazla NetPlay sunucusu çalışıyor " +"olabilir mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" -msgstr "" +msgstr "%1 için RSO modülü yüklenemedi" #: Source/Core/VideoBackends/D3D/D3DBase.cpp:46 msgid "Failed to load d3d11.dll" -msgstr "" +msgstr "d3d11.dll yüklenemedi" #: Source/Core/VideoBackends/D3DCommon/D3DCommon.cpp:38 msgid "Failed to load dxgi.dll" -msgstr "" +msgstr "dxgi.dll yüklenemedi" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" -msgstr "" +msgstr "Harita dosyası yüklenemedi '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" -msgstr "" +msgstr "Skylander dosyası yüklenemedi!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." -msgstr "" +msgstr "Yürütülebilir dosya belleğe yüklenemedi." #: Source/Core/VideoBackends/D3DCommon/D3DCommon.cpp:44 msgid "" "Failed to load {0}. If you are using Windows 7, try installing the KB4019990 " "update package." msgstr "" +"{0} yüklenemedi. Windows 7 kullanıyorsan KB4019990 güncelleştirme paketini " +"yüklemeyi dene." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" +msgstr "Skylander modifiye edilemedi!" + +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +msgid "Failed to open \"{0}\" for writing." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 +#: Source/Core/DolphinQt/MainWindow.cpp:1722 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 msgid "Failed to open '%1'" msgstr "" @@ -5138,6 +5716,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5164,28 +5746,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5205,7 +5791,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5227,31 +5813,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5285,31 +5874,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5360,7 +5949,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5368,11 +5957,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5385,7 +5974,7 @@ msgstr "Hızlı" msgid "Fast Depth Calculation" msgstr "Hızlı Derinlik Hesaplaması" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5396,11 +5985,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5408,9 +5997,9 @@ msgstr "" msgid "File Details" msgstr "Dosya Ayrıntıları" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "Dosya Biçimi" @@ -5422,20 +6011,20 @@ msgstr "Dosya Biçimi:" msgid "File Info" msgstr "Dosya Bilgisi" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "Dosya Adı" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "Dosya Yolu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "Dosya Boyutu" @@ -5443,7 +6032,7 @@ msgstr "Dosya Boyutu" msgid "File Size:" msgstr "Dosya Boyutu:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "Dosya kod içermemektedir." @@ -5477,15 +6066,15 @@ msgstr "Dosya sistemi" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "Bul &Sonraki" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "Bul &Önceki" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "Kalibrasyonu Bitir" @@ -5497,7 +6086,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5513,31 +6102,32 @@ msgstr "Sağlamayı Düzelt" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bayraklar" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5547,13 +6137,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5561,7 +6151,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" @@ -5593,11 +6183,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5634,17 +6224,17 @@ msgstr "İleri" msgid "Forward port (UPnP)" msgstr "İletme portu (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5665,7 +6255,7 @@ 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:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5673,7 +6263,7 @@ msgstr "" msgid "Frame Range" msgstr "Çerçeve Aralığı" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5697,7 +6287,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5728,7 +6318,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Fransızca" @@ -5752,7 +6342,7 @@ msgstr "Buradan" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "Tam Ekran" @@ -5784,7 +6374,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5900,26 +6490,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "Oyun" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Kartuşu (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5947,8 +6537,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "Oyun ID'si" @@ -6008,11 +6598,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -6020,11 +6610,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube Kontrolcüleri" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6037,11 +6627,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6069,7 +6659,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Kodları" @@ -6079,35 +6669,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Genel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "Genel ve Seçenekler" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "Yeni bir İstatistik Kimliği Oluşturun" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Almanca" @@ -6119,18 +6709,18 @@ msgstr "Almanya" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6143,8 +6733,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafikler" @@ -6183,7 +6773,7 @@ msgstr "Yeşil Sol" msgid "Green Right" msgstr "Yeşil Sağ" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "Sütun Görünümü" @@ -6192,7 +6782,7 @@ msgstr "Sütun Görünümü" msgid "Guitar" msgstr "Gitar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6220,36 +6810,35 @@ msgstr "" msgid "Hacks" msgstr "Hileler" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "Yardım" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6262,7 +6851,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Gizle" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6278,12 +6871,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6292,14 +6885,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6316,7 +6903,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6340,16 +6927,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "Kısayol Tuşu Ayarları" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "Kısayol Tuşları" @@ -6358,7 +6945,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:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6372,16 +6959,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "Risklerin farkındayım ve devam etmek istiyorum" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6416,7 +7003,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "Kızılötesi Hassasiyeti:" @@ -6449,11 +7036,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6499,11 +7086,15 @@ msgstr "" msgid "Ignore" msgstr "Yoksay" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "Birim Değişimini Yoksay" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6527,7 +7118,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6536,7 +7127,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6551,15 +7142,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "Wii Kayıtlarını Al..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6570,15 +7161,6 @@ msgstr "" msgid "In-Game?" msgstr "Oyunda?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6587,27 +7169,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6652,15 +7234,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6680,8 +7263,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "Bilgilendirme" @@ -6695,10 +7278,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "Giriş" @@ -6712,20 +7295,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "Yerleştir &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD Kart Ekle" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6739,7 +7328,7 @@ msgstr "" msgid "Install Update" msgstr "Güncellemeyi Kur" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "WAD Kur..." @@ -6747,11 +7336,13 @@ msgstr "WAD Kur..." msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6760,7 +7351,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6769,7 +7360,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6786,19 +7377,19 @@ msgstr "Intensity" msgid "Interface" msgstr "Arayüz" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6811,19 +7402,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:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6838,7 +7429,7 @@ msgstr "Dahili Çözünürlük" msgid "Internal Resolution:" msgstr "Dahili Çözünürlük:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6846,11 +7437,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Yorumlayıcı (çok yavaş)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6862,7 +7453,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Geçersiz Karma Kod" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6871,11 +7462,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6904,7 +7495,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6916,19 +7507,19 @@ msgstr "" msgid "Invalid recording file" msgstr "Hatalı çekim dosyası" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "Geçersiz arama parametreleri (nesne seçilmedi)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 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:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "Geçersiz arama dizesi (sadece düz dize uzunluğu destekleniyor)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6938,7 +7529,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "İtalyanca" @@ -6947,63 +7538,63 @@ msgid "Italy" msgstr "İtalya" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -7015,27 +7606,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "Japonya" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonca" @@ -7046,13 +7641,13 @@ msgstr "Japonca" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7066,7 +7661,7 @@ msgstr "Pencereyi Önde Tut" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7087,7 +7682,7 @@ msgstr "" msgid "Keys" msgstr "Tuşlar" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7095,12 +7690,12 @@ msgstr "" msgid "Kick Player" msgstr "Oyuncuyu At" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "Kore" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korece" @@ -7111,7 +7706,7 @@ msgstr "Korece" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7121,7 +7716,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7129,35 +7724,37 @@ msgstr "" msgid "Label" msgstr "Etiket" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7227,13 +7824,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "Lisans" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7247,7 +7844,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7255,11 +7852,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "Liste Görünümü" @@ -7270,29 +7867,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Özel Dokuları Yükle" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "GameCube Ana Menüsü'nü Yükle" @@ -7313,7 +7917,7 @@ msgstr "Yükleme Yolu:" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7402,19 +8006,19 @@ msgstr "8. Durumu Yükle" msgid "Load State Slot 9" msgstr "9. Durumu Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "Dosyadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "Seçili Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "Wii Sistem Menüsünü Yükle %1" @@ -7426,16 +8030,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Seçili Yuvadan Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7443,18 +8047,18 @@ msgstr "" msgid "Load..." msgstr "Yükle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7474,7 +8078,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Günlük" @@ -7486,7 +8090,7 @@ msgstr "Günlük Yapılandırması" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7494,7 +8098,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Render Süresini Dosyaya Yaz" @@ -7510,7 +8114,7 @@ msgstr "Geçmiş Çıkışı" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7525,16 +8129,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7542,7 +8146,7 @@ msgstr "MD5:" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7552,7 +8156,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7560,37 +8164,37 @@ msgstr "" msgid "Main Stick" msgstr "Ana Çubuk" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7607,12 +8211,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7624,7 +8228,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7641,16 +8245,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: 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." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "Hafıza" @@ -7662,7 +8266,7 @@ msgstr "" msgid "Memory Card" msgstr "Hafıza Kartı" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7674,7 +8278,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7690,7 +8294,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7698,29 +8302,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "Mikrofon" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Çeşitli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Çeşitli Ayarlar" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7740,36 +8348,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Değiştirici" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7781,16 +8394,16 @@ msgstr "Monoskopik Gölgeler" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "Motor" @@ -7827,6 +8440,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7836,10 +8453,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7848,8 +8465,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -7858,7 +8475,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7875,25 +8492,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7902,7 +8519,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7912,12 +8529,12 @@ msgstr "İsim:" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:69 msgid "Native (640x528)" -msgstr "Orijinal (640x528)" +msgstr "Yerel (640x528)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:399 #: Source/Core/DolphinQt/GCMemcardManager.cpp:406 msgid "Native GCI File" -msgstr "" +msgstr "Yerel GCI Dosyası" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 msgid "NetPlay" @@ -7959,7 +8576,7 @@ msgstr "" msgid "Network" msgstr "Ağ" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7989,7 +8606,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7997,7 +8614,7 @@ msgstr "" msgid "New Tag..." msgstr "Yeni Etiket..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "Yeni kimlik oluşturuldu." @@ -8005,7 +8622,7 @@ msgstr "Yeni kimlik oluşturuldu." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "Yeni etiket" @@ -8014,7 +8631,7 @@ msgstr "Yeni etiket" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -8028,7 +8645,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "Kullanıcı Adı:" @@ -8042,7 +8659,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8056,7 +8673,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "Eşleşme Yok" @@ -8064,16 +8681,16 @@ msgstr "Eşleşme Yok" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "Açıklama yok" @@ -8089,15 +8706,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8106,7 +8723,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8118,10 +8735,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8133,11 +8746,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8146,18 +8759,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "Hiçbiri" @@ -8217,7 +8830,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8252,10 +8865,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "Nesne Aralığı" @@ -8269,7 +8930,7 @@ msgstr "" msgid "Off" msgstr "Kapalı" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8281,14 +8942,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "Çevrimiçi &Belgeler" @@ -8296,13 +8972,13 @@ msgstr "Çevrimiçi &Belgeler" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8310,7 +8986,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "Aç" @@ -8319,11 +8995,11 @@ msgstr "Aç" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Dizin Aç..." @@ -8344,7 +9020,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8377,11 +9053,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "Seçenekler" @@ -8394,13 +9070,36 @@ msgstr "Turuncu" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "Diğer" @@ -8413,7 +9112,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8433,16 +9132,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8451,15 +9150,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8467,11 +9166,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC Boyutu" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8484,11 +9183,11 @@ msgstr "Kol" msgid "Pads" msgstr "Kollar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8539,11 +9238,15 @@ msgstr "Yol:" msgid "Paths" msgstr "Yollar" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "Duraklat" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "Filmin Sonunda Duraklat" @@ -8582,7 +9285,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Piksel Aydınlatması" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" @@ -8590,33 +9293,33 @@ msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8632,12 +9335,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "Platform" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "Oynat" @@ -8649,7 +9352,7 @@ msgstr "" msgid "Play Recording" msgstr "Çekimi Oynat" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8661,27 +9364,27 @@ msgstr "Oynatma Seçenekleri" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8690,7 +9393,8 @@ msgstr "" msgid "Players" msgstr "Oyuncular" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8702,23 +9406,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8727,7 +9435,7 @@ msgstr "" msgid "Port:" msgstr "Port:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8748,11 +9456,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8760,11 +9468,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8789,7 +9497,7 @@ msgstr "Sync düğmesine basın" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8804,7 +9512,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8815,7 +9523,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8827,7 +9535,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8861,8 +9569,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8870,11 +9578,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8894,14 +9602,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "Soru" @@ -8922,19 +9630,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8947,11 +9655,11 @@ msgstr "" msgid "Range" msgstr "Aralık" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8963,7 +9671,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8975,14 +9687,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "Oku ve yaz" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "Salt okunur" @@ -9003,10 +9715,15 @@ msgstr "Gerçek Balance Board" msgid "Real Wii Remote" msgstr "Gerçek Wii Remote" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9020,7 +9737,7 @@ msgstr "Çek" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9055,7 +9772,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9063,14 +9780,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "Yenile" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9078,11 +9795,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9091,8 +9808,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Bölge" @@ -9121,7 +9838,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "Kaldır" @@ -9138,7 +9855,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9149,8 +9866,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9158,11 +9875,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: 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:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9178,23 +9895,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "Sıfırla" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9222,6 +9938,10 @@ 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 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9238,7 +9958,7 @@ msgstr "Yeniden Başlatma Gerekli" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9255,7 +9975,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9314,7 +10034,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9332,26 +10052,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "Gümbürtü" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9367,19 +10113,19 @@ msgstr "Rusya" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD Kart Yolu:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9387,7 +10133,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9400,7 +10146,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9408,11 +10154,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9422,11 +10168,11 @@ msgstr "" msgid "START" msgstr "START TUŞU" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "&Durumu Kaydet" @@ -9439,7 +10185,6 @@ msgstr "Güvenli" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9449,9 +10194,17 @@ msgstr "Kaydet" msgid "Save All" msgstr "Tümünü Kaydet" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9460,24 +10213,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9489,13 +10242,13 @@ msgstr "En Eski Durumu kaydet" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Durumu Kaydet" @@ -9539,23 +10292,23 @@ msgstr "8. Duruma Kaydet" msgid "Save State Slot 9" msgstr "9. Duruma Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "Durumu Seçili Slot'a Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9563,7 +10316,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9575,26 +10328,26 @@ msgstr "" msgid "Save as..." msgstr "Farklı kaydet..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9602,7 +10355,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9616,7 +10369,7 @@ msgstr "" "Kaydedilmiş Wii Remote eşleştirmeleri, yalnızca bir Wii oyunu açıkken " "sıfırlanabilir." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9628,26 +10381,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "Boyutlandırılmış EFB Kopyası" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Ekran Görüntüsü" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "Ara" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "Adres Ara" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "Şu Anki Nesneyi Ara" @@ -9655,17 +10408,17 @@ msgstr "Şu Anki Nesneyi Ara" msgid "Search Subfolders" msgstr "Alt Klasörleri Ara" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "Bir talimat ara" @@ -9673,11 +10426,11 @@ msgstr "Bir talimat ara" msgid "Search games..." msgstr "Oyun ara..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9697,7 +10450,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9705,28 +10458,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9746,15 +10507,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9762,7 +10523,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "Durum Yuvası Seç" @@ -9821,15 +10582,15 @@ msgstr "Bir Dizin Seç" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "Bir Dosya Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9837,11 +10598,11 @@ msgstr "" msgid "Select a Game" msgstr "Bir Oyun Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: 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:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9849,19 +10610,19 @@ msgstr "" msgid "Select a game" msgstr "Bir oyun seç" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9869,12 +10630,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "Kayıt dosyasını seçin" @@ -9890,7 +10651,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "Seçilmiş kontrolcü profili yok" @@ -9902,26 +10663,45 @@ msgstr "Seçilmiş kontrolcü profili yok" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9933,18 +10713,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9958,7 +10749,7 @@ msgstr "" msgid "Send" msgstr "Gönder" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensör Çubuğu Konumu:" @@ -9982,16 +10773,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "&Değeri Ayarla" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "PC'yi Ayarla" @@ -10007,23 +10794,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10033,17 +10820,17 @@ msgstr "" "olarak ayarlar.\n" "Tüm oyunlarda çalışmayabilir." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Wii sistem dilini ayarlar." -#: 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10055,20 +10842,20 @@ msgstr "" msgid "Settings" msgstr "Ayarlar" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: setting.txt dosyası oluşturulamıyor" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Gölgelendirici Derlemesi" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "Salla" @@ -10085,16 +10872,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "&Günlüğü Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "Araç Çubuğunu Gös&ter" @@ -10102,53 +10889,53 @@ 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:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "Avusturalya'yı Göster" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "Discord'da Mevcut Oyunu Göster" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "ELF/DOL'u Göster" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS'yi Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "Kare Sayacını Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "Fransızları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "GameCube'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "Almanları göster" @@ -10160,23 +10947,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "Görüntü Girişini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "İtalyanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "Korelileri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "Takılma Sayacını Göster" @@ -10184,19 +10971,19 @@ msgstr "Takılma Sayacını Göster" msgid "Show Language:" msgstr "Dili Göster:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "Geçmiş &Yapılandırmasını Göster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: 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:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay Ping'ini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "Hollanda'yı Göster" @@ -10204,32 +10991,36 @@ msgstr "Hollanda'yı Göster" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC'yi Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "Platformları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "Bölgeleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "Rusya'yı Göster" @@ -10237,72 +11028,72 @@ msgstr "Rusya'yı Göster" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "İspanya'yı Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "İstatistikleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "Sistem Saatini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "Tayvanlıları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "Amerikanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "Bilinmeyenleri Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "WAD'ları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "Wii'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "Dünyayı Göster" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10310,65 +11101,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10378,34 +11175,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10414,7 +11211,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Basitleştirilmiş Çince" @@ -10431,7 +11228,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." @@ -10439,11 +11236,11 @@ 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:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Atla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10478,24 +11275,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10503,10 +11300,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10516,7 +11309,7 @@ msgstr "Kaydırma Çubuğu" msgid "Slot A" msgstr "Slot A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "Yuva A:" @@ -10524,7 +11317,7 @@ msgstr "Yuva A:" msgid "Slot B" msgstr "Slot B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "Yuva B:" @@ -10532,7 +11325,7 @@ msgstr "Yuva B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10556,12 +11349,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "Alfabetik Sırala" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Ses:" @@ -10575,27 +11368,27 @@ msgstr "İspanya" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "İspanyolca" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Hoparlör Ses Seviyesi:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10616,15 +11409,15 @@ msgstr "Hız" #. 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10637,25 +11430,28 @@ msgstr "Standart Denetleyici" msgid "Start" msgstr "Başlat" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "&Netplay'i Başlat..." -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "Çekimi Başlat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10671,10 +11467,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10684,7 +11480,7 @@ msgstr "Direksiyon" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10696,13 +11492,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10718,7 +11514,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10727,7 +11523,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10757,18 +11553,14 @@ msgstr "Çubuk" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Durdur" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10801,7 +11593,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Pencereye Göre Ayarla" @@ -10836,8 +11628,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10864,7 +11656,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10876,12 +11668,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10892,11 +11684,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "Destek" @@ -10904,16 +11696,16 @@ msgstr "Destek" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10923,12 +11715,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10939,7 +11731,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "Hareket" @@ -10953,34 +11745,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "Sembol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "Semboller" @@ -11006,7 +11785,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11025,24 +11804,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Sistem Dili:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS Araçları" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "Etiketler" @@ -11052,7 +11831,7 @@ msgstr "Etiketler" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11060,15 +11839,15 @@ msgstr "" msgid "Taiwan" msgstr "Tayvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "Ekran Görüntüsü Al" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11076,7 +11855,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11084,6 +11863,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11093,7 +11878,7 @@ msgstr "Doku Önbelleği" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11105,7 +11890,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Doku Biçimi Kaplaması" @@ -11128,7 +11913,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11142,13 +11927,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11159,11 +11944,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11196,6 +11981,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11213,7 +12005,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "Takılacak olan disk bulunamadı." @@ -11233,17 +12025,17 @@ msgstr "Sanal Wii konsolu zaten güncel." #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "Girilen PID geçersiz." #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "Girilen VID geçersiz." @@ -11251,7 +12043,7 @@ msgstr "Girilen VID geçersiz." msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11265,7 +12057,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11281,7 +12073,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11292,7 +12084,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11349,9 +12141,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11365,11 +12157,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11383,8 +12175,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11411,12 +12203,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "Ortaya çıkan şifresi çözülmüş AR kodu herhangi bir satır içermiyor." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11450,7 +12242,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11465,11 +12257,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11477,15 +12269,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11510,7 +12302,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11536,14 +12328,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "Geri alacak hiçbirşey yok!" @@ -11583,19 +12380,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Bu USB aygıtı zaten beyaz listeye eklenmiş." -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "Bu WAD önyüklenebilir değil." -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11714,6 +12511,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11726,11 +12527,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11743,7 +12544,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11751,7 +12552,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11771,6 +12572,13 @@ 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 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11785,11 +12593,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11797,12 +12605,12 @@ msgstr "" msgid "Threshold" msgstr "Eşik" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "Eğim" @@ -11816,10 +12624,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "Başlık" @@ -11833,7 +12641,7 @@ msgstr "Buraya" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "&Tam Ekran Moduna Geç" @@ -11858,7 +12666,7 @@ msgid "Toggle Aspect Ratio" msgstr "En-boy Oranını Aç/Kapat" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "Kesim Noktasını Aç/Kapat" @@ -11910,15 +12718,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Üst" @@ -11926,9 +12738,8 @@ msgstr "Üst" msgid "Top-and-Bottom" msgstr "Üst-ve-Alt" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11965,28 +12776,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Geleneksel Çince" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -12023,26 +12834,26 @@ msgid "Triggers" msgstr "Tetikler" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "Tür" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -12054,7 +12865,7 @@ msgstr "AMERİKA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12066,20 +12877,20 @@ msgstr "" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12087,7 +12898,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12096,7 +12907,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12108,11 +12919,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12132,7 +12943,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12155,15 +12966,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "Durum Yüklemeyi Geri Al" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "Durum Kaydetmeyi Geri Al" @@ -12183,11 +12994,11 @@ 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:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "ABD" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12198,12 +13009,13 @@ msgstr "ABD" msgid "Unknown" msgstr "Bilinmeyen" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12227,11 +13039,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12239,7 +13051,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12247,7 +13059,7 @@ msgstr "" msgid "Unknown disc" msgstr "Bilinmeyen disk" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12267,16 +13079,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "Sınırsız" @@ -12309,22 +13123,22 @@ msgid "Unpacking" msgstr "Açma" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12386,23 +13200,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "İstatistik Raporlama Ayarları" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12414,15 +13228,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 Modunu Kullan (EuRGB60)" @@ -12430,7 +13244,7 @@ msgstr "PAL60 Modunu Kullan (EuRGB60)" msgid "Use Panic Handlers" msgstr "Önemli Hataları Bildir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12449,43 +13263,18 @@ msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" "İki göz için tek bir derinlik aralığı kullanır. Bazı oyunlar için gereklidir." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "Kullanıcı Yapılandırması" @@ -12517,21 +13306,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12539,31 +13328,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "Gereçler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "Dikey Eşitleme" @@ -12571,11 +13360,11 @@ msgstr "Dikey Eşitleme" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "Değer" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12583,17 +13372,17 @@ msgstr "" msgid "Value:" msgstr "Değer:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12609,16 +13398,16 @@ msgstr "Ayrıntı seviyesi" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12632,7 +13421,7 @@ msgid "Vertex Rounding" msgstr "Vertex Yuvarlaması" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12646,12 +13435,12 @@ msgid "Video" msgstr "Video" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "&Kodu görüntüle" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "&Hafızayı görüntüle" @@ -12659,14 +13448,14 @@ msgstr "&Hafızayı görüntüle" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Ses" @@ -12686,33 +13475,33 @@ msgstr "Sesi Yükselt" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD dosyaları (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" "WAD kurulumu başarısız oldu: Başlığın içe aktarılma işlemi tamamlanamadı." -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" "WAD kurulumu başarısız oldu: Seçilen dosya geçerli bir WAD dosyası değil." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12751,12 +13540,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12767,7 +13556,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12789,7 +13578,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "Uyarı" @@ -12861,7 +13650,7 @@ msgstr "İzle" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12878,7 +13667,7 @@ msgstr "" msgid "Whammy" msgstr "Darbe" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12886,7 +13675,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12894,7 +13683,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Beyaz Listeye Alınmış USB Geçiş Aygıtları" @@ -12918,7 +13707,7 @@ msgstr "Wii Menüsü" msgid "Wii NAND Root:" msgstr "Wii NAND Kök Dizini:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii Remote" @@ -12926,7 +13715,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12944,7 +13733,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote Ayarları" @@ -12964,7 +13753,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii ve Wii Remote" @@ -12972,11 +13761,11 @@ msgstr "Wii ve Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12986,11 +13775,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "Sözcük Kaydırma" @@ -13004,10 +13805,14 @@ msgstr "Dünya" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "Sadece yazma" @@ -13049,6 +13854,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13057,11 +13870,11 @@ msgstr "" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF kaydı " -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13096,14 +13909,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13204,7 +14017,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13222,15 +14035,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Sıfır 3 kodu desteklenmemektedir" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13238,11 +14055,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13261,21 +14078,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13283,31 +14100,35 @@ msgstr "" msgid "fake-completion" msgstr "sahte-tamamlama" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13317,7 +14138,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13327,13 +14148,13 @@ msgstr "" msgid "none" msgstr "hiçbiri" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13350,16 +14171,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13374,11 +14199,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13413,7 +14238,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13422,8 +14247,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index fe9692a30708..649b2c63d23d 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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/" @@ -79,8 +79,8 @@ msgstr "$ 用户变量 " #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -101,19 +101,20 @@ msgstr "" "%1\n" "想参加你的派对。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "%1 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "%1 %2 %3" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -134,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:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "%1 (库)" @@ -176,6 +177,11 @@ msgstr "%1 MB (内存1)" msgid "%1 MB (MEM2)" msgstr "%1 MB (内存2)" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 在你的系统上不支持此特性。" @@ -202,7 +208,7 @@ msgstr "%1 已加入" msgid "%1 has left" msgstr "%1 已离开" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 msgid "" "%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " "hardcore)" @@ -210,7 +216,7 @@ msgstr "" "%1 已解锁 %2/%3 项成就 (包括 %4 项硬核成就) 折合 %5/%6 成就点数 (包括 %7 硬核" "点数)" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 已解锁 %2/%3 项成就,折合 %4/%5 成就点数" @@ -226,12 +232,12 @@ msgstr "%1 控制中" msgid "%1 is playing %2" msgstr "%1 正在玩 %2" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 毫秒" @@ -248,7 +254,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%" @@ -256,26 +262,26 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 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:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" msgstr "%1 的值已使用" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" @@ -313,20 +319,20 @@ msgstr "%1x 原生 (%2x%3) 适合 %4" msgid "%1x SSAA" msgstr "%1x SSAA" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "%n 个地址无法在模拟内存中访问。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "%n 个地址保留。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -336,23 +342,23 @@ msgstr "%n 个地址已移除。" msgid "& And" msgstr "& 与" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "&1x" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "&2x" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "&3x" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "关于(&A)" @@ -360,12 +366,12 @@ msgstr "关于(&A)" msgid "&Add Memory Breakpoint" msgstr "添加内存断点(&A)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "添加新代码...(&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "添加函数(&A)" @@ -373,27 +379,27 @@ msgstr "添加函数(&A)" msgid "&Add..." msgstr "添加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "汇编器(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "音频设置(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "自动更新(&A):" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "无边框窗口(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "断点(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "错误跟踪器(&B)" @@ -401,15 +407,15 @@ msgstr "错误跟踪器(&B)" msgid "&Cancel" msgstr "取消(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "金手指管理器(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "检查更新...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "清除符号(&C)" @@ -417,19 +423,24 @@ msgstr "清除符号(&C)" msgid "&Clone..." msgstr "克隆...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "代码(&C)" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "连接(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "控制器设置(&C)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "复制地址(&C)" @@ -437,7 +448,7 @@ msgstr "复制地址(&C)" msgid "&Create..." msgstr "创建...(&C)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "删除(&D)" @@ -454,9 +465,9 @@ msgstr "删除监视(&D)" msgid "&Delete Watches" msgstr "删除监视(&D)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "编辑代码...(&E)" @@ -464,23 +475,23 @@ msgstr "编辑代码...(&E)" msgid "&Edit..." msgstr "编辑...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "弹出光盘(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "模拟(&E)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "导出(&E)" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "导出游戏存档...(&E)" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "导出状态...(&E)" @@ -488,55 +499,53 @@ msgstr "导出状态...(&E)" msgid "&Export as .gci..." msgstr "导出为 .gci...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "文件(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "字体...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "逐帧播放(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "自由视点设置(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "生成符号来自(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "GitHub 资源库(&G)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "转到函数起始位置(&G)" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "图形设置(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "帮助(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "热键设置(&H)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "导入(&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "导入游戏存档...(&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "导入状态...(&I)" @@ -544,19 +553,19 @@ msgstr "导入状态...(&I)" msgid "&Import..." msgstr "导入...(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "Infinity 底座(&I)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "插入 blr (&I)" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "帧间混合(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "即时编译器(&J)" @@ -564,15 +573,19 @@ msgstr "即时编译器(&J)" msgid "&Language:" msgstr "语言(&L):" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "载入状态(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "载入符号映射(&L)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "将文件加载到当前地址(&L)" @@ -582,23 +595,23 @@ msgstr "将文件加载到当前地址(&L)" msgid "&Lock Watches" msgstr "锁定监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "锁定部件位置(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "内存(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "影片(&M)" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "静音(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "网络(&N)" @@ -607,23 +620,23 @@ msgid "&No" msgstr "否(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "打开...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "选项(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "修补 HLE 功能函数(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "暂停游戏(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "开始游戏(&P)" @@ -631,15 +644,15 @@ msgstr "开始游戏(&P)" msgid "&Properties" msgstr "属性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "只读模式(&R)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "刷新列表(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "寄存器(&R)" @@ -647,41 +660,45 @@ msgstr "寄存器(&R)" msgid "&Remove" msgstr "移除(&R)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "移除代码(&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "重命名符号(&R)" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "重置游戏(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "资源包管理器(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "保存符号映射(&S)" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "扫描 e-Reader 卡...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "Skylanders 传送门(&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "速度限制(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "停止游戏(&S)" @@ -689,15 +706,19 @@ msgstr "停止游戏(&S)" msgid "&Theme:" msgstr "主题(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "线程(&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "工具(&T)" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "卸载 ROM (&U)" @@ -707,17 +728,17 @@ msgstr "卸载 ROM (&U)" msgid "&Unlock Watches" msgstr "解锁监视(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "监视(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "网站(&W)" @@ -729,11 +750,11 @@ msgstr "百科(&W)" msgid "&Yes" msgstr "是(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "找不到 '%1',未生成符号名" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "找不到 '%1',改为扫描常用函数" @@ -749,7 +770,7 @@ msgstr "(浅色)" msgid "(System)" msgstr "(系统)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "(主机)" @@ -757,7 +778,7 @@ msgstr "(主机)" msgid "(off)" msgstr "(关)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "(ppc)" @@ -777,15 +798,15 @@ msgstr ", 逗号" msgid "- Subtract" msgstr "- 减" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "--未知--" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -796,12 +817,12 @@ msgstr "..." msgid "/ Divide" msgstr "/ 除" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "0" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "1 GiB" @@ -813,7 +834,7 @@ msgstr "1080p" msgid "128 Mbit (2043 blocks)" msgstr "128 Mbit (2043 区块)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "128 MiB" @@ -821,11 +842,11 @@ msgstr "128 MiB" msgid "1440p" msgstr "1440p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "16 字节" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "16 GiB (SDHC)" @@ -837,17 +858,17 @@ msgstr "16 Mbit (251 区块)" msgid "16-bit" msgstr "16位" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "16 位有符号整数" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "16 位无符号整数" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -859,11 +880,11 @@ msgstr "16x 各向异性" msgid "1x" msgstr "1x" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "2 GiB" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "256 MiB" @@ -875,7 +896,7 @@ msgstr "2x" msgid "2x Anisotropic" msgstr "2x 各向异性" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "32 GiB (SDHC)" @@ -887,25 +908,25 @@ msgstr "32 Mbit (507 区块)" msgid "32-bit" msgstr "32位" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "32 位浮点数" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "32 位有符号整数" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "3D" @@ -919,11 +940,11 @@ msgstr "3D 深度" msgid "3x" msgstr "3x" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "4 字节" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "4 GiB (SDHC)" @@ -931,7 +952,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 区块)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -947,7 +968,7 @@ msgstr "4x" msgid "4x Anisotropic" msgstr "4x 各向异性" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "512 MiB" @@ -959,22 +980,22 @@ msgstr "5K" msgid "64 Mbit (1019 blocks)" msgstr "64 Mbit (1019 区块)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "64 MiB" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "64 位浮点数" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "64 位有符号整数" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "64 位无符号整数" @@ -982,11 +1003,11 @@ msgstr "64 位无符号整数" msgid "720p" msgstr "720p" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "8 字节" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "8 GiB (SDHC)" @@ -998,13 +1019,13 @@ msgstr "8 Mbit (123 区块)" msgid "8-bit" msgstr "8位" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "8 位有符号整数" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "8 位无符号整数" @@ -1020,7 +1041,7 @@ msgstr "8x 各向异性" msgid "< Less-than" msgstr "< 小于" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "" @@ -1032,11 +1053,11 @@ msgstr "<系统语言>" msgid "Disabled in Hardcore Mode." msgstr "在硬核模式下禁用。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1069,12 +1090,12 @@ msgstr "警告无效的基地址,默认 msgid "> Greater-than" msgstr "> 大于" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "已经有一个联机会话正在进行!" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1090,7 +1111,7 @@ msgstr "" "\n" "安装此 WAD 替换是不可逆转的。是否继续?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "光盘已可插入。" @@ -1100,11 +1121,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "一些使颜色更准确的功能,使其与 Wii 和 GC 游戏的色彩空间相匹配。" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "载入保存状态必须指定要启动的游戏" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1124,6 +1145,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "只有在 Wii 游戏运行时同步才能触发。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1155,7 +1180,7 @@ msgstr "" "Wii 遥控器的联机还在实验阶段,可能不会正常工作。\n" "使用需自担风险。\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR 代码" @@ -1164,8 +1189,8 @@ msgstr "AR 代码" msgid "AR Codes" msgstr "AR 代码" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "ASCII" @@ -1179,7 +1204,7 @@ msgid "About Dolphin" msgstr "关于 Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "加速度计" @@ -1198,7 +1223,7 @@ msgid "Achievement Settings" msgstr "成就设置" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "成就" @@ -1296,19 +1321,19 @@ msgstr "激活联机聊天" msgid "Active" msgstr "激活" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "正在使用的 Infinity 角色:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "活动线程队列" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "活动线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "适配器" @@ -1316,7 +1341,7 @@ msgstr "适配器" msgid "Adapter Detected" msgstr "检测到适配器" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "适配器:" @@ -1326,7 +1351,7 @@ msgstr "适配器:" msgid "Add" msgstr "添加" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "添加断点(&B)" @@ -1355,51 +1380,48 @@ msgstr "添加内存断点" msgid "Add memory &breakpoint" msgstr "添加内存断点(&B)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "添加到监视(&W)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "添加..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "地址" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "地址空间" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "按 CPU 状态划分的地址空间" @@ -1478,12 +1500,12 @@ msgid "Advance Game Port" msgstr "GBA 游戏端口" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "高级" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "高级设置" @@ -1498,31 +1520,17 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" -"影响游戏画面缩放到窗口分辨率的方式。
性能主要取决于每个方式使用的样本数。" -"
与 SSAA 相比,如果输出窗口
分辨率不是模拟分辨率的倍数,重采样将非常有" -"用。

默认 - [最快]
使用未进行伽玛校正的 GPU 内部双线性采样" -"器。
如果强制启用伽玛校正,则可能忽略此设置。

双线性 - [4 样" -"本数]
经过伽玛校正后像素间的线性插值。

双三次插值 - [16 样本" -"数]
经过伽玛校正后像素间的三次插值。
在接近目的分辨率时缩放效果良好。" -"如 1080p 和 1440p。
其他方式:
B样条曲线:模糊,但能避免伪影" -"
Mitchell-Netravali 过滤:在模糊与伪影间取得良好平衡
Catmull-" -"Rom 插值:画面更锐利,但可能导致伪影

锐利双线性 - [1-4 样本" -"数]
与近邻取样类似,保持清晰锐利的画面,
但进行了一些混合以避免闪烁。" -"
适用于低分辨率下的 2D 游戏。

区域取样 - [最高 324 样本" -"数]
按像素所占面积的百分比对像素进行加权。经伽玛校正。
适用于缩放倍数" -"在 2 倍以上的场合。

如无法确定,请选择“默认”。" #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1530,16 +1538,16 @@ msgstr "非洲" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "风" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "与数据类型长度对齐" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "全部" @@ -1553,11 +1561,11 @@ msgid "All Double" msgstr "所有双精度" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1565,7 +1573,7 @@ msgid "All Files" msgstr "所有文件" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "所有文件 (*)" @@ -1574,7 +1582,7 @@ msgstr "所有文件 (*)" msgid "All Float" msgstr "所有浮点数" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "所有 GC/Wii 文件" @@ -1583,8 +1591,8 @@ msgstr "所有 GC/Wii 文件" msgid "All Hexadecimal" msgstr "全十六进制" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "所有状态存档 (*.sav *.s##);; 所有文件 (*)" @@ -1596,7 +1604,7 @@ msgstr "全部有符号整数" msgid "All Unsigned Integer" msgstr "全部无符号整数" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "所有文件 (*)" @@ -1608,15 +1616,15 @@ msgstr "所有玩家代码已同步。" msgid "All players' saves synchronized." msgstr "所有玩家存档已同步。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "允许不匹配的区域设置" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "允许使用情况统计报告" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "允许写入 SD 卡" @@ -1646,7 +1654,7 @@ msgstr "总是" msgid "Always Connected" msgstr "始终连接" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "总在最前(&T)" @@ -1684,15 +1692,15 @@ msgstr "抗锯齿:" msgid "Any Region" msgstr "任意区域" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "附加签名到" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "附加到现有签名文件...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "应用签名文件...(&Y)" @@ -1712,7 +1720,7 @@ msgstr "应用载入器时间:" msgid "Apply" msgstr "应用" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "应用签名文件" @@ -1744,12 +1752,16 @@ msgstr "确定?" msgid "Area Sampling" msgstr "区域取样" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "长宽比" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "长宽比:" @@ -1757,7 +1769,7 @@ msgstr "长宽比:" msgid "Assemble" msgstr "汇编" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "汇编指令" @@ -1765,7 +1777,7 @@ msgstr "汇编指令" msgid "Assembler" msgstr "汇编器" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "汇编文件" @@ -1782,7 +1794,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "至少有两个选定的存档文件具有相同的内部文件名。" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "附带 MotionPlus" @@ -1790,11 +1802,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 "音频伸缩设置" @@ -1806,12 +1818,12 @@ msgstr "澳大利亚" msgid "Author" msgstr "作者" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "作者" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自动" @@ -1819,11 +1831,7 @@ msgstr "自动" msgid "Auto (Multiple of 640x528)" msgstr "自动(640x528 的倍数)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "自动保存" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "自动更新设置" @@ -1838,7 +1846,7 @@ msgstr "" "\n" "请选择特定的内部分辨率。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "自动调整窗口大小" @@ -1846,15 +1854,15 @@ msgstr "自动调整窗口大小" msgid "Auto-Hide" msgstr "自动隐藏" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "自动检测 RSO 模块?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "自动与文件夹同步" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1862,18 +1870,18 @@ msgstr "" "自动将窗口大小调整为内部分辨率。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "自动更新当前数值" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "副内存" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "B" @@ -1881,7 +1889,7 @@ msgstr "B" msgid "BAT incorrect. Dolphin will now exit" msgstr "BAT 错误,模拟器即将退出" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " @@ -1890,31 +1898,35 @@ msgstr "" "BBA MAC 地址 {0} 对于 XLink Kai 无效。必须使用有效的任天堂 GameCube MAC 地" "址。 生成一个以 00:09:bf 或 00:17:ab 开头的新 MAC 地址。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "BP 寄存器" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "后链" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "后端" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "后端:" @@ -1930,13 +1942,13 @@ msgstr "后台输入" msgid "Backward" msgstr "后" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "给定值错误" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "地址格式不正确。" @@ -1944,20 +1956,20 @@ msgstr "地址格式不正确。" msgid "Bad dump" msgstr "错误的转储" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "提交的偏移量不正确。" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "值格式不正确。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "标图" @@ -1977,15 +1989,15 @@ msgstr "摇把" msgid "Base Address" msgstr "基地址" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "基本优先级" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "基本" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "基本设置" @@ -1993,15 +2005,15 @@ msgstr "基本设置" msgid "Bass" msgstr "低音" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "使用批处理模式必须指定要启动的游戏" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "电池" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "体验版(每月一次)" @@ -2025,33 +2037,33 @@ msgstr "双三次插值:Mitchell-Netravali 过滤" msgid "Bilinear" msgstr "双线性" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "二进制 SSL" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "二进制 SSL (读取)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "二进制 SSL (写入)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "比特率 (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -"创建空白角色失败于:\n" -"%1 ,请使用其他字符重试" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "区块大小" @@ -2060,7 +2072,7 @@ msgstr "区块大小" msgid "Block Size:" msgstr "区块大小:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "屏蔽" @@ -2088,32 +2100,143 @@ msgid "" msgstr "" "蓝牙直通模式已启用,但 Dolphin 构建没有加入 libusb 驱动。无法使用直通模式。" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "引导后暂停" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 备份文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 密钥文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "无边框全屏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "底部" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "分支: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "分支" @@ -2151,11 +2274,11 @@ msgstr "宽带适配器 (XLink Kai)" msgid "Broadband Adapter (tapserver)" msgstr "宽带适配器(tap 服务器)" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "宽带适配器 DNS 设置" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "宽带适配器错误" @@ -2165,11 +2288,11 @@ msgstr "宽带适配器错误" msgid "Broadband Adapter MAC Address" msgstr "宽带适配器 MAC 地址" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "浏览联机会话...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "缓冲区大小:" @@ -2203,7 +2326,7 @@ msgstr "按键" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2219,7 +2342,7 @@ msgstr "按键" msgid "Buttons" msgstr "按键" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "作者:%1" @@ -2229,11 +2352,11 @@ msgstr "作者:%1" msgid "C Stick" msgstr "C 摇杆" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "创建签名文件...(&R)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "CP 寄存器" @@ -2245,7 +2368,7 @@ msgstr "CPU 模拟引擎:" msgid "CPU Options" msgstr "CPU 选项" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "CRC32:" @@ -2253,7 +2376,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "缓存解释器(较慢)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." @@ -2263,7 +2386,7 @@ msgstr "" "正可能的卡顿。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "计算" @@ -2278,11 +2401,11 @@ msgstr "" "三角面更不明显。

很少造成速度降低或图像问题。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "校准" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "校准" @@ -2290,19 +2413,19 @@ msgstr "校准" msgid "Calibration Period" msgstr "校准周期" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "调用位于 %1 大小为 %2 的显示列表" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "调用方" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "调用" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "调用堆栈" @@ -2311,64 +2434,76 @@ msgid "Camera 1" msgstr "镜头 1" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "镜头视野(影响指向的灵敏度)。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "只能为虚拟内存中的数值生成 AR 代码。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "现在还不能进行修改!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "无法对此奖杯编辑反派角色!" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "不能按照连接句柄 {0:02x} 找到 Wii 遥控器" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "取消" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "取消校准" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "无法单步执行 FIFO,使用帧步进代替。" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "无法启动此 WAD,因为无法将其安装到 NAND 中。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "无法与首次搜索的上个值进行比较。" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "找不到 GC IPL。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "无法为此地址生成 AR 代码。" @@ -2376,19 +2511,21 @@ msgstr "无法为此地址生成 AR 代码。" msgid "Cannot refresh without results." msgstr "没有结果下无法刷新。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "无法将 GCI 文件夹设置为空路径。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "无法将存储卡设置为空路径。" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "找不到 GC IPL,无法启动游戏。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "已捕获的反派 %1:" @@ -2406,7 +2543,7 @@ msgstr "中心" msgid "Center Mouse" msgstr "鼠标中键" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "中心和校准" @@ -2414,7 +2551,7 @@ msgstr "中心和校准" msgid "Change &Disc" msgstr "切换光盘(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "切换光盘...(&D)" @@ -2422,7 +2559,7 @@ msgstr "切换光盘...(&D)" msgid "Change Disc" msgstr "切换光盘" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "自动切换光盘" @@ -2430,7 +2567,7 @@ msgstr "自动切换光盘" msgid "Change the disc to {0}" msgstr "切换光盘至 {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2463,7 +2600,7 @@ msgstr "游戏重启后更改的金手指才会生效。" msgid "Channel Partition (%1)" msgstr "通道分区 (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "输入的字符无效!" @@ -2475,15 +2612,15 @@ msgstr "聊天" msgid "Cheat Code Editor" msgstr "金手指编辑器" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "金手指搜索" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "金手指管理器" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "校验 NAND..." @@ -2491,7 +2628,7 @@ msgstr "校验 NAND..." msgid "Check for Game List Changes in the Background" msgstr "在后台检查游戏列表变更" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "检查更新" @@ -2509,27 +2646,27 @@ msgstr "校验" msgid "China" msgstr "中国" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "选择" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "选择要打开的文件" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "选择要打开或创建的文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "选择优先输入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "选择次要输入文件" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "选择 GCI 基础文件夹" @@ -2556,15 +2693,19 @@ msgstr "传统控制器" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "清除" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "清除缓存" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "清除插槽" @@ -2572,7 +2713,7 @@ msgstr "清除插槽" msgid "Clock Override" msgstr "时钟频率覆盖" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "复制并编辑代码...(&E)" @@ -2581,37 +2722,21 @@ msgstr "复制并编辑代码...(&E)" msgid "Close" msgstr "关闭" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "程序设置(&N)" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "代码" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" -msgstr "代码差异工具" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "代码差异工具帮助" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "代码未执行" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" -msgstr "代码已执行" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" +msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2637,7 +2762,11 @@ msgstr "色彩校正:" msgid "Color Space" msgstr "色彩空间" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "合并两个签名文件...(&T)" @@ -2668,7 +2797,7 @@ msgstr "" "与游戏的 Wii 光盘发布版本相比,这是错误的转储。尽管如此,与游戏的 Wii U " "eShop 版本比较的话这可能是一个正确的转储。Dolphin 无法验证这一点。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "在开始前编译着色器" @@ -2676,9 +2805,9 @@ msgstr "在开始前编译着色器" msgid "Compiling Shaders" msgstr "正在编译着色器" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "压缩" @@ -2691,10 +2820,16 @@ msgstr "压缩级别:" msgid "Compression:" msgstr "压缩:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2807,7 +2942,7 @@ msgstr "" "注意:所有值都会在内部转换为双精度数以进行计算。它们有可能超出范围或变为 " "NaN。如果返回 NaN 将给出警告,并且将变为 NaN 的值记录下来。" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "设置" @@ -2840,13 +2975,13 @@ msgstr "配置输出" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "确定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "确认改变后端" @@ -2854,7 +2989,7 @@ msgstr "确认改变后端" msgid "Confirm on Stop" msgstr "停止游戏时确认" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2865,15 +3000,15 @@ msgstr "确认" msgid "Connect" msgstr "连接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "连接平衡板" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "连接 USB 键盘" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "连接 Wii 遥控器 %1" @@ -2893,7 +3028,7 @@ msgstr "连接 Wii 遥控器 3" msgid "Connect Wii Remote 4" msgstr "连接 Wii 遥控器 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "连接 Wii 遥控器" @@ -2934,7 +3069,7 @@ msgstr "控制联机高尔夫模式" msgid "Control Stick" msgstr "控制摇杆" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "控制器预设" @@ -2958,7 +3093,7 @@ msgstr "控制器预设 4" msgid "Controller Settings" msgstr "控制器设置" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "控制器" @@ -3032,8 +3167,8 @@ msgstr "会聚" msgid "Convergence:" msgstr "会聚:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "转换失败。" @@ -3041,9 +3176,9 @@ msgstr "转换失败。" msgid "Convert" msgstr "转换" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "立即将文件转换为文件夹" @@ -3051,9 +3186,9 @@ msgstr "立即将文件转换为文件夹" msgid "Convert File..." msgstr "转换文件..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "立即将文件夹转换为文件" @@ -3075,8 +3210,8 @@ msgstr "" "不会节省任何更明显的空间。是否仍要继续?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "正在转换..." @@ -3122,15 +3257,15 @@ msgstr "" msgid "Copy" msgstr "复制" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "复制函数(&F)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "复制十六进制(&H)" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "复制地址" @@ -3138,19 +3273,19 @@ msgstr "复制地址" msgid "Copy Failed" msgstr "复制失败" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "复制十六进制" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "复制数值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "复制代码行(&L)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "复制目标地址(&G)" @@ -3168,6 +3303,11 @@ msgstr "复制到 B" msgid "Core" msgstr "核心" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "校正色彩空间" @@ -3177,7 +3317,7 @@ msgid "Correct SDR Gamma" msgstr "校正 SDR 伽玛" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "开销" @@ -3264,7 +3404,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "无法识别文件 {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "无法保存您所做的更改!" @@ -3307,13 +3447,13 @@ msgstr "无法读取文件。" msgid "Country:" msgstr "国家:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "创建" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "创建 Infinity 文件" @@ -3322,15 +3462,11 @@ msgstr "创建 Infinity 文件" msgid "Create New Memory Card" msgstr "创建新存储卡" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "创建 Skylander 文件" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "创建 Skylander 文件夹" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "为其他设备创建映射" @@ -3339,20 +3475,8 @@ msgstr "为其他设备创建映射" msgid "Create..." msgstr "创建..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" -"以渲染器的内部分辨率创建帧转储和屏幕截图,而不是其在窗口中显示的大小。" -"

如果长宽比是宽屏,输出图像将会水平缩放以保持垂直分辨率。" -"

如无法确定,请不要选中此项。" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "创建者:" @@ -3360,11 +3484,11 @@ msgstr "创建者:" msgid "Critical" msgstr "错误" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "裁切" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3379,11 +3503,11 @@ msgstr "" msgid "Crossfade" msgstr "混音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "清除 CPU 顶点" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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, " @@ -3392,15 +3516,15 @@ msgstr "" "清除 CPU 上的顶点以减少所需的绘制调用数。可能影响性能和绘制统计数据。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "当前区域" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "当前值" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "当前上下文" @@ -3408,27 +3532,31 @@ msgstr "当前上下文" msgid "Current game" msgstr "当前游戏" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "当前线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "自定义" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "自定义地址空间" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "自定义长宽比宽度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "自定义长宽比长度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "自定义长宽比:" @@ -3440,13 +3568,13 @@ msgstr "自定义 RTC 选项" msgid "Custom:" msgstr "自定义:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "自定义" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3471,7 +3599,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 "音频模拟引擎" @@ -3479,15 +3607,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 重编译器(较慢)" @@ -3512,7 +3640,7 @@ msgstr "跳舞毯" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "暗" @@ -3528,7 +3656,7 @@ msgstr "数据分区 (%1)" msgid "Data Transfer" msgstr "数据传输" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "数据类型" @@ -3561,8 +3689,8 @@ msgstr "死区" msgid "Debug" msgstr "调试" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "调试" @@ -3571,7 +3699,7 @@ msgstr "调试" msgid "Decimal" msgstr "十进制" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "解码质量:" @@ -3618,7 +3746,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 "默认设备" @@ -3630,11 +3758,11 @@ msgstr "默认字体" msgid "Default ISO:" msgstr "默认镜像:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "默认线程" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "推迟 EFB 缓存失效" @@ -3642,7 +3770,7 @@ msgstr "推迟 EFB 缓存失效" msgid "Defer EFB Copies to RAM" msgstr "推迟 EFB 副本到内存" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3685,26 +3813,53 @@ msgstr "深度百分比:" msgid "Depth:" msgstr "深度:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "说明" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "说明:" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "说明:%1" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "分离的" @@ -3712,7 +3867,7 @@ msgstr "分离的" msgid "Detect" msgstr "检测" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "正在检测 RSO 模块" @@ -3720,7 +3875,7 @@ msgstr "正在检测 RSO 模块" msgid "Deterministic dual core:" msgstr "确定性双核:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "开发版(一天多次)" @@ -3729,7 +3884,7 @@ msgid "Device" msgstr "设备" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "设备 PID (例如: 0305)" @@ -3738,11 +3893,11 @@ msgid "Device Settings" msgstr "设备设置" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 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 "设备:" @@ -3750,11 +3905,7 @@ msgstr "设备:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "无法将 %1 识别为有效的 Riivolution XML 文件。" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "差异" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "五分钟非活动状态后变暗屏幕。" @@ -3766,12 +3917,12 @@ msgstr "直接连接" msgid "Direct3D 11" msgstr "Direct3D 11" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "断开连接(&C)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "禁用" @@ -3783,7 +3934,7 @@ msgstr "禁用边界框" msgid "Disable Copy Filter" msgstr "禁用复制过滤" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "禁用 EFB VRAM 副本" @@ -3791,11 +3942,11 @@ msgstr "禁用 EFB VRAM 副本" msgid "Disable Emulation Speed Limit" msgstr "禁用模拟速度限制" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "禁用快速内存" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "禁用快速内存区" @@ -3803,11 +3954,11 @@ msgstr "禁用快速内存区" msgid "Disable Fog" msgstr "禁用雾化" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "禁用 JIT 缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "禁用超大入口端点映射" @@ -3824,7 +3975,7 @@ msgstr "" "禁用边界框模拟。

这可能显著提高 GPU 性能,但是一些游戏可能会停止运行。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4175,7 +4322,7 @@ msgstr "" "将 EFB 副本的内容转储到 User/Dump/Textures/ 目录中。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4193,15 +4340,15 @@ msgstr "连发按键的松开持续时间(帧):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "荷兰语" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "退出模拟(&X)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "EFB 复制 %1" @@ -4231,7 +4378,7 @@ msgstr "内存提前更新" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "土" @@ -4244,7 +4391,7 @@ msgstr "东亚" msgid "Edit Breakpoint" msgstr "编辑断点" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "编辑..." @@ -4260,15 +4407,15 @@ msgstr "效果" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "有效" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "有效优先级" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "EiB" @@ -4278,7 +4425,7 @@ msgstr "弹出光盘" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "元素" @@ -4286,11 +4433,11 @@ msgstr "元素" msgid "Embedded Frame Buffer (EFB)" msgstr "内置帧缓冲 (EFB)" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "空" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "模拟线程已经在运行" @@ -4298,11 +4445,11 @@ msgstr "模拟线程已经在运行" msgid "Emulate Disc Speed" msgstr "模拟光盘速度" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "模拟 Infinity 底座" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "模拟 Skylander 传送门" @@ -4316,7 +4463,7 @@ msgid "" "Defaults to True" msgstr "模拟实机的光盘速度。禁用可能会导致不稳定。默认启用" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "模拟 USB 设备" @@ -4339,28 +4486,16 @@ msgstr "" msgid "Emulation Speed" msgstr "模拟速度" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "必须要开始模拟之后才能载入文件。" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "必须要开始模拟之后才能保存文件。" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "必须要开始模拟才能录制。" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "启用 API 验证层" @@ -4372,11 +4507,11 @@ msgstr "启用成就徽章" msgid "Enable Achievements" msgstr "启用成就" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "启用音频伸缩" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "启用金手指" @@ -4396,7 +4531,7 @@ msgstr "启用调试页面" msgid "Enable Dual Core" msgstr "启用双核心" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "启用双核心(加速)" @@ -4416,7 +4551,7 @@ msgstr "启用硬核成就" msgid "Enable FPRF" msgstr "启用 FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "启用图形模组" @@ -4451,6 +4586,10 @@ msgstr "" "用前请关闭当前游戏。
请注意,在游戏运行时关闭硬核模式需要先关闭游戏,然后" "才能重新启用。" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "启用排行榜" @@ -4464,7 +4603,7 @@ msgstr "启用 MMU" msgid "Enable Progress Notifications" msgstr "启用成就进度通知" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "启用逐行扫描" @@ -4477,11 +4616,11 @@ msgid "Enable Rich Presence" msgstr "启用详细状态信息" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "启用震动" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "允许屏幕保护程序" @@ -4493,15 +4632,15 @@ msgstr "启用扬声器" msgid "Enable Unofficial Achievements" msgstr "启用非官方成就" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "启用使用情况统计报告" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "通过 WiiLink 启用 WiiConnect24" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "启用线框" @@ -4589,7 +4728,7 @@ msgstr "" "允许像官方成就一样解锁非官方成就。

非官方成就可能是可选的或未完成的成" "就,尚未被 RetroAchievements 视为官方成就,可能对测试有用或只是为了好玩。" -#: 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." @@ -4628,7 +4767,7 @@ msgstr "" "禁用。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4639,7 +4778,7 @@ msgstr "" "有性能提升。目前仅限于 Vulkan 后端。

如无法确定,请" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4662,7 +4801,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 "对音频进行伸缩以匹配模拟速度" @@ -4693,7 +4832,7 @@ msgstr "" "启用内存管理单元,某些游戏需要启用此项。(开 = 兼容,关 = 快" "速)

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4705,7 +4844,7 @@ msgstr "" "提供商\n" "请阅读服务条款:https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4716,7 +4855,7 @@ msgstr "" "端,这也为已编译的着色器启用调试符号。

如无法确定," "请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4747,7 +4886,7 @@ msgstr "Enet 没有初始化" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "英语" @@ -4756,7 +4895,7 @@ msgstr "英语" msgid "Enhancements" msgstr "增强" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "输入正在运行 XLink Kai 客户端的设备 IP 地址:" @@ -4778,11 +4917,17 @@ msgstr "输入新宽带适配器 MAC 地址:" msgid "Enter password" msgstr "输入密码" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "输入要使用的 DNS 服务器:" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "请输入 RSO 模块地址:" @@ -4791,8 +4936,8 @@ msgstr "请输入 RSO 模块地址:" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4803,45 +4948,51 @@ msgstr "请输入 RSO 模块地址:" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4851,16 +5002,16 @@ msgstr "请输入 RSO 模块地址:" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "错误" @@ -4877,9 +5028,9 @@ msgstr "打开适配器时出错: %1" msgid "Error collecting save data!" msgstr "收集存档数据时出错!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "转换值时出错" @@ -4891,7 +5042,7 @@ msgstr "加载选定语言错误。正在退回系统默认。" msgid "Error obtaining session list: %1" msgstr "获取会话列表时出错: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "加载一些纹理包时发生错误" @@ -4959,7 +5110,7 @@ msgstr "错误: GBA{0} 在 {1} 中打开存档失败" msgid "Error: This build does not support emulated GBA controllers" msgstr "错误:此版本不支持模拟 GBA 控制器" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." @@ -4967,7 +5118,7 @@ msgstr "" "错误: 正在试图访问 Shift JIS 字体,但它们没有加载。游戏可能无法正确显示字体," "或者崩溃。" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4988,52 +5139,12 @@ msgstr "在 {1} 分区未使用的 {0} 区块中发现错误。" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "欧洲" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" -"例子:\n" -"你想找到一个在修改 HP 时运行的函数。\n" -"1. 在不修改 HP 的情况下开始录制并运行游戏,然后点“代码未执行”。\n" -"2. 立即增加或减少 HP 并点“代码已执行”。\n" -"3. 重复 1 或 2 以缩小结果范围。\n" -"应该会(代码已执行后)出现较短的录制,这里面有你想要的。\n" -"\n" -"如点两次“代码已执行”将仅保留对两个录制运行的函数。命中数将更新以反映最后一个" -"录制的命中数量。总命中数将反映一个函数执行的总次数,直到使用重置命令清除列" -"表。\n" -"\n" -"右键单击 -> “设置 blr” 将在符号顶部放置一个 blr。\n" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "已排除: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "已排除: 0" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "专用超着色器" @@ -5041,7 +5152,7 @@ msgstr "专用超着色器" msgid "Exit" msgstr "退出" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "建议用 + 号或右圆括号。" @@ -5049,7 +5160,7 @@ msgstr "建议用 + 号或右圆括号。" msgid "Expected arguments: " msgstr "建议参数:" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "建议用右圆括号。" @@ -5061,15 +5172,15 @@ msgstr "建议用逗号。" msgid "Expected end of expression." msgstr "建议用表达式结束符。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "建议使用的输入名称。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "建议用左圆括号。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "建议用表达式开始符。" @@ -5077,11 +5188,11 @@ msgstr "建议用表达式开始符。" msgid "Expected variable name." msgstr "建议使用的变量名称。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "实验性" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "导出所有 Wii 存档" @@ -5096,7 +5207,7 @@ msgstr "导出失败" msgid "Export Recording" msgstr "导出录制" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "导出录制..." @@ -5124,14 +5235,14 @@ msgstr "导出为 .gcs...(&G)" msgid "Export as .&sav..." msgstr "导出为 .sav...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "已导出 %n 个存档" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "扩展" @@ -5152,7 +5263,7 @@ msgstr "外部" msgid "External Frame Buffer (XFB)" msgstr "外部帧缓冲 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "从 NAND 中提取证书" @@ -5185,12 +5296,12 @@ msgid "Extracting Directory..." msgstr "正在提取目录..." #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "文件描述符" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "FIFO 回放器" @@ -5210,7 +5321,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "无法将此会话添加到联机索引: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "附加到签名文件 '%1' 失败" @@ -5218,13 +5329,13 @@ msgstr "附加到签名文件 '%1' 失败" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "申请蓝牙直通接口失败: {0}" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "清除 Skylander 失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" -msgstr "清除插槽 (%1) 的 Skylander 失败!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" +msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5251,23 +5362,21 @@ msgstr "创建 D3D12 全局资源失败" msgid "Failed to create DXGI factory" msgstr "创建 DXGI 工厂失败" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "创建 Infinity 文件失败" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "创建 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" -"创建 Skylander 文件失败:\n" -"%1\n" -"(此 Skylander 可能已在传送门上)" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5286,15 +5395,15 @@ msgstr "无法删除所选文件。" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "分离蓝牙直通内核驱动失败: {0}" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "下载代码失败。" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "转储 %1 失败:无法打开文件" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "转储 %1 失败:无法写入文件" @@ -5307,7 +5416,7 @@ msgstr "在 %1 个存档文件中 %n 个导出失败。" msgid "Failed to export the following save files:" msgstr "导出以下存档文件失败:" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "从 NAND 中提取证书失败" @@ -5333,26 +5442,22 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "无法找到一个或多个 D3D 符号" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "查找或打开文件失败:%1" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "导入 \"%1\" 失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "导入存档文件失败。请运行一次游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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 -> " @@ -5361,7 +5466,7 @@ msgstr "" "导入存档文件失败。您的 NAND 可能已损坏,或某些因素阻止访问里面的文件。请尝试" "修复 NAND(工具 -> 管理 NAND -> 校验 NAND...),然后再次导入存档。" -#: Source/Core/DolphinQt/MainWindow.cpp:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "初始化核心失败" @@ -5375,7 +5480,7 @@ msgstr "" "请确保你的显卡至少支持 D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "初始化渲染器类失败" @@ -5384,18 +5489,18 @@ msgid "Failed to install pack: %1" msgstr "安装包失败: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "无法将该游戏安装到 NAND。" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "监听端口 %1 失败。是否有另一个联机服务器的实例正在运行?" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "无法在 %1 处加载 RSO 模块" @@ -5407,19 +5512,21 @@ msgstr "载入 d3d11.dll 失败" msgid "Failed to load dxgi.dll" msgstr "载入 dxgi.dll 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "载入映射文件 '%1' 失败" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "载入 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" -msgstr "载入 Skylander 文件 (%1) 失败!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" +msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "加载可执行文件到内存失败。" @@ -5429,13 +5536,21 @@ msgid "" "update package." msgstr "加载 {0} 失败。如果你使用的是 Windows 7,请尝试安装 KB4019990 更新包。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "修改 Skylander 失败!" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "无法打开 '%1'" @@ -5443,6 +5558,10 @@ msgstr "无法打开 '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "打开蓝牙设备失败: {0} " +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "打开配置文件失败!" @@ -5471,33 +5590,33 @@ msgstr "" msgid "Failed to open file." msgstr "打开文件失败。" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "打开服务器失败" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "打开 Infinity 文件失败!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -"打开 Infinity 文件 (%1) 失败!\n" -"此 Skylander 可能已在传送门上。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "打开 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" -"打开 Skylander 文件 (%1) 失败!\n" -"此 Skylander 可能已在传送门上。" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5518,7 +5637,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "解析 Redump.org 数据失败" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "将给定值解析为目标数据类型失败。" @@ -5540,39 +5659,35 @@ msgstr "从输入文件 “{0}” 读取失败。" msgid "Failed to read selected savefile(s) from memory card." msgstr "从存储卡读取所选的存档文件失败。" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "读取 Infinity 文件失败!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"读取 Infinity 文件 (%1) 失败!\n" -"文件过小。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "读取 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -"读取 Skylander 文件 (%1) 失败!\n" -"文件过小。" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" -"读取文件内容失败\n" -"\n" -"\"%1\"" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5608,31 +5723,31 @@ msgstr "重置联机 NAND 文件夹失败。请验证你的写入权限。" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "重置联机重定向文件夹失败。请验证你的写入权限。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "保存 FIFO 日志失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "保存代码映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "保存文件失败:%1" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "保存签名文件 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "保存符号映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "保存到签名文件 '%1' 失败" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5687,7 +5802,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "失败" @@ -5695,11 +5810,11 @@ msgstr "失败" msgid "Fair Input Delay" msgstr "公平输入延迟" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "备用区域" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "备用区域:" @@ -5712,7 +5827,7 @@ msgstr "快速" msgid "Fast Depth Calculation" msgstr "快速深度计算" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5724,11 +5839,11 @@ msgstr "" msgid "Field of View" msgstr "视野" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "角色编号:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "角色类型" @@ -5736,9 +5851,9 @@ msgstr "角色类型" msgid "File Details" msgstr "文件详细信息" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "文件格式" @@ -5750,20 +5865,20 @@ msgstr "文件格式:" msgid "File Info" msgstr "文件信息" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "文件名" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "文件路径" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "文件大小" @@ -5771,7 +5886,7 @@ msgstr "文件大小" msgid "File Size:" msgstr "文件大小:" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "文件未包含代码。" @@ -5807,15 +5922,15 @@ msgstr "文件系统" msgid "Filters" msgstr "过滤" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "查找下一个(&N)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "查找上一个(&P)" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "完成校准" @@ -5829,7 +5944,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "火" @@ -5845,31 +5960,32 @@ msgstr "修正校验和" msgid "Fix Checksums Failed" msgstr "修正校验和失败" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "标记" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "浮点" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "跟随分支(&B)" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "为获得最佳效果,请将输入标志缓慢移至所有可能的区域。" @@ -5881,7 +5997,7 @@ msgstr "" "有关设置说明,请参阅此页面。" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." @@ -5889,7 +6005,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" @@ -5897,7 +6013,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" @@ -5929,11 +6045,11 @@ msgstr "强制监听端口:" msgid "Force Nearest" msgstr "强制邻近" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "已强制打开,因为 %1 不支持几何着色器。" @@ -5977,17 +6093,17 @@ msgstr "前" msgid "Forward port (UPnP)" msgstr "转发端口(UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "已找到 \"%2\" 的 %1 个结果 " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "找到 %n 个地址。" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "帧 %1" @@ -6008,7 +6124,7 @@ msgstr "逐帧播放增加速度" msgid "Frame Advance Reset Speed" msgstr "逐帧播放重置速度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "转储帧" @@ -6016,7 +6132,7 @@ msgstr "转储帧" msgid "Frame Range" msgstr "帧范围" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "帧转储图像 ‘{0}’ 已经存在。是否覆盖?" @@ -6040,7 +6156,7 @@ msgstr "空闲文件数: %1" msgid "Free Look Control Type" msgstr "自由视点控制类型" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "自由视点控制器 %1" @@ -6074,7 +6190,7 @@ msgstr "自由视点切换" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "法语" @@ -6098,7 +6214,7 @@ msgstr "从" msgid "From:" msgstr "从:" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "全屏" @@ -6130,7 +6246,7 @@ msgstr "GBA 核心" msgid "GBA Port %1" msgstr "GBA 端口 %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "GBA 设置" @@ -6268,20 +6384,20 @@ msgstr "" "GPU:您的显卡是否支持 OpenGL 2.x?" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "游戏" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "GBA 游戏卡带 (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6289,7 +6405,7 @@ msgstr "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "所有文件 (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "GameBoy Advance 连至端口 %1" @@ -6317,8 +6433,8 @@ msgstr "游戏伽玛" msgid "Game Gamma:" msgstr "游戏伽玛:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "游戏 ID" @@ -6380,11 +6496,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:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "GameCube 控制器" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "端口 %1 的 GameCube 控制器" @@ -6392,11 +6508,11 @@ msgstr "端口 %1 的 GameCube 控制器" msgid "GameCube Controllers" msgstr "GameCube 控制器" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "GameCube 键盘" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "端口 %1 的 GameCube 键盘" @@ -6409,11 +6525,11 @@ msgid "GameCube Memory Cards" msgstr "GameCube 存储卡" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube 存储卡 (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "GameCube 麦克风插槽 %1" @@ -6441,7 +6557,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 代码" @@ -6451,35 +6567,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "常规" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "常规和选项" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" -msgstr "生成 Action Replay 代码" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" +msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "生成一个新的统计标识" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." -msgstr "已生成 AR 代码。" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "德语" @@ -6491,18 +6607,18 @@ msgstr "德国" msgid "GetDeviceList failed: {0}" msgstr "获取设备列表失败: {0}" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "巨人" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "巨人" @@ -6515,8 +6631,8 @@ msgid "Good dump" msgstr "正确的转储" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "图形" @@ -6558,7 +6674,7 @@ msgstr "绿 左" msgid "Green Right" msgstr "绿 右" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "网格视图" @@ -6567,7 +6683,7 @@ msgstr "网格视图" msgid "Guitar" msgstr "吉他" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "陀螺仪" @@ -6595,36 +6711,35 @@ msgstr "HDR 后处理" msgid "Hacks" msgstr "修正" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "头" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "帮助" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "英雄等级:" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "十六进制" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "十六进制 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "十六进制 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "十六进制 8" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "十六进制字节字符串" @@ -6637,7 +6752,11 @@ msgstr "十六进制" msgid "Hide" msgstr "隐藏" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "隐藏全部" @@ -6653,12 +6772,12 @@ msgstr "隐藏不兼容的会话" msgid "Hide Remote GBAs" msgstr "隐藏远程 GBA" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "最高" @@ -6667,14 +6786,8 @@ msgstr "最高" msgid "Hit Strength" msgstr "敲击力度" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "命中数" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "水平视野" @@ -6691,7 +6804,7 @@ msgstr "主机代码 :" msgid "Host Input Authority" msgstr "主机输入优先权" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "主机大小" @@ -6718,16 +6831,16 @@ msgstr "主机输入优先权已启用" msgid "Host with NetPlay" msgstr "建主机联网游戏" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "主机名" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "热键设置" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "热键" @@ -6736,7 +6849,7 @@ msgstr "热键" msgid "Hotkeys Require Window Focus" msgstr "热键需要窗口是活动状态" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "混合超着色器" @@ -6750,16 +6863,16 @@ msgstr "Hz" msgid "I am aware of the risks and want to continue" msgstr "我已知道风险并希望继续" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "ID" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "输入的 ID 无效!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "ID:" @@ -6798,7 +6911,7 @@ msgid "IR" msgstr "红外线" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "红外灵敏度:" @@ -6844,11 +6957,11 @@ msgstr "" "与主机输入权限相同,除“主机”(零延迟)之外,其他可以随时切换。\n" "适用于需要时间敏感控制的回合制游戏,如高尔夫球。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "身份标识生成" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6912,11 +7025,15 @@ msgstr "" msgid "Ignore" msgstr "忽略" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "忽略格式变化" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "本次会话期间忽略" @@ -6946,7 +7063,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "立即呈现 XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6959,7 +7076,7 @@ msgstr "" "能也会略微降低。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "导入 BootMii NAND 备份..." @@ -6974,15 +7091,15 @@ msgstr "导入失败" msgid "Import Save File(s)" msgstr "导入存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "导入 Wii 存档..." -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "正在导入 NAND 备份" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6995,15 +7112,6 @@ msgstr "" msgid "In-Game?" msgstr "游戏中?" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "已包含: %1" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "已包含: 0" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -7015,27 +7123,27 @@ msgstr "" "纹理与物体缺失或模糊的问题,但会加长存/读档时间。

如" "无法确定,请选中此项。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "错误的英雄等级!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "上次放置的时间不正确!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "上次重置的时间不正确!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "金钱数量不正确!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "昵称错误!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "错误的游玩时间!" @@ -7080,15 +7188,16 @@ msgstr "增量旋转" msgid "Incremental Rotation (rad/sec)" msgstr "增量旋转(度/秒)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "Infinity 角色创建器" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "Infinity 管理器" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "Infinity 文件 (*.bin);;" @@ -7110,8 +7219,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "信息" @@ -7125,10 +7234,10 @@ msgstr "注入" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "输入" @@ -7142,20 +7251,26 @@ msgstr "激活所需要的输入力度。" msgid "Input strength to ignore and remap." msgstr "要忽略并重新映射的输入力度。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "插入 nop (&N)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "插入 SD 卡" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "已检查" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -7169,7 +7284,7 @@ msgstr "安装分区 (%1)" msgid "Install Update" msgstr "安装更新" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "安装 WAD..." @@ -7177,11 +7292,13 @@ msgstr "安装 WAD..." msgid "Install to the NAND" msgstr "安装至 NAND" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "指令" @@ -7190,7 +7307,7 @@ msgstr "指令" msgid "Instruction Breakpoint" msgstr "指令断点" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "指令:" @@ -7199,7 +7316,7 @@ msgstr "指令:" msgid "Instruction: %1" msgstr "指令: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7220,19 +7337,19 @@ msgstr "强度" msgid "Interface" msgstr "界面" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "内部 LZ4 错误 - 已尝试解压缩 {0} 字节" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "内部 LZ4 错误 - 压缩失败" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "内部 LZ4 错误 - 解压失败 ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "内部 LZ4 错误 - 有效载荷大小不匹配 ({0} / {1}))" @@ -7245,7 +7362,7 @@ msgstr "内部 LZO 错误 - 压缩失败" msgid "Internal LZO Error - decompression failed" msgstr "内部 LZO 错误 - 解压失败" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7253,13 +7370,13 @@ msgstr "" "内部 LZO 错误 - 解压失败 ({0}) ({1}) \n" "无法检索过时的存储状态版本信息。" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "内部 LZO 错误 - 无法解析解压缩的版本 cookie 和版本字符串长度 ({0})" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "内部 LZO 错误 - 无法解析解压缩的版本字符串 ({0} / {1})" @@ -7274,7 +7391,7 @@ msgstr "内部分辨率" msgid "Internal Resolution:" msgstr "内部分辨率:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "生成 AR 代码时出现内部错误。" @@ -7282,11 +7399,11 @@ msgstr "生成 AR 代码时出现内部错误。" msgid "Interpreter (slowest)" msgstr "解释器(最慢)" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "解释器核心" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "无效表达式。" @@ -7298,7 +7415,7 @@ msgstr "从自动更新服务接收到无效的 JSON 数据:{0}" msgid "Invalid Mixed Code" msgstr "无效混合代码" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "包 %1 无效: %2" @@ -7307,11 +7424,11 @@ msgstr "包 %1 无效: %2" msgid "Invalid Player ID" msgstr "无效玩家 ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "无效 RSO 模块地址: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "无效调用堆栈" @@ -7340,7 +7457,7 @@ msgstr "提供的输入无效" msgid "Invalid literal." msgstr "无效字面。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "提供的搜索参数无效。" @@ -7352,19 +7469,19 @@ msgstr "提交的密码无效。" msgid "Invalid recording file" msgstr "无效录制文件" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "无效的搜索参数(没有选择对象)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "无效的搜索字符串(无法转换成数字)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "无效的搜索字符串(仅支持相等长度的字符串)" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "无效游戏 ID" @@ -7374,7 +7491,7 @@ msgstr "无效监视地址: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "意大利语" @@ -7383,63 +7500,63 @@ msgid "Italy" msgstr "意大利" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "物品" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "关闭 JIT 区块链接" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "JIT 区块" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "关闭 JIT 分支" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "关闭 JIT 浮点" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "关闭 JIT 整数" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "关闭 JIT 加载存储浮动" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "关闭 JIT 加载存储" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "关闭 JIT 加载存储配对" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "关闭 JIT 加载存储 IXz" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "关闭 JIT 加载存储 Ibzx" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "关闭 JIT 加载存储 Iwz" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "关闭 JIT (JIT 核心)" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "关闭 JIT 配对" @@ -7451,16 +7568,16 @@ msgstr "适用于 ARM64 的 JIT 重编译器(推荐)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "适用于 x86-64 的 JIT 重编译器(推荐)" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "关闭 JIT 寄存器缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "关闭 JIT 系统寄存器" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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." @@ -7468,12 +7585,16 @@ msgstr "" "清除缓存后,JIT 无法找到代码空间。这应该从不会出现。请在错误跟踪器中上报此事" "件。 Dolphin 即将退出。" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "日本" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "日语" @@ -7484,13 +7605,13 @@ msgstr "日语" msgid "Japanese (Shift-JIS)" msgstr "日本 (Shift-JIS)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "Kaos 是这个奖杯的唯一反派,且一直是解锁状态。无需编辑任何内容!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "保持运行" @@ -7504,7 +7625,7 @@ msgstr "窗口置顶" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "在内存中值的保留地址" @@ -7525,7 +7646,7 @@ msgstr "键盘控制器" msgid "Keys" msgstr "按键" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "KiB" @@ -7533,12 +7654,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "踢除玩家" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "韩国" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "韩语" @@ -7549,7 +7670,7 @@ msgstr "韩语" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "载入 ROM...(&O)" @@ -7559,7 +7680,7 @@ msgstr "载入 ROM...(&O)" msgid "L-Analog" msgstr "L-模拟" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "LR 保存" @@ -7567,35 +7688,37 @@ msgstr "LR 保存" msgid "Label" msgstr "标签" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "上个值" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "上次放置:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 毫秒" @@ -7671,13 +7794,13 @@ msgstr "" msgid "Levers" msgstr "控制杆" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "许可" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "生命" @@ -7691,7 +7814,7 @@ msgstr "举起" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "光" @@ -7699,11 +7822,11 @@ msgstr "光" msgid "Limit Chunked Upload Speed:" msgstr "限制数据块上传速度:" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "表单列" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "列表视图" @@ -7714,29 +7837,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "载入损坏映射文件(&B)..." -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "载入其他映射文件(&O)..." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "加载自定义纹理" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "载入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "载入 GameCube 主菜单" @@ -7757,7 +7887,7 @@ msgstr "加载路径:" msgid "Load ROM" msgstr "载入 ROM" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "载入插槽" @@ -7846,19 +7976,19 @@ msgstr "载入状态 8" msgid "Load State Slot 9" msgstr "载入状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "从文件中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "从选择的插槽中加载状态" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "从插槽中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "加载 Wii 系统菜单 %1" @@ -7870,16 +8000,16 @@ msgstr "加载和写入主机的存档数据" msgid "Load from Selected Slot" msgstr "从选择的插槽中加载" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "从插槽 %1 - %2 载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "载入映射文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "加载 vWii 系统菜单 %1" @@ -7887,11 +8017,11 @@ msgstr "加载 vWii 系统菜单 %1" msgid "Load..." msgstr "载入..." -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "已从 '%1' 中加载符号" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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, " @@ -7901,7 +8031,7 @@ msgstr "" "<game_id>/ 目录中的自定义纹理。

如无法确定,请" "不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7923,7 +8053,7 @@ msgid "Locked" msgstr "已锁定" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "日志" @@ -7935,7 +8065,7 @@ msgstr "日志设置" msgid "Log In" msgstr "登录" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "记录 JIT 指令范围" @@ -7943,7 +8073,7 @@ msgstr "记录 JIT 指令范围" msgid "Log Out" msgstr "注销" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "记录渲染时间到文件" @@ -7959,7 +8089,7 @@ msgstr "日志输出" msgid "Login Failed" msgstr "登录失败" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7977,16 +8107,16 @@ msgstr "循环" msgid "Lost connection to NetPlay server..." msgstr "丢失联机服务器连接..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "最低" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "MD5:" @@ -7994,7 +8124,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "即将结束" @@ -8004,7 +8134,7 @@ msgstr "MadCatz Gameshark 文件" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "魔法" @@ -8012,37 +8142,37 @@ msgstr "魔法" msgid "Main Stick" msgstr "主摇杆" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "请确保英雄等级在 0 至 100 之间!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "请确保上次放置的时间是有效的!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "请确保上次重置的时间是有效的!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "请确保金钱数量在 0 至 65000 之间!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "请确保昵称长度为 0 至 15 个字符!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "请确保游玩时间是有效的!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "请确保 Skylander 已位于插槽 %1 中!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "制作者" @@ -8062,12 +8192,12 @@ msgstr "" "雾模拟,禁用雾将破坏其游戏性。

如无法确定,请不要选" "中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "管理 NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "手动纹理采样" @@ -8079,7 +8209,7 @@ msgstr "映射" msgid "Mask ROM" msgstr "伪装 ROM" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "找到匹配" @@ -8096,16 +8226,16 @@ msgstr "最大缓冲区大小更改为 %1" msgid "Maximum tilt angle." msgstr "最大倾斜角度。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "中等" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "内存" @@ -8117,7 +8247,7 @@ msgstr "内存断点" msgid "Memory Card" msgstr "存储卡" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "存储卡管理器" @@ -8129,7 +8259,7 @@ msgstr "存储卡路径:" msgid "Memory Override" msgstr "内存覆盖" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "内存断点选项" @@ -8145,7 +8275,7 @@ msgstr "MemoryCard: 在无效源地址 ({0:#x}) 中读取调用" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: 在无效目标地址 ({0:#x}) 中写入调用" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8155,29 +8285,33 @@ msgstr "" "将新 NAND 合并入当前 NAND 将会覆盖所有现有的频道与存档。此过程不可逆,建议您" "对两份 NAND 都进行备份。确定继续?" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "麦克风" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "迷你" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "其它" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "其它设置" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "标头中的空闲区块数与实际未使用的区块不匹配。" @@ -8204,12 +8338,16 @@ msgstr "" "- 标题: {3}\n" "- 校验: {4:02X}" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: 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:298 +#: 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 " @@ -8218,24 +8356,25 @@ msgstr "" "修改纹理以显示以其编码格式。

可能需要重置模拟才能生效。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "修改插槽" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "修改 Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "已找到模块: %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "金钱:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "单声道" @@ -8247,16 +8386,16 @@ msgstr "单视场阴影" msgid "Monospaced Font" msgstr "等宽字体" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "体感输入" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "体感模拟" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "马达" @@ -8293,6 +8432,10 @@ msgid "" "The movie will likely not sync!" msgstr "影片 {0} 表示从一个保存状态开始播放,但 {1} 不存在。电影可能无法同步!" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -8302,10 +8445,10 @@ msgstr "多重分插器" msgid "N&o to All" msgstr "全部选否(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 校验" @@ -8314,8 +8457,8 @@ msgstr "NAND 校验" msgid "NKit Warning" msgstr "NKit 警告" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "NTSC-J" @@ -8324,7 +8467,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:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "NTSC-K" @@ -8345,25 +8488,25 @@ msgstr "" "值,请在此处进行设置。

如无法确定,请保持为 2.35。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "名称" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "命名一个新标签:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "要移除的标签名:" @@ -8372,7 +8515,7 @@ msgid "Name of your session shown in the server browser" msgstr "在服务器浏览器中所显示的会话名称" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -8435,7 +8578,7 @@ msgstr "" msgid "Network" msgstr "网络" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "网络转储格式:" @@ -8465,7 +8608,7 @@ msgstr "新建文件" msgid "New File (%1)" msgstr "新建文件 (%1)" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "新建搜索" @@ -8473,7 +8616,7 @@ msgstr "新建搜索" msgid "New Tag..." msgstr "新标签..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "已生成新的标识。" @@ -8481,7 +8624,7 @@ msgstr "已生成新的标识。" msgid "New instruction:" msgstr "新指令:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "新标签" @@ -8490,7 +8633,7 @@ msgstr "新标签" msgid "Next Game Profile" msgstr "下一个游戏预设" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "匹配下一个" @@ -8504,7 +8647,7 @@ msgid "Nickname is too long." msgstr "昵称太长。" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "昵称:" @@ -8518,7 +8661,7 @@ msgstr "否" msgid "No Adapter Detected" msgstr "未检测到适配器" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "未对齐" @@ -8532,7 +8675,7 @@ msgstr "无音频输出" msgid "No Compression" msgstr "不压缩" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "无匹配" @@ -8540,16 +8683,16 @@ msgstr "无匹配" msgid "No Save Data" msgstr "无存档数据" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "没有可修改的数据!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "没有可用的说明" @@ -8565,15 +8708,15 @@ msgstr "未选择扩展。" msgid "No file loaded / recorded." msgstr "文件未加载 / 录制" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "没有游戏在运行。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "没有游戏运行。" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "未选择图形模组" @@ -8582,7 +8725,7 @@ msgstr "未选择图形模组" msgid "No input" msgstr "无输入" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "没有发现问题。" @@ -8594,10 +8737,6 @@ msgstr "未找到匹配的游戏" msgid "No paths found in the M3U file \"{0}\"" msgstr "在 M3U 文件 “{0}” 中找不到路径" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "未发现可能的函数,重置。" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "未发现任何问题。" @@ -8611,11 +8750,11 @@ msgstr "" "未发现任何问题。虽然不能保证这是一个正确的转储,但由于 Wii 游戏包含大量的验证" "数据,这表明几乎不会出现影响模拟的问题。" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "没有找到游戏设置 ‘{0}’ 的预设" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "没有录制被载入。" @@ -8624,18 +8763,18 @@ msgstr "没有录制被载入。" msgid "No save data found." msgstr "没有找到存档数据。" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "无" @@ -8695,7 +8834,7 @@ msgid "Null" msgstr "空" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "执行次数" @@ -8730,10 +8869,58 @@ msgstr "双节棍摇杆" msgid "OK" msgstr "确定" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "对象 %1" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "对象范围" @@ -8747,7 +8934,7 @@ msgstr "大洋洲" msgid "Off" msgstr "关" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "偏移量" @@ -8759,7 +8946,7 @@ msgstr "开" msgid "On Movement" msgstr "活动时" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " @@ -8768,7 +8955,22 @@ msgstr "" "在同时支持使用几何着色器和顶点着色器来扩展点和线的后端上,为任务选择顶点着色" "器。可能会影响性能。

%1" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "在线文档(&D)" @@ -8776,7 +8978,7 @@ msgstr "在线文档(&D)" msgid "Only Show Collection" msgstr "只显示合集" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8784,7 +8986,7 @@ msgstr "" "仅附加有此前缀的符号:\n" "(留空表示全部)" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8794,7 +8996,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "打开" @@ -8803,11 +9005,11 @@ msgstr "打开" msgid "Open &Containing Folder" msgstr "打开所在目录(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "打开用户目录(&U)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "打开目录..." @@ -8828,7 +9030,7 @@ msgstr "打开 Riivolutione XML..." msgid "Open Wii &Save Folder" msgstr "打开 Wii 存档目录(&S)" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "打开转储目录" @@ -8861,11 +9063,11 @@ msgid "Operators" msgstr "运算符" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "选项" @@ -8878,13 +9080,36 @@ msgstr "橙" msgid "Orbital" msgstr "轨道式" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "其他" @@ -8897,7 +9122,7 @@ msgstr "其他分区 (%1)" msgid "Other State Hotkeys" msgstr "其他状态热键" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "其他状态管理" @@ -8917,16 +9142,16 @@ msgstr "输出重采样" msgid "Output Resampling:" msgstr "输出重采样:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "覆盖" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "播放录制...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "PAL" @@ -8935,15 +9160,15 @@ msgid "PAL (EBU)" msgstr "PAL (EBU)" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "PCAP 格式" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG 压缩级别" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG 压缩级别:" @@ -8951,11 +9176,11 @@ msgstr "PNG 压缩级别:" msgid "PNG image file (*.png);; All Files (*)" msgstr "PNG 图像文件 (*.png);; 所有文件 (*)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "PPC 大小" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "PPC 对 Host" @@ -8968,11 +9193,11 @@ msgstr "手柄" msgid "Pads" msgstr "鼓垫" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "参数" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "解析为十六进制" @@ -9023,11 +9248,15 @@ msgstr "路径:" msgid "Paths" msgstr "路径" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "暂停" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "在影片末尾暂停" @@ -9069,7 +9298,7 @@ msgstr "向外挥舞的峰值速度。" msgid "Per-Pixel Lighting" msgstr "逐像素光照" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "执行在线系统更新" @@ -9077,33 +9306,33 @@ msgstr "执行在线系统更新" msgid "Perform System Update" msgstr "执行系统更新" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "性能采样窗口(毫秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "性能采样窗口(毫秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "性能统计" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "物理" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "物理地址空间" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "选择调试字体" @@ -9119,12 +9348,12 @@ msgstr "下俯" msgid "Pitch Up" msgstr "上仰" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "平台" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "开始" @@ -9136,7 +9365,7 @@ msgstr "播放/录制" msgid "Play Recording" msgstr "播放录制" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "玩具组合/动力飞盘" @@ -9148,27 +9377,27 @@ msgstr "回放选项" msgid "Player" msgstr "玩家" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "玩家 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "玩家 1 的第 1 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "玩家 1 的第 2 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "玩家 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "玩家 2 的第 1 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "玩家 2 的第 2 项能力" @@ -9177,7 +9406,8 @@ msgstr "玩家 2 的第 2 项能力" msgid "Players" msgstr "玩家" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "游玩时间:" @@ -9190,23 +9420,27 @@ msgid "" msgstr "" "请将“SyncOnSkipIdle”设置更改为“True”!当前已被禁用,使得很可能发生这个问题。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "在以标准内存区域开始搜索前,请先运行游戏。" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "指向" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "端口 %1" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "端口 %1 ROM:" @@ -9215,7 +9449,7 @@ msgstr "端口 %1 ROM:" msgid "Port:" msgstr "端口 :" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "传送门插槽" @@ -9236,11 +9470,11 @@ msgid "Post-Processing Shader Configuration" msgstr "后处理着色器配置" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "点/线扩展首选顶点着色器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "预读取自定义纹理" @@ -9248,11 +9482,11 @@ msgstr "预读取自定义纹理" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "在 PlayController 中提前结束影片。{0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "在 PlayWiimote 中提前结束影片。{0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "在PlayWiimote 中提前结束影片。{0} > {1}" @@ -9277,7 +9511,7 @@ msgstr "按下同步按钮" msgid "Pressure" msgstr "压感" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -9295,7 +9529,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "上一个游戏预设" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "匹配上一个" @@ -9306,7 +9540,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "图元 %1" @@ -9318,7 +9552,7 @@ msgstr "私密" msgid "Private and Public" msgstr "私密和公开" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "问题" @@ -9352,8 +9586,8 @@ msgstr "程序计数器" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "进度" @@ -9361,11 +9595,11 @@ msgstr "进度" msgid "Public" msgstr "公开" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "清除游戏列表缓存" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "将 IPL ROM 放至 User/GC/。" @@ -9385,14 +9619,14 @@ 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 解码器的质量。质量越高音频延迟越大。" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "询问" @@ -9413,19 +9647,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-模拟" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "就绪" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "RSO 模块" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "RSO 自动检测" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "运行" @@ -9438,11 +9672,11 @@ msgstr "RVZ GC/Wii 镜像 (*.rvz)" msgid "Range" msgstr "范围" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "结束范围:" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "开始范围:" @@ -9454,7 +9688,11 @@ msgstr "排名 %1" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "替换指令(&P)" @@ -9466,14 +9704,14 @@ msgstr "读取" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "读取和写入" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "只读" @@ -9494,10 +9732,15 @@ msgstr "真实平衡板" msgid "Real Wii Remote" msgstr "真实 Wii 遥控器" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "从联机中接收到无效的 Wii 遥控器数据。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -9511,7 +9754,7 @@ msgstr "录制" msgid "Record Inputs" msgstr "录制输入" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "正在录制" @@ -9550,7 +9793,7 @@ msgstr "" "锯齿并且还可将抗锯齿应用于光源、着色器效果与纹理。

" "如无法确定,选择“无”。" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "Redump.org 状态:" @@ -9558,14 +9801,14 @@ msgstr "Redump.org 状态:" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "刷新" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "刷新当前值" @@ -9573,11 +9816,11 @@ msgstr "刷新当前值" msgid "Refresh Game List" msgstr "刷新游戏列表" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "刷新失败。请运行一会儿游戏,然后重试。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "已刷新当前值。" @@ -9586,8 +9829,8 @@ msgstr "已刷新当前值。" msgid "Refreshing..." msgstr "正在刷新..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地区" @@ -9616,7 +9859,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "移除" @@ -9633,7 +9876,7 @@ msgstr "移除垃圾数据(不可逆):" msgid "Remove Tag..." msgstr "移除标签..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "移除标签" @@ -9646,8 +9889,8 @@ msgstr "" "转换为 ISO 格式时,移除垃圾数据不会节省任何空间(除非以后将 ISO 文件打包为压" "缩文件格式,例如 ZIP 文件)。是否仍要继续?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "重命名符号" @@ -9655,11 +9898,11 @@ msgstr "重命名符号" msgid "Render Window" msgstr "渲染窗口" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "渲染到主窗口" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9677,23 +9920,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "重置" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "全部重置" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "重置忽略警告程序" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "重置结果" @@ -9721,6 +9963,10 @@ msgstr "重置视图" msgid "Reset all saved Wii Remote pairings" msgstr "重置所有保存的 Wii 遥控器配对" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "资源包管理器" @@ -9737,7 +9983,7 @@ msgstr "需要重启" msgid "Restore Defaults" msgstr "恢复默认值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "恢复指令" @@ -9754,7 +10000,7 @@ msgstr "返回速度" msgid "Revision" msgstr "修订版" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "修订版: %1" @@ -9813,7 +10059,7 @@ msgstr "右倾" msgid "Room ID" msgstr "房间 ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "旋转" @@ -9834,26 +10080,52 @@ msgstr "" "部分辨率下的图像问题。该选项在使用原生内部分辨率时没有效果。" "

如无法确定,请不要选中此项。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "震动" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "运行到此处(&T)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "在独占线程中运行 GBA 内核" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "运行直到" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "运行直到(忽略断点)" @@ -9869,19 +10141,19 @@ msgstr "俄罗斯" msgid "SD Card" msgstr "SD 卡" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD 卡文件大小:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD 卡镜像 (*.raw);;所有文件 (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD 卡路径:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD 卡设置" @@ -9889,7 +10161,7 @@ msgstr "SD 卡设置" msgid "SD Root:" msgstr "SD 根目录:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD 同步文件夹:" @@ -9902,7 +10174,7 @@ msgstr "SDR 显示目标伽玛值" msgid "SELECT" msgstr "选择" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "SHA-1:" @@ -9910,11 +10182,11 @@ msgstr "SHA-1:" msgid "SHA1 Digest" msgstr "SHA1 摘要" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "SP1:" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "SSL 上下文" @@ -9924,11 +10196,11 @@ msgstr "SSL 上下文" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "保存代码(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "保存状态(&V)" @@ -9941,7 +10213,6 @@ msgstr "安全" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9951,9 +10222,17 @@ msgstr "保存" msgid "Save All" msgstr "保存全部" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "存档导出" @@ -9962,24 +10241,24 @@ msgid "Save FIFO log" msgstr "保存 FIFO 日志" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "保存文件到" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "游戏存档" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "游戏存档文件 (*.sav);;所有文件 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "存档导入" @@ -9991,13 +10270,13 @@ msgstr "保存到最早状态存档" msgid "Save Preset" msgstr "保存预设" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "录制文件另存为" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "保存状态" @@ -10041,23 +10320,23 @@ msgstr "保存状态 8" msgid "Save State Slot 9" msgstr "保存状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "保存状态到文件" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "保存状态到最早的插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "向选中的插槽保存状态" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "保存状态到插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "保存符号映射为...(&A)" @@ -10065,7 +10344,7 @@ msgstr "保存符号映射为...(&A)" msgid "Save Texture Cache to State" msgstr "保存纹理缓存到状态" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "保存和载入状态" @@ -10077,11 +10356,11 @@ msgstr "另存为预设..." msgid "Save as..." msgstr "另存为..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "将组合输出文件另存为" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10090,15 +10369,15 @@ msgstr "" "此游戏的存档数据已存在于 NAND 中。 建议在覆盖之前备份当前数据。\n" "是否现在覆盖? " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "保存在与 ROM 相同的目录中" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "保存映射文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "保存签名文件" @@ -10106,7 +10385,7 @@ msgstr "保存签名文件" msgid "Save to Selected Slot" msgstr "保存至所选插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "保存到插槽 %1 - %2" @@ -10118,7 +10397,7 @@ msgstr "保存..." msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "只有在 Wii 游戏运行时保存的 Wii 遥控器配对才能重置。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "存档:" @@ -10130,26 +10409,26 @@ msgstr "即时存档影片 {0} 被破坏,影片录制停止……" msgid "Scaled EFB Copy" msgstr "缩放 EFB 副本" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "扫描成功。" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "截图" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "搜索" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "搜索地址" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "搜索当前对象" @@ -10157,17 +10436,17 @@ msgstr "搜索当前对象" msgid "Search Subfolders" msgstr "搜索子目录" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "搜索与过滤" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "当前无法在虚拟地址空间中进行搜索。请运行一会儿游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "搜索一个指令" @@ -10175,11 +10454,11 @@ msgstr "搜索一个指令" msgid "Search games..." msgstr "搜索游戏..." -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "搜索指令" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "搜索:" @@ -10199,7 +10478,7 @@ msgstr "包含所有图像相关设置的部分。" msgid "Section that contains most CPU and Hardware related settings." msgstr "包含大部分 CPU 与硬件相关设置的部分。" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "安全选项" @@ -10207,28 +10486,36 @@ msgstr "安全选项" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "选择转储路径" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "选择导出目录" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "选择角色文件" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "选择 GBA BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "选择 GBA ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "选择 GBA 存档路径" @@ -10248,15 +10535,15 @@ msgstr "选择资源包路径" msgid "Select Riivolution XML file" msgstr "选择 Riivolutione XML 文件" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "选择 Skylander 合集" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "选择 Skylander 文件" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "选择插槽 %1 - %2" @@ -10264,7 +10551,7 @@ msgstr "选择插槽 %1 - %2" msgid "Select State" msgstr "选择状态" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "选择状态插槽" @@ -10323,15 +10610,15 @@ msgstr "选择目录" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "选择文件" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "选择要与 SD 卡镜像同步的文件夹" @@ -10339,11 +10626,11 @@ msgstr "选择要与 SD 卡镜像同步的文件夹" msgid "Select a Game" msgstr "选择游戏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "选择 SD 卡镜像" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "选择文件" @@ -10351,19 +10638,19 @@ msgstr "选择文件" msgid "Select a game" msgstr "选择游戏" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "选择要安装到 NAND 的软件" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "选择 e-Reader 卡" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "选择 RSO 模块地址:" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "选择要播放的录制文件" @@ -10371,12 +10658,12 @@ msgstr "选择要播放的录制文件" msgid "Select the Virtual SD Card Root" msgstr "选择虚拟 SD 卡根目录" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "选择密钥文件 (OTP/SEEPROM 转储)" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "选择一个存档文件" @@ -10392,7 +10679,7 @@ msgstr "选择要保存多个转换镜像的位置" msgid "Selected Font" msgstr "所选字体" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "所选控制器预设不存在" @@ -10404,15 +10691,15 @@ msgstr "所选控制器预设不存在" msgid "Selected game doesn't exist in game list!" msgstr "所选游戏在游戏列表中不存在!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "选定的线程调用栈" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "选定的线程上下文" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -10420,7 +10707,7 @@ msgstr "" "选择要使用的硬件适配器。

%1 不支持此功能。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -10428,6 +10715,25 @@ msgstr "" "选择要使用的硬件适配器。

如无法确定,请选择第一个。" "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -10444,23 +10750,29 @@ msgstr "" "一部分电视采用被动模式。

如无法确定,请选择“关”。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -"选择渲染时使用哪种长宽比。
每个游戏的原生长宽比可能略有不同。
“自动”:" -"使用原生长宽比。
“强制 16:9”:模仿一个宽屏长宽比的模拟电视。
“强制 " -"4:3”:模仿一个标准的 4:3 模拟电视。
“拉伸到窗口”:将图像拉伸至窗口大小。" -"
“自定义”:对应使用特定长宽比金手指运行的游戏

如" -"无法确定,请选择“自动”。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -10478,7 +10790,7 @@ msgstr "" msgid "Send" msgstr "发送" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "感应条位置:" @@ -10505,16 +10817,12 @@ msgstr "服务器端口" msgid "Server rejected traversal attempt" msgstr "穿透尝试被服务器拒绝" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "设置值(&V)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "设置 blr (&B)" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "设置 PC" @@ -10530,23 +10838,23 @@ msgstr "给插槽 A 设置存储卡文件" msgid "Set memory card file for Slot B" msgstr "给插槽 B 设置存储卡文件" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "设置符号终止地址(&E)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "设置符号大小(&S)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "设置符号终止地址" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "设置符号大小 (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10555,17 +10863,17 @@ msgstr "" "将 PAL 制式 Wii 游戏的显示模式由 50Hz (576i) 改为 60Hz (480i)。\n" "可能并不适用于所有游戏。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "设置 Wii 的系统语言。" -#: 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." msgstr "以毫秒为单位设置延迟。较高的值可能会减少音频噪声。仅限某些后端。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10579,20 +10887,20 @@ msgstr "" msgid "Settings" msgstr "设置" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: 无法创建 setting.txt 文件" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "严重性" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "着色器编译" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "摇晃" @@ -10609,16 +10917,16 @@ msgstr "新干线" msgid "Shinkansen Controller" msgstr "新干线控制器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "显示百分比速度" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "显示日志(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "显示工具栏(&T)" @@ -10626,53 +10934,53 @@ msgstr "显示工具栏(&T)" msgid "Show Active Title in Window Title" msgstr "在标题栏显示当前游戏名" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "显示全部" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "显示澳大利亚" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "在 Discord 软件中显示当前游戏" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "显示 ELF/DOL" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "优先显示启用的代码" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "显示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "显示帧计数器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "显示帧生成时间" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "显示法国" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "显示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "显示德国" @@ -10684,23 +10992,23 @@ msgstr "叠加显示高尔夫模式" msgid "Show Infinity Base" msgstr "显示 Infinity 底座" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "显示输入回显" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "显示意大利" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "显示日本" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "显示韩国" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "显示延迟计数器" @@ -10708,19 +11016,19 @@ msgstr "显示延迟计数器" msgid "Show Language:" msgstr "显示语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "显示日志设置(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "显示联机信息" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "显示联机延迟" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "显示荷兰" @@ -10728,32 +11036,36 @@ msgstr "显示荷兰" msgid "Show On-Screen Display Messages" msgstr "显示屏显消息" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "显示 PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "显示性能图表" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "显示平台" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "显示地区" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "显示重录计数器" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "显示俄罗斯" @@ -10761,72 +11073,72 @@ msgstr "显示俄罗斯" msgid "Show Skylanders Portal" msgstr "显示 Skylanders 传送门" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "显示西班牙" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "显示速度颜色" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "显示统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "显示系统频率" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "显示台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "显示美国" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "显示未知" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "显示垂直消隐时间" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "显示 VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "显示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "显示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "显示全球" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "在内存中显示(&M)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "在代码中显示" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "在内存中显示" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "在代码中显示" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "在内存中显示" @@ -10834,11 +11146,11 @@ msgstr "在内存中显示" msgid "Show in server browser" msgstr "在服务器浏览器中显示" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "在内存中显示目标(&Y)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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." @@ -10846,7 +11158,7 @@ msgstr "" "在联机游戏时显示聊天消息、缓冲变化和未同步警告。

如" "无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: 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.
如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10864,7 +11176,7 @@ msgstr "" "显示与全速相对的百分比模拟速度。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:258 +#: 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 " @@ -10873,7 +11185,7 @@ msgstr "" "以毫秒显示每个不同渲染帧与标准差之间的平均时间。

如" "无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: 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." @@ -10882,7 +11194,7 @@ msgstr "" "以毫秒显示每个渲染帧与标准差之间的平均时间。

如无法" "确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:254 +#: 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." @@ -10891,7 +11203,7 @@ msgstr "" "显示每秒呈现的不同帧数以衡量视觉平滑度。

如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: 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:265 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -10908,7 +11220,13 @@ msgstr "" "在联机游戏时显示玩家的最大延迟。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10920,34 +11238,34 @@ msgstr "" msgid "Side-by-Side" msgstr "左右" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "保持横握" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "切换横握" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "横握 Wii 遥控器" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "签名数据库" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "有符号 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "有符号 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "有符号 8" @@ -10956,7 +11274,7 @@ msgid "Signed Integer" msgstr "有符号整数" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "简体中文" @@ -10973,17 +11291,17 @@ 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." msgstr "伸缩缓冲区的大小,以毫秒计。数值过低可能导致噼啪声。" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "跳过" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "跳过绘制" @@ -11026,24 +11344,24 @@ msgstr "" "dolphin_emphasis>" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "Skylander %1" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;所有文件 (*)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "Skylander 合集路径:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "在此合集中未找到 Skylander。是否创建新文件?" @@ -11051,10 +11369,6 @@ msgstr "在此合集中未找到 Skylander。是否创建新文件?" msgid "Skylanders Manager" msgstr "Skylander 管理器" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "未找到该用户的 Skylanders 文件夹。是否创建新文件夹?" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -11064,7 +11378,7 @@ msgstr "滑品板" msgid "Slot A" msgstr "插槽 A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "插槽 A:" @@ -11072,7 +11386,7 @@ msgstr "插槽 A:" msgid "Slot B" msgstr "插槽 B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "插槽 B:" @@ -11080,7 +11394,7 @@ msgstr "插槽 B:" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "捕获挨着最近八边形轴的拇指摇杆位置" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "套接字表" @@ -11106,12 +11420,12 @@ msgstr "" "您提供的某些值无效。\n" "请检查高亮显示的值。" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "按字母排序" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "声音:" @@ -11125,27 +11439,27 @@ msgstr "西班牙" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "西班牙语" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "扬声器声像" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "扬声器音量:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "专门化(默认)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "特定" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -11172,15 +11486,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "小龙斯派罗的大冒险" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "堆栈结束" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "堆栈开始" @@ -11193,25 +11507,28 @@ msgstr "标准控制器" msgid "Start" msgstr "开始" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "开始联机...(&N)" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "开始新的金手指搜索" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "开始录制输入(&C)" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "开始录制" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "以全屏启动" @@ -11227,10 +11544,10 @@ msgstr "启动时附带 Riivolution 补丁..." msgid "Started game" msgstr "游戏已启动" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "状态" @@ -11240,7 +11557,7 @@ msgstr "方向盘" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "单步" @@ -11252,13 +11569,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "单步跳过" @@ -11274,7 +11591,7 @@ msgstr "跳出超时!" msgid "Step over in progress..." msgstr "跳过正在处理..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "单步成功!" @@ -11283,7 +11600,7 @@ msgstr "单步成功!" msgid "Stepping" msgstr "步进" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "立体声" @@ -11313,18 +11630,14 @@ msgstr "摇杆" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "停止播放/录制输入" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "停止录制" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "游戏已停止" @@ -11363,7 +11676,7 @@ msgstr "" "开启 = XFB 副本为纹理
关闭 = XFB 副本为内存(和纹理)" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "拉伸到窗口大小" @@ -11398,8 +11711,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "成功" @@ -11426,7 +11739,7 @@ msgstr "在 %1 个存档文件中 %n 个导出成功。" msgid "Successfully exported save files" msgstr "成功导出存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "已成功从 NAND 中提取证书" @@ -11438,12 +11751,12 @@ msgstr "提取文件成功。" msgid "Successfully extracted system data." msgstr "提取系统数据成功。" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "导入存档文件成功。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "成功将此软件安装到 NAND。" @@ -11454,11 +11767,11 @@ msgstr "成功将此软件从 NAND 中移除。" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "超级充能者" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "支持" @@ -11466,16 +11779,16 @@ msgstr "支持" msgid "Supported file formats" msgstr "支持的文件格式" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "环绕" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "已暂停" @@ -11485,12 +11798,12 @@ msgstr "交换双眼" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "交换力量" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "交换者" @@ -11503,7 +11816,7 @@ msgstr "" "定,请不要选中此项。
" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "挥舞" @@ -11517,39 +11830,21 @@ msgid "Switch to B" msgstr "转换到 B" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "符号" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "符号 (%1) 终止地址:" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" -"未找到符号映射。\n" -"\n" -"如果不存在,你可以从菜单栏生成一个:\n" -"符号 -> 生成符号自 ->\n" -"\t地址 | 签名数据库 | RSO 模块" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "符号名:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "符号" @@ -11576,7 +11871,7 @@ msgid "" msgstr "" "同步 GPU 与 CPU 线程以帮助防止双核模式下的随机卡死。(开=兼容,关=快速)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11595,24 +11890,24 @@ msgid "Synchronizing save data..." msgstr "正在同步存档数据..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "系统语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "TAS 工具" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "标签" @@ -11622,7 +11917,7 @@ msgstr "标签" msgid "Taiko Drum" msgstr "太鼓" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "尾" @@ -11630,15 +11925,15 @@ msgstr "尾" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "屏幕截图" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "目标地址范围无效。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11648,7 +11943,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "科技" @@ -11656,6 +11951,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11665,7 +11966,7 @@ msgstr "纹理缓存" msgid "Texture Cache Accuracy" msgstr "纹理缓存精度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "转储纹理" @@ -11677,7 +11978,7 @@ msgstr "纹理过滤" msgid "Texture Filtering:" msgstr "纹理过滤:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "显示纹理格式" @@ -11704,7 +12005,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "分区 {0} 的 H3 哈希表不正确。" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "此 IPL 文件不是已知的正确转储。(CRC32: {0:x})" @@ -11718,13 +12019,13 @@ msgstr "此 IPL 文件不是已知的正确转储。(CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "缺少杰作分区。" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "NAND 已修复。" @@ -11737,11 +12038,11 @@ msgstr "" "TMD 文件未正确签名。如果你将此游戏移动或复制到 SD 卡,Wii 系统菜单将不再运行" "该游戏,并且也会拒绝将其复制或移动回 NAND。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" -msgstr "此 Skylander 拥有的金钱数量。介于 0 至 65000 之间" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" +msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11779,6 +12080,13 @@ msgstr "分区 {0} 的数据大小无法用区块大小平均分配。" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "解密密钥需要附加到 NAND 备份文件中。" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11801,7 +12109,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:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "无法找到已可插入的光盘。" @@ -11822,17 +12130,17 @@ msgstr "模拟的 Wii 主机已经是最新的。" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "输入的 MAC 地址无效。" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "输入的 PID 无效。" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "输入的 VID 无效。" @@ -11840,7 +12148,7 @@ msgstr "输入的 VID 无效。" msgid "The expression contains a syntax error." msgstr "此表达式含有语法错误。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11860,7 +12168,7 @@ msgstr "" "文件 %1 已经存在。\n" "是否替换?" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11876,7 +12184,7 @@ msgstr "文件 {0} 无法以写入形式打开。请检查该文件是否已经 msgid "The file {0} was already open, the file header will not be written." msgstr "文件 {0} 已经打开,文件头不会被写入。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11889,7 +12197,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "文件系统无效或无法读取。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11954,12 +12262,11 @@ msgstr "哈希值不匹配!" msgid "The hashes match!" msgstr "哈希值匹配!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" -"此 Skylander 的英雄等级。仅在《小龙斯派罗大冒险》中出场。介于 0 至 100 之间" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -11973,11 +12280,11 @@ msgstr "" msgid "The install partition is missing." msgstr "缺少安装分区。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "最近一次将角色放置在传送门上的时间" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11995,9 +12302,9 @@ msgstr "" "影片指示应将存储卡插入 {0:n},但当前未插入存储卡(而是插入了 {1})。为使影片" "正确同步,请将所选设备更改为存储卡或 GCI 文件夹。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" -msgstr "Skylander 的昵称。不能超过 15 个字符" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" +msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12025,12 +12332,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "产生的已解密 AR 代码不包含任何行。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 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:596 +#: 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 占用。" @@ -12067,7 +12374,7 @@ msgstr "指定的公用密钥索引是 {0} ,但应该为 {1} 。" msgid "The specified file \"{0}\" does not exist" msgstr "指定的文件 “{0}” 不存在" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -12084,11 +12391,11 @@ msgstr "目标存储卡已包含文件 “%1”。" msgid "The ticket is not correctly signed." msgstr "ticket 文件未正确签名。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "在游戏中使用此角色的总时间(以秒为单位)" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "此角色的玩具代码。仅适用于真实存在的角色玩具。" @@ -12096,15 +12403,15 @@ msgstr "此角色的玩具代码。仅适用于真实存在的角色玩具。" msgid "The type of a partition could not be read." msgstr "无法读取的分区类型。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "此 Skylander 类型没有任何数据可供修改!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "此 Skylander 的类型未知!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "此 Skylander 的类型未知,或当前还无法修改。" @@ -12127,7 +12434,7 @@ msgstr "缺少更新分区。" msgid "The update partition is not at its normal position." msgstr "更新分区未处于正常位置。" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12155,7 +12462,7 @@ msgstr "分区 {0} 未正确对齐。" msgid "There are too many partitions in the first partition table." msgstr "第一个分区表中的分区太多。" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" @@ -12165,7 +12472,12 @@ msgstr "" "\n" "您要在关闭前保存吗?" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "没有需要撤销的操作。" @@ -12205,19 +12517,19 @@ msgid "" msgstr "" "此韩语游戏设置为使用通常不在韩版主机上用到的 IOS。 这很可能导致错误 #002。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "此 Skylander 类型现在还无法修改!" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "此 USB 设备已列入白名单。" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "无法启动该 WAD" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "此 WAD 无效。" @@ -12352,6 +12664,10 @@ msgstr "" msgid "This is a good dump." msgstr "这是一个正确的转储。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "此会话需要密码:" @@ -12367,11 +12683,11 @@ msgstr "" "\n" "如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "该软件不能用于运行你非法持有的游戏。" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "无法启动该软件。" @@ -12384,7 +12700,7 @@ msgstr "此游戏设置为使用无效的 IOS。" msgid "This title is set to use an invalid common key." msgstr "此游戏设置为使用无效的公用密钥。" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12395,7 +12711,7 @@ msgstr "" "\n" "DSP HLE: 未知 Ucode (CRC = {0:08x}) - 强制 AX." -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -12417,6 +12733,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "该数值将与图像设置中设定的深度值相乘。" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -12434,11 +12757,11 @@ msgstr "" "可以防止在某些使用 EFB 读取的游戏中出现不同步。请确保所有人都使用相同的视频后" "端。" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "线程上下文" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "线程" @@ -12446,12 +12769,12 @@ msgstr "线程" msgid "Threshold" msgstr "阈值" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "TiB" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "倾斜" @@ -12465,10 +12788,10 @@ msgstr "触发校准的稳定输入时间段。(0 为禁用)" msgid "Timed Out" msgstr "超时" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "标题" @@ -12482,7 +12805,7 @@ msgstr "至" msgid "To:" msgstr "至:" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "切换全屏(&F)" @@ -12507,7 +12830,7 @@ msgid "Toggle Aspect Ratio" msgstr "切换长宽比" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "切换断点" @@ -12559,15 +12882,19 @@ msgstr "切换 XFB 副本" msgid "Toggle XFB Immediate Mode" msgstr "切换 XFB 立即模式" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "标记化失败。" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "工具栏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "顶部" @@ -12575,9 +12902,8 @@ msgstr "顶部" msgid "Top-and-Bottom" msgstr "上下" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "总命中数" @@ -12614,28 +12940,28 @@ msgstr "总共移动距离。" msgid "Touch" msgstr "接触" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "玩具代码:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "繁体中文" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "陷阱" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "陷阱大师" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "陷阱小队" @@ -12672,26 +12998,26 @@ msgid "Triggers" msgstr "扳机" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "奖杯" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "类型" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "基于类型对齐" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "典型 GameCube/Wii 地址空间" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "未知" @@ -12703,7 +13029,7 @@ msgstr "美国" msgid "USB Device Emulation" msgstr "USB 设备模拟" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "USB 模拟" @@ -12715,13 +13041,13 @@ msgstr "USB 模拟设备" msgid "USB Gecko" msgstr "USB Gecko" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "USB 白名单错误" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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. " @@ -12731,7 +13057,7 @@ msgstr "" "低端硬件。

如无法确定,请选择此模式。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:277 +#: 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." @@ -12742,7 +13068,7 @@ msgstr "" "

除非使用混合超着色器遇到卡顿并且拥有非常强大的 " "GPU,否则不要使用此选项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12754,7 +13080,7 @@ msgstr "" "

在理想情况下将在消除着色器编译卡顿的同时尽可能减小性能影响,但效果因" "视频驱动的行为而异。" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "无法自动检测 RSO 模块" @@ -12766,11 +13092,11 @@ msgstr "无法连接更新服务器。" msgid "Unable to create updater copy." msgstr "无法创建更新程序副本。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "无法修改 Skylander!" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "无法打开文件。" @@ -12797,7 +13123,7 @@ msgstr "" "\n" "是否要忽略此行继续分析?" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "无法读取文件。" @@ -12820,15 +13146,15 @@ msgstr "未压缩的 GC/Wii 镜像 (*.iso *.gcm)" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "亡灵" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "撤销载入状态" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "撤销保存状态" @@ -12848,11 +13174,11 @@ msgstr "" "卸载 WAD 会将该游戏的当前已安装版本从 NAND 中移除,而不会删除其存档。是否继" "续?" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "美国" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12863,12 +13189,13 @@ msgstr "美国" msgid "Unknown" msgstr "未知" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "未知 (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "未知 DVD 命令 {0:08x} - 致命错误" @@ -12892,11 +13219,11 @@ msgid "" "player!" msgstr "收到未知的 同步_存档_数据 消息,ID:{0} 来自玩家:{1} 剔除玩家!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "未知的 Skylander 类型!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "未知地址空间" @@ -12904,7 +13231,7 @@ msgstr "未知地址空间" msgid "Unknown author" msgstr "未知作者" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "未知数据类型" @@ -12912,7 +13239,7 @@ msgstr "未知数据类型" msgid "Unknown disc" msgstr "未知光盘" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "发生未知错误。" @@ -12932,16 +13259,18 @@ msgstr "收到未知的消息,ID:{0}" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "收到未知的消息,ID:{0} 来自玩家:{1} 剔除玩家!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "Unknown(%1 %2).sky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "Unknown(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "无限制" @@ -12974,22 +13303,22 @@ msgid "Unpacking" msgstr "正在解包" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "未保存的更改" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "无符号 16" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "无符号 32" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "无符号 8" @@ -13053,23 +13382,23 @@ msgstr "" "正在更新软件 %1...\n" "这可能需要一段时间。" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "保持竖握" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "切换竖握" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "竖握 Wii 遥控器" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "使用情况统计报告设置" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "使用 8.8.8.8 作为通用 DNS,或输入你的自定义设置" @@ -13081,15 +13410,15 @@ msgstr "使用所有 Wii 存档数据" msgid "Use Built-In Database of Game Names" msgstr "使用内建数据库游戏名称" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "使用无损编解码器 (FFV1)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "使用鼠标控制指针" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "使用 PAL60 模式 (EuRGB60)" @@ -13097,7 +13426,7 @@ msgstr "使用 PAL60 模式 (EuRGB60)" msgid "Use Panic Handlers" msgstr "使用警告程序" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -13121,59 +13450,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "双眼使用同一个深度缓冲,部分游戏需要。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "在扫描时使用内存映射器配置" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "使用物理地址" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "如可能则使用虚拟地址" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" -"用于根据应该运行的时间来查找函数。\n" -"类似于 Cheat Engine 终极映射。\n" -"使用前必须加载符号映射。\n" -"包含/排除列表将在结束/重启模拟时持续存在。\n" -"这些列表在 Dolphin 关闭时不会保留。\n" -"\n" -"“开始录制”:跟踪运行的函数。\n" -"“停止录制”:擦除当前录制内容但不更改到列表。\n" -"“代码未执行”:录制时点击,则将录制的函数添加到排除列表,然后重置录制列表。\n" -"“代码已执行”:录制时点击,则将录制的函数添加到包含列表,然后重置录制列表。\n" -"\n" -"在你同时使用排除和包含一次后,将从包含列表中减去排除列表,并显示任意剩余的包" -"含数。\n" -"你可以继续使用“代码未执行”/“代码已执行”来缩小结果范围。\n" -"\n" -"使用保存将当前列表存储到 Dolphin 的日志文件夹中 (文件 -> 打开用户文件夹)" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "用户配置" @@ -13211,7 +13499,7 @@ msgstr "" "的提速,取决于游戏和/或 GPU。

如无法确定,请选中此" "项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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 " @@ -13220,7 +13508,7 @@ msgstr "" "使用整个屏幕进行渲染。

如果禁用,则会创建一个渲染窗口。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "使用 Qt %1" @@ -13237,31 +13525,31 @@ msgstr "使用 Qt %1" msgid "Using TTL %1 for probe packet" msgstr "使用 TTL %1 探测数据包" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "通常用于轻量对象" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "通常用于法线矩阵" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "通常用于位置矩阵" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "通常用于纹理坐标矩阵" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "实用功能" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "垂直同步" @@ -13269,11 +13557,11 @@ msgstr "垂直同步" msgid "VBI Skip" msgstr "跳过垂直消隐中断" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "值跟踪到当前指令。" @@ -13281,17 +13569,17 @@ msgstr "值跟踪到当前指令。" msgid "Value:" msgstr "值:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "输入的变量无效!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "变量:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "载具" @@ -13307,16 +13595,16 @@ msgstr "详细" msgid "Verify" msgstr "验证" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "验证完整性" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "验证证书" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "正在验证" @@ -13330,7 +13618,7 @@ msgid "Vertex Rounding" msgstr "顶点取整" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "垂直视野" @@ -13344,12 +13632,12 @@ msgid "Video" msgstr "视频" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "查看代码(&C)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "查看内存(&M)" @@ -13357,14 +13645,14 @@ msgstr "查看内存(&M)" msgid "Virtual Notches" msgstr "虚拟接口" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "虚拟地址空间" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "音量" @@ -13384,31 +13672,31 @@ msgstr "增大音量" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "WAD 文件 (*.wad)" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "WAD 安装失败:无法创建 Wii 商店日志文件。" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "WAD 安装失败: 无法完成游戏导入。" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "WAD 安装失败:无法导入内容 {0:08x}。" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "WAD 安装失败:无法初始化游戏导入(错误 {0})。" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "WAD 安装失败: 所选文件不是有效的 WAD。" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "等待" @@ -13453,12 +13741,12 @@ msgstr "WFS 路径:" msgid "WIA GC/Wii images (*.wia)" msgstr "WIA GC/Wii 镜像 (*.wia)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "等待第一次扫描..." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -13473,7 +13761,7 @@ msgstr "" "低帧率,因而建议启用此选项。

其他情况下,如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -13501,7 +13789,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "警告" @@ -13597,7 +13885,7 @@ msgstr "监视" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "水" @@ -13614,7 +13902,7 @@ msgstr "西方 (Windows-1252)" msgid "Whammy" msgstr "颤音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -13625,7 +13913,7 @@ msgstr "" "卡中启用了“特殊多级纹理检测”,则特殊基本纹理也会被转储。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -13636,7 +13924,7 @@ msgstr "" "强选项卡中启用了“特殊多级纹理检测”,则特殊多级纹理也会被转储。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "USB 直通设备白名单" @@ -13660,7 +13948,7 @@ msgstr "Wii 菜单" msgid "Wii NAND Root:" msgstr "Wii NAND 根目录:" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "Wii 遥控器" @@ -13668,7 +13956,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -13686,7 +13974,7 @@ msgstr "Wii 遥控器按键" msgid "Wii Remote Gyroscope" msgstr "Wii 遥控器陀螺仪" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii 遥控器设置" @@ -13706,7 +13994,7 @@ msgstr "Wii TAS 输入 %1 - Wii 遥控器" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS 输入 %1 - Wii 遥控器 + 双节棍" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "Wii 和 Wii 遥控器" @@ -13714,11 +14002,11 @@ msgstr "Wii 和 Wii 遥控器" msgid "Wii data is not public yet" msgstr "Wii 数据尚未公开" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 存档文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "WiiTools 签名 MEGA 文件" @@ -13728,11 +14016,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "只要有活动窗口就把鼠标光标锁定到渲染部件。你可以设置一个热键来解锁。 " +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "窗口大小" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "自动换行" @@ -13746,10 +14046,14 @@ msgstr "全球" msgid "Write" msgstr "写入" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "只写" @@ -13791,6 +14095,14 @@ msgstr "区域错误" msgid "Wrong revision" msgstr "错误修订版" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -13799,11 +14111,11 @@ msgstr "错误修订版" msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "XF 寄存器" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA 目标地址" @@ -13838,7 +14150,7 @@ msgstr "是" msgid "Yes to &All" msgstr "全部选是(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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 " @@ -13847,7 +14159,7 @@ msgstr "" "即将把 %2 的文件内容转换到 %1 的文件夹中。文件夹的所有当前内容将被删除。请确" "定是否要继续?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: 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 " @@ -13980,7 +14292,7 @@ msgstr "" "您想现在停下来修复此问题吗?\n" "如果选择“否”,音频可能会嘈杂混乱。" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13999,15 +14311,19 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 代码不支持" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "Dophin 未知的零代码:{0:08x}" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "[%1, %2]" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "[%1, %2] 和 [%3, %4]" @@ -14015,11 +14331,11 @@ msgstr "[%1, %2] 和 [%3, %4]" msgid "^ Xor" msgstr "^ 异或" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "已对齐" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "任意值" @@ -14038,21 +14354,21 @@ msgstr "厘米" msgid "d3d12.dll could not be loaded." msgstr "无法加载 d3d12.dll。" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "默认" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "连接已断开" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader 卡 (*.raw);;所有文件 (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "errno" @@ -14060,31 +14376,35 @@ msgstr "errno" msgid "fake-completion" msgstr "伪完成" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "等于" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "大于" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "大于或等于" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "小于" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "小于或等于" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "不等于" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "上个值" @@ -14094,7 +14414,7 @@ msgstr "上个值" msgid "m/s" msgstr "米/秒" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -14106,13 +14426,13 @@ msgstr "" msgid "none" msgstr "无" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "关" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "开" @@ -14129,16 +14449,20 @@ msgstr "秒" msgid "sRGB" msgstr "sRGB" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "这个值:" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "uDraw 绘图板" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "未对齐" @@ -14153,11 +14477,11 @@ msgstr "未对齐" msgid "{0} (Masterpiece)" msgstr "{0} (Masterpiece)" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "{0} (NKit)" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "{0} IPL 位于 {1} 目录中。光盘可能无法识别" @@ -14194,7 +14518,7 @@ msgstr "| 或" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -14205,8 +14529,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index 26777b9aeb29..98e634dc1c60 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-02-01 21:47+0100\n" +"POT-Creation-Date: 2024-04-22 08:41+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-" @@ -64,8 +64,8 @@ msgstr "" #. i18n: The symbol/abbreviation for percent. #. i18n: The percent symbol. #: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:293 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:299 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:296 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:302 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45 @@ -84,19 +84,20 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:322 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:323 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:349 msgid "%1 %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:331 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:332 msgid "%1 %2 %3" msgstr "" +#: Source/Core/DolphinQt/AboutDialog.cpp:24 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:171 msgid "%1 (%2)" @@ -117,7 +118,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 msgid "%1 (Stock)" msgstr "" @@ -156,6 +157,11 @@ msgstr "" msgid "%1 MB (MEM2)" msgstr "" +#. 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 "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "" @@ -179,13 +185,13 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:166 +#: 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:177 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -201,12 +207,12 @@ msgstr "" msgid "%1 is playing %2" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 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 +229,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -231,26 +237,26 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 msgid "%1% (Normal Speed)" 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:640 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" 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:637 msgid "%1's value is used" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:174 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" msgstr "" @@ -288,20 +294,20 @@ msgstr "" msgid "%1x SSAA" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:327 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:345 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format msgctxt "" msgid "%n address(es) remain." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:317 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:318 #, c-format msgctxt "" msgid "%n address(es) were removed." @@ -311,23 +317,23 @@ msgstr "" msgid "& And" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:433 +#: Source/Core/DolphinQt/GBAWidget.cpp:438 msgid "&1x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:435 +#: Source/Core/DolphinQt/GBAWidget.cpp:440 msgid "&2x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:437 +#: Source/Core/DolphinQt/GBAWidget.cpp:442 msgid "&3x" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:439 +#: Source/Core/DolphinQt/GBAWidget.cpp:444 msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:626 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "&About" msgstr "關於(&A)" @@ -335,12 +341,12 @@ msgstr "關於(&A)" msgid "&Add Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:63 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 msgid "&Add New Code..." msgstr "新增代碼 (&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 msgid "&Add function" msgstr "新增功能 (&A)" @@ -348,27 +354,27 @@ msgstr "新增功能 (&A)" msgid "&Add..." msgstr "新增... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:514 +#: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:559 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" msgstr "聲音設定 (&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 msgid "&Auto Update:" msgstr "自動更新 (&A)" -#: Source/Core/DolphinQt/GBAWidget.cpp:442 +#: Source/Core/DolphinQt/GBAWidget.cpp:447 msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:483 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Breakpoints" msgstr "中斷點(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:609 +#: Source/Core/DolphinQt/MenuBar.cpp:638 msgid "&Bug Tracker" msgstr "" @@ -376,15 +382,15 @@ msgstr "" msgid "&Cancel" msgstr "取消 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:233 +#: Source/Core/DolphinQt/MenuBar.cpp:262 msgid "&Cheats Manager" msgstr "作弊碼管理器 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:648 msgid "&Check for Updates..." msgstr "檢查更新 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Clear Symbols" msgstr "" @@ -392,19 +398,24 @@ msgstr "" msgid "&Clone..." msgstr "相容版 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Code" msgstr "代碼 (&C)" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:561 +#: Source/Core/DolphinQt/MenuBar.cpp:590 msgid "&Controller Settings" msgstr "控制器設定(&C)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +msgid "&Copy Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" msgstr "" @@ -412,7 +423,7 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "刪除 (&D)" @@ -429,9 +440,9 @@ msgstr "刪除監視 (&D)" msgid "&Delete Watches" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:64 -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 msgid "&Edit Code..." msgstr "編輯代碼 (&E)" @@ -439,23 +450,23 @@ msgstr "編輯代碼 (&E)" msgid "&Edit..." msgstr "編輯 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:213 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "&Eject Disc" msgstr "退出碟片 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Emulation" msgstr "模擬 (&E)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:257 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:414 +#: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:422 +#: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." msgstr "" @@ -463,55 +474,53 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:203 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "&File" msgstr "檔案 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:610 msgid "&Font..." msgstr "字體... (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Frame Advance" msgstr "畫格步進(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:592 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:993 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:605 +#: Source/Core/DolphinQt/MenuBar.cpp:634 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:580 -msgid "&Go to start of function" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:558 +#: Source/Core/DolphinQt/MenuBar.cpp:587 msgid "&Graphics Settings" msgstr "影像設定(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:596 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&Help" msgstr "說明(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "&Hotkey Settings" msgstr "快捷鍵設定(&D)" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:252 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:411 +#: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:419 +#: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." msgstr "" @@ -519,19 +528,19 @@ msgstr "" msgid "&Import..." msgstr "匯入... (&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:239 +#: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:452 +#: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:508 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&JIT" msgstr "&JIT" @@ -539,15 +548,19 @@ msgstr "&JIT" msgid "&Language:" msgstr "語言 (&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +msgid "&Load Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" msgstr "讀取進度(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "&Load Symbol Map" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:253 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" msgstr "" @@ -557,23 +570,23 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:440 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:492 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Memory" msgstr "記憶卡(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:755 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "&Movie" msgstr "影片(&M)" -#: Source/Core/DolphinQt/GBAWidget.cpp:425 +#: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:500 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" msgstr "" @@ -582,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:207 +#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 msgid "&Open..." msgstr "開啟(&O)..." -#: Source/Core/DolphinQt/MenuBar.cpp:549 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Options" msgstr "選項(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1059 msgid "&Patch HLE Functions" msgstr "修正 HLE 功能 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:357 msgid "&Pause" msgstr "暫停(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:327 +#: Source/Core/DolphinQt/MenuBar.cpp:356 msgid "&Play" msgstr "執行(&P)" @@ -606,15 +619,15 @@ msgstr "執行(&P)" msgid "&Properties" msgstr "屬性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:770 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "&Read-Only Mode" msgstr "唯讀模式(&R)" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:456 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" msgstr "寄存器(&R)" @@ -622,41 +635,45 @@ msgstr "寄存器(&R)" msgid "&Remove" msgstr "移除 (&R)" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:90 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:91 msgid "&Remove Code" msgstr "移除代碼 (&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 msgid "&Rename symbol" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:405 -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/MenuBar.cpp:359 msgid "&Reset" msgstr "重新啟動(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:230 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1000 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +msgid "&Save Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:401 +#: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:238 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" msgstr "限制速度 (&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:329 +#: Source/Core/DolphinQt/MenuBar.cpp:358 msgid "&Stop" msgstr "停止(&S)" @@ -664,15 +681,19 @@ msgstr "停止(&S)" msgid "&Theme:" msgstr "主題 (&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:465 +#: Source/Core/DolphinQt/MenuBar.cpp:494 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:228 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +msgid "&Tool" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" msgstr "工具(&T)" -#: Source/Core/DolphinQt/GBAWidget.cpp:397 +#: Source/Core/DolphinQt/GBAWidget.cpp:402 msgid "&Unload ROM" msgstr "" @@ -682,17 +703,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:414 +#: Source/Core/DolphinQt/MenuBar.cpp:443 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:475 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:627 msgid "&Website" msgstr "網站(&W)" @@ -704,11 +725,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1344 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1524 +#: Source/Core/DolphinQt/MenuBar.cpp:1569 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -724,7 +745,7 @@ msgstr "" msgid "(System)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" msgstr "" @@ -732,7 +753,7 @@ msgstr "" msgid "(off)" msgstr "(關閉)" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142 msgid "(ppc)" msgstr "" @@ -752,15 +773,15 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:375 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 @@ -771,12 +792,12 @@ msgstr "" msgid "/ Divide" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" msgstr "" @@ -788,7 +809,7 @@ msgstr "" msgid "128 Mbit (2043 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" msgstr "" @@ -796,11 +817,11 @@ msgstr "" msgid "1440p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" msgstr "" @@ -812,17 +833,17 @@ msgstr "" msgid "16-bit" msgstr "16位元" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:103 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:95 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -834,11 +855,11 @@ msgstr "" msgid "1x" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" msgstr "" @@ -850,7 +871,7 @@ msgstr "" msgid "2x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" msgstr "" @@ -862,25 +883,25 @@ msgstr "" msgid "32-bit" msgstr "32位元" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:109 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:105 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:97 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" 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:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "3D" msgstr "" @@ -894,11 +915,11 @@ msgstr "" msgid "3x" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" msgstr "" @@ -906,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -922,7 +943,7 @@ msgstr "" msgid "4x Anisotropic" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" msgstr "" @@ -934,22 +955,22 @@ msgstr "" msgid "64 Mbit (1019 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:107 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:99 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" msgstr "" @@ -957,11 +978,11 @@ msgstr "" msgid "720p" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" msgstr "" @@ -973,13 +994,13 @@ msgstr "" msgid "8-bit" msgstr "8位元" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:101 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:93 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:140 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" msgstr "" @@ -995,7 +1016,7 @@ msgstr "" msgid "< Less-than" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_Device.h:131 +#: Source/Core/Core/HW/EXI/EXI_Device.h:132 msgid "" msgstr "<無>" @@ -1007,11 +1028,11 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "" "AutoStepping timed out. Current instruction is " @@ -1041,12 +1062,12 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1545 +#: Source/Core/DolphinQt/MainWindow.cpp:1612 msgid "A NetPlay Session is already in progress!" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:172 +#: Source/Core/Core/WiiUtils.cpp:173 msgid "" "A different version of this title is already installed on the NAND.\n" "\n" @@ -1056,7 +1077,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:470 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 msgid "A disc is already about to be inserted." msgstr "" @@ -1066,11 +1087,11 @@ msgid "" "space Wii and GC games were meant for." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:228 +#: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:949 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1086,6 +1107,10 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +msgid "A&uto Save" +msgstr "" + #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" @@ -1107,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:138 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1116,8 +1141,8 @@ msgstr "" msgid "AR Codes" msgstr "AR 代碼" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" msgstr "" @@ -1131,7 +1156,7 @@ msgid "About Dolphin" msgstr "關於 Dolphin" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:254 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:257 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51 msgid "Accelerometer" msgstr "" @@ -1150,7 +1175,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" msgstr "" @@ -1236,19 +1261,19 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:176 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1256,7 +1281,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "配接器:" @@ -1266,7 +1291,7 @@ msgstr "配接器:" msgid "Add" msgstr "新增" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:122 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 msgid "Add &breakpoint" msgstr "" @@ -1295,51 +1320,48 @@ msgstr "" msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 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:125 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:901 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 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:327 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Add..." msgstr "新增..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: 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/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/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/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:994 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Address" msgstr "位址" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:44 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:162 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:163 msgid "Address Space" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:123 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" msgstr "" @@ -1400,12 +1422,12 @@ msgid "Advance Game Port" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:165 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43 msgid "Advanced" msgstr "進階" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:233 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:243 msgid "Advanced Settings" msgstr "" @@ -1420,15 +1442,15 @@ msgid "" "forced on.

Bilinear - [4 samples]
Gamma corrected linear " "interpolation between pixels.

Bicubic - [16 samples]
Gamma " "corrected cubic interpolation between pixels.
Good when rescaling between " -"close resolutions. i.e 1080p and 1440p.
Comes in various flavors:
B-" -"Spline: Blurry, but avoids all lobing artifacts
Mitchell-" +"close resolutions, e.g. 1080p and 1440p.
Comes in various flavors:" +"
B-Spline: Blurry, but avoids all lobing artifacts
Mitchell-" "Netravali: Good middle ground between blurry and lobing
Catmull-" "Rom: Sharper, but can cause lobing artifacts

Sharp Bilinear - [1-4 samples]
Similarly to \"Nearest Neighbor\", it maintains a " -"sharp look,
but also does some blending to avoid shimmering.
Works " -"best with 2D games at low resolutions.

Area Sampling - [up to " -"324 samples]
Weights pixels by the percentage of area they occupy. Gamma " -"corrected.
Best for down scaling by more than 2x." +"b> - [1-4 samples]
Similar to \"Nearest Neighbor\", it maintains a sharp " +"look,
but also does some blending to avoid shimmering.
Works best with " +"2D games at low resolutions.

Area Sampling - [up to 324 " +"samples]
Weighs pixels by the percentage of area they occupy. Gamma " +"corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" @@ -1438,16 +1460,16 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:115 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" msgstr "" @@ -1461,11 +1483,11 @@ msgid "All Double" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:771 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:781 +#: Source/Core/DolphinQt/MainWindow.cpp:776 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1473,7 +1495,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "All Files (*)" msgstr "" @@ -1482,7 +1504,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1491,8 +1513,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1409 -#: Source/Core/DolphinQt/MainWindow.cpp:1418 +#: Source/Core/DolphinQt/MainWindow.cpp:1408 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1504,7 +1526,7 @@ msgstr "" msgid "All Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" msgstr "" @@ -1516,15 +1538,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:262 +#: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1552,7 +1574,7 @@ msgstr "" msgid "Always Connected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:447 +#: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" msgstr "" @@ -1590,15 +1612,15 @@ msgstr "邊緣抗鋸齒:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1714 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1052 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1016 +#: Source/Core/DolphinQt/MenuBar.cpp:1056 msgid "Appl&y Signature File..." msgstr "" @@ -1616,7 +1638,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1737 msgid "Apply signature file" msgstr "" @@ -1648,12 +1670,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Aspect Ratio Corrected Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "畫面比例:" @@ -1661,7 +1687,7 @@ msgstr "畫面比例:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" msgstr "" @@ -1669,7 +1695,7 @@ msgstr "" msgid "Assembler" msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:770 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" msgstr "" @@ -1686,7 +1712,7 @@ msgid "" "At least two of the selected save files have the same internal filename." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:281 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 msgid "Attach MotionPlus" msgstr "" @@ -1694,11 +1720,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 "" @@ -1710,12 +1736,12 @@ msgstr "澳洲" msgid "Author" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:68 +#: Source/Core/DolphinQt/AboutDialog.cpp:78 msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自動" @@ -1723,11 +1749,7 @@ msgstr "自動" msgid "Auto (Multiple of 640x528)" msgstr "自動 (640x528 的倍數)" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:101 -msgid "Auto Save" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 msgid "Auto Update Settings" msgstr "" @@ -1739,7 +1761,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1747,32 +1769,32 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:242 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:172 msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "B" msgstr "" @@ -1780,38 +1802,42 @@ msgstr "" msgid "BAT incorrect. Dolphin will now exit" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:73 +#: Source/Core/Core/HW/EXI/EXI_DeviceEthernet.cpp:72 msgid "" "BBA MAC address {0} invalid for XLink Kai. A valid Nintendo GameCube MAC " "address must be used. Generate a new MAC address starting with 00:09:bf or " "00:17:ab." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:210 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 +msgid "BBA destination address" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:537 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: 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:84 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1827,13 +1853,13 @@ msgstr "背景輸入" msgid "Backward" msgstr "向後" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:822 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:808 +#: 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 "" @@ -1841,20 +1867,20 @@ msgstr "" msgid "Bad dump" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:814 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:816 msgid "Bad offset provided." msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: 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:653 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Banner" msgstr "橫幅" @@ -1874,15 +1900,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "基本" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:141 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 msgid "Basic Settings" msgstr "基本設定" @@ -1890,15 +1916,15 @@ msgstr "基本設定" msgid "Bass" msgstr "Bass" -#: Source/Core/DolphinQt/Main.cpp:235 +#: Source/Core/DolphinQt/Main.cpp:236 msgid "Batch mode cannot be used without specifying a game to launch." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:297 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:300 msgid "Battery" msgstr "電池" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Beta (once a month)" msgstr "" @@ -1922,31 +1948,33 @@ msgstr "" msgid "Bilinear" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:429 msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:292 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "" "Blank figure creation failed at:\n" -"%1, try again with a different character" +"%1\n" +"\n" +"Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:692 msgid "Block Size" msgstr "" @@ -1955,7 +1983,7 @@ msgstr "" msgid "Block Size:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "Blocking" msgstr "" @@ -1982,32 +2010,143 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:568 +#: Source/Core/DolphinQt/MenuBar.cpp:597 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1804 +#: Source/Core/DolphinQt/MainWindow.cpp:1807 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:175 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "無框全螢幕" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "下方" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +msgid "Branch Conditional to Link Register" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional to Link Register (LR saved)" +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 "" + +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 +msgid "Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 +msgid "Branch Watch Tool" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +msgid "Branch Watch Tool Help (1/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +msgid "Branch Watch Tool Help (2/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +msgid "Branch Watch Tool Help (3/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +msgid "Branch Watch Tool Help (4/4)" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +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 " +"are familiar with Cheat 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 \"Load From...\" actions are also " +"available, and auto-saving can be enabled to save a snapshot at every step " +"of a search. The \"Pause Branch Watch\" button will halt Branch Watch from " +"tracking further branch hits until it is told to resume. Press the \"Clear " +"Branch Watch\" button to clear all candidates and return to the blacklist " +"phase." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +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 " +"by pressing the \"Code Path Not Taken\", \"Branch Was Overwritten\", and " +"\"Branch Not Overwritten\" buttons. Once the \"Code Path Was Taken\" button " +"is pressed for the first time, Branch Watch will switch to the reduction " +"phase, and the table will populate with all eligible candidates." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch to Count Register" +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 "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +msgid "Branch to Link Register (LR saved)" +msgstr "" + #. i18n: "Branch" means the version control term, not a literal tree branch. -#: Source/Core/DolphinQt/AboutDialog.cpp:53 +#: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 msgid "Branches" msgstr "" @@ -2045,11 +2184,11 @@ msgstr "" msgid "Broadband Adapter (tapserver)" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:57 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:108 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" msgstr "" @@ -2059,11 +2198,11 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:245 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" @@ -2095,7 +2234,7 @@ msgstr "按鈕" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:33 #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:54 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:40 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:121 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:24 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:48 @@ -2111,7 +2250,7 @@ msgstr "按鈕" msgid "Buttons" msgstr "按鈕" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:213 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" msgstr "" @@ -2121,11 +2260,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1011 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:554 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 msgid "CP register " msgstr "" @@ -2137,7 +2276,7 @@ msgstr "" msgid "CPU Options" msgstr "CPU 選項" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" msgstr "" @@ -2145,14 +2284,14 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:325 +#: 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" msgstr "" @@ -2164,11 +2303,11 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:897 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:889 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:920 msgid "Calibration" msgstr "" @@ -2176,19 +2315,19 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:291 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" msgstr "" @@ -2197,64 +2336,76 @@ msgid "Camera 1" msgstr "" #. i18n: Refers to emulated wii remote camera properties. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:242 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:250 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:243 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:251 msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:550 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1535 -#: Source/Core/DolphinQt/MainWindow.cpp:1602 +#: Source/Core/DolphinQt/MainWindow.cpp:1538 +#: Source/Core/DolphinQt/MainWindow.cpp:1605 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:158 -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "取消" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:937 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:968 msgid "Cancel Calibration" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +msgid "Candidates: %1" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" +msgstr "" + #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." msgstr "" -#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:39 +#: Source/Core/Core/Boot/Boot_WiiWAD.cpp:40 msgid "Cannot boot this WAD because it could not be installed to the NAND." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:286 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:634 +#: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:553 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." msgstr "" @@ -2262,19 +2413,21 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:632 +#: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312 +#. i18n: "Captured" is a participle here. This string is used when listing villains, not when a +#. villain was just captured +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" msgstr "" @@ -2292,7 +2445,7 @@ msgstr "" msgid "Center Mouse" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:898 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" msgstr "" @@ -2300,7 +2453,7 @@ msgstr "" msgid "Change &Disc" msgstr "更換光碟(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:212 +#: Source/Core/DolphinQt/MenuBar.cpp:241 msgid "Change &Disc..." msgstr "更換光碟(&D)..." @@ -2308,7 +2461,7 @@ msgstr "更換光碟(&D)..." msgid "Change Disc" msgstr "更換光碟" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Change Discs Automatically" msgstr "" @@ -2316,7 +2469,7 @@ msgstr "" msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: 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." @@ -2342,7 +2495,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 msgid "Character entered is invalid!" msgstr "" @@ -2354,15 +2507,15 @@ msgstr "聊天" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:173 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "尋找作弊代碼" -#: Source/Core/DolphinQt/CheatsManager.cpp:29 +#: Source/Core/DolphinQt/CheatsManager.cpp:30 msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/MenuBar.cpp:306 msgid "Check NAND..." msgstr "" @@ -2370,7 +2523,7 @@ msgstr "" msgid "Check for Game List Changes in the Background" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:58 +#: Source/Core/DolphinQt/AboutDialog.cpp:68 msgid "Check for updates" msgstr "" @@ -2388,27 +2541,27 @@ msgstr "" msgid "China" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:218 msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 msgid "Choose a file to open" msgstr "選擇一個要開啟的檔案" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1757 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1723 +#: Source/Core/DolphinQt/MenuBar.cpp:1762 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 msgid "Choose the GCI base folder" msgstr "" @@ -2435,15 +2588,19 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 msgid "Clear" msgstr "清除" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +msgid "Clear Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" msgstr "" @@ -2451,7 +2608,7 @@ msgstr "" msgid "Clock Override" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:191 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 msgid "Clone and &Edit Code..." msgstr "" @@ -2460,36 +2617,20 @@ msgstr "" msgid "Close" msgstr "關閉" -#: Source/Core/DolphinQt/MenuBar.cpp:551 Source/Core/DolphinQt/MenuBar.cpp:554 +#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 msgid "Co&nfiguration" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:43 msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:163 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:177 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:202 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:210 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:223 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:301 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:311 -msgid "Code Diff Tool" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:537 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:558 -msgid "Code Diff Tool Help" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:67 -msgid "Code did not get executed" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:68 -msgid "Code has been executed" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +msgid "Code Path Was Taken" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 @@ -2516,7 +2657,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1014 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +msgid "Column &Visibility" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." msgstr "" @@ -2543,7 +2688,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:135 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2551,9 +2696,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:664 +#: Source/Core/DolphinQt/MenuBar.cpp:693 msgid "Compression" msgstr "" @@ -2566,10 +2711,16 @@ msgstr "" msgid "Compression:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +msgid "Cond." +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/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -2642,7 +2793,7 @@ msgid "" "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:129 +#: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" msgstr "設定" @@ -2675,13 +2826,13 @@ msgstr "設定輸出" #: 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:951 -#: Source/Core/DolphinQt/MainWindow.cpp:1740 +#: Source/Core/DolphinQt/MainWindow.cpp:948 +#: Source/Core/DolphinQt/MainWindow.cpp:1743 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:198 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2689,7 +2840,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1297 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2700,15 +2851,15 @@ msgstr "" msgid "Connect" msgstr "連接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 msgid "Connect Balance Board" msgstr "連接平衡板" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "連接 USB 鍵盤" -#: Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:341 msgid "Connect Wii Remote %1" msgstr "連接 Wii Remote %1" @@ -2728,7 +2879,7 @@ msgstr "連接 Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "連接 Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:334 msgid "Connect Wii Remotes" msgstr "連接 Wii Remote" @@ -2769,7 +2920,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "Controller Profile" msgstr "控制器設定檔" @@ -2793,7 +2944,7 @@ msgstr "" msgid "Controller Settings" msgstr "控制器設定" -#: Source/Core/DolphinQt/ToolBar.cpp:131 +#: Source/Core/DolphinQt/ToolBar.cpp:132 msgid "Controllers" msgstr "控制器" @@ -2856,8 +3007,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -2865,9 +3016,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316 +#: 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 "" @@ -2875,9 +3026,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291 +#: 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 "" @@ -2897,8 +3048,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -2934,15 +3085,15 @@ msgstr "" msgid "Copy" msgstr "複製" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:885 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 msgid "Copy Address" msgstr "" @@ -2950,19 +3101,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:887 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:890 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" msgstr "" @@ -2980,6 +3131,11 @@ msgstr "" msgid "Core" msgstr "核心" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +msgid "Core is uninitialized." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" msgstr "" @@ -2989,7 +3145,7 @@ msgid "Correct SDR Gamma" msgstr "" #. i18n: Performance cost, not monetary cost -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:91 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 msgid "Cost" msgstr "" @@ -3062,7 +3218,7 @@ msgstr "" msgid "Could not recognize file {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" msgstr "" @@ -3099,13 +3255,13 @@ msgstr "" msgid "Country:" msgstr "國別:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:602 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" msgstr "" @@ -3114,15 +3270,11 @@ msgstr "" msgid "Create New Memory Card" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83 -msgid "Create Skylander Folder" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" msgstr "" @@ -3131,17 +3283,8 @@ msgstr "" msgid "Create..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 -msgid "" -"Creates frame dumps and screenshots at the internal resolution of the " -"renderer, rather than the size of the window it is displayed within." -"

If the aspect ratio is widescreen, the output image will be scaled " -"horizontally to preserve the vertical resolution." -"

If unsure, leave this unchecked." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" msgstr "" @@ -3149,11 +3292,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "剪裁" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:362 +#: 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)." @@ -3165,26 +3308,26 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:380 +#: 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:287 +#: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Current context" msgstr "" @@ -3192,27 +3335,31 @@ msgstr "" msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:50 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +msgid "Custom (Stretch)" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3224,13 +3371,13 @@ msgstr "" msgid "Custom:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" msgstr "" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:122 #: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51 @@ -3255,7 +3402,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 "" @@ -3263,15 +3410,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 "" @@ -3293,7 +3440,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" msgstr "" @@ -3309,7 +3456,7 @@ msgstr "" msgid "Data Transfer" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:88 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:89 msgid "Data Type" msgstr "" @@ -3342,8 +3489,8 @@ msgstr "非作用區" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Debugging" msgstr "" @@ -3352,7 +3499,7 @@ msgstr "" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3399,7 +3546,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 "" @@ -3411,11 +3558,11 @@ msgstr "" msgid "Default ISO:" msgstr "預設的 ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:186 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3423,7 +3570,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:384 +#: 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 " @@ -3463,26 +3610,53 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:684 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "描述" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:119 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:158 msgid "Description:" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Destination" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 +msgid "Destination (UNIX socket path or address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 +msgid "Destination (address:port):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +msgid "Destination Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +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 +msgid "Destination Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" msgstr "" @@ -3490,7 +3664,7 @@ msgstr "" msgid "Detect" msgstr "檢測" -#: Source/Core/DolphinQt/MenuBar.cpp:1345 +#: Source/Core/DolphinQt/MenuBar.cpp:1388 msgid "Detecting RSO Modules" msgstr "" @@ -3498,7 +3672,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 msgid "Dev (multiple times a day)" msgstr "" @@ -3507,7 +3681,7 @@ msgid "Device" msgstr "裝置" #. i18n: PID means Product ID (in the context of a USB device), not Process ID -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:102 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:103 msgid "Device PID (e.g., 0305)" msgstr "" @@ -3516,11 +3690,11 @@ msgid "Device Settings" msgstr "裝置設定" #. i18n: VID means Vendor ID (in the context of a USB device) -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:100 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:101 msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3528,11 +3702,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108 -msgid "Diff" -msgstr "" - -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3544,12 +3714,12 @@ msgstr "" msgid "Direct3D 11" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:387 +#: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Disable" msgstr "" @@ -3561,7 +3731,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3569,11 +3739,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:864 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:870 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" msgstr "" @@ -3581,11 +3751,11 @@ msgstr "" msgid "Disable Fog" msgstr "關閉霧化" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" msgstr "" @@ -3600,7 +3770,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: 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:329 +#: 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:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -3946,15 +4112,15 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Dutch" -#: Source/Core/DolphinQt/MenuBar.cpp:222 +#: Source/Core/DolphinQt/MenuBar.cpp:251 msgid "E&xit" msgstr "離開(&X)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:178 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" msgstr "" @@ -3980,7 +4146,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" msgstr "" @@ -3993,7 +4159,7 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." msgstr "" @@ -4009,15 +4175,15 @@ msgstr "效果" #. i18n: One of the options shown below "Address Space". "Effective" addresses are the addresses #. used directly by the CPU and may be subject to translation via the MMU to physical addresses. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:169 msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "EiB" msgstr "" @@ -4027,7 +4193,7 @@ msgstr "" #. i18n: Elements are a trait of Skylanders figures. For official translations of this term, #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" msgstr "" @@ -4035,11 +4201,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:633 +#: Source/Core/Core/State.cpp:648 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:246 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "模擬器線程已經執行中" @@ -4047,11 +4213,11 @@ msgstr "模擬器線程已經執行中" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" msgstr "" @@ -4065,7 +4231,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:237 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" msgstr "" @@ -4085,28 +4251,16 @@ msgstr "" msgid "Emulation Speed" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:203 -msgid "Emulation must be started before loading a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:164 -msgid "Emulation must be started before saving a file." -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:302 -msgid "Emulation must be started to record." -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:124 -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: 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:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" @@ -4118,11 +4272,11 @@ msgstr "" msgid "Enable Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 msgid "Enable Cheats" msgstr "開啟作弊" @@ -4142,7 +4296,7 @@ msgstr "" msgid "Enable Dual Core" msgstr "開啟雙核心" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Dual Core (speedup)" msgstr "開啟雙核心 (加速)" @@ -4162,7 +4316,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4188,6 +4342,10 @@ msgid "" "the game to be closed before re-enabling." msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:924 +msgid "Enable JIT Block Profiling" +msgstr "" + #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" msgstr "" @@ -4201,7 +4359,7 @@ msgstr "開啟 MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:160 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "開啟逐行掃瞄" @@ -4214,11 +4372,11 @@ msgid "Enable Rich Presence" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4230,15 +4388,15 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:237 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "開啟線框" @@ -4308,7 +4466,7 @@ msgid "" "for testing or simply for fun." 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." @@ -4339,7 +4497,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370 +#: 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 " @@ -4347,7 +4505,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:366 +#: 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 " @@ -4364,7 +4522,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 "" @@ -4390,7 +4548,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: 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 " @@ -4398,7 +4556,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: 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 " @@ -4406,7 +4564,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:348 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4431,7 +4589,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "English" @@ -4440,7 +4598,7 @@ msgstr "English" msgid "Enhancements" msgstr "增強" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:61 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" msgstr "" @@ -4462,11 +4620,17 @@ msgstr "" msgid "Enter password" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:52 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1317 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 +msgid "" +"Enter the IP address and port of the tapserver instance you want to connect " +"to." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" msgstr "" @@ -4475,8 +4639,8 @@ msgstr "" #: 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:357 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: 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 @@ -4487,45 +4651,51 @@ msgstr "" #: 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/BreakpointDialog.cpp:255 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 +#: 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/GBAWidget.cpp:578 +#: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 -#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227 -#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:304 -#: Source/Core/DolphinQt/MainWindow.cpp:312 -#: Source/Core/DolphinQt/MainWindow.cpp:1131 -#: Source/Core/DolphinQt/MainWindow.cpp:1534 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1601 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/MenuBar.cpp:1220 -#: Source/Core/DolphinQt/MenuBar.cpp:1301 -#: Source/Core/DolphinQt/MenuBar.cpp:1324 -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 -#: Source/Core/DolphinQt/MenuBar.cpp:1626 -#: Source/Core/DolphinQt/MenuBar.cpp:1638 -#: Source/Core/DolphinQt/MenuBar.cpp:1660 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1740 +#: 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/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740 @@ -4535,16 +4705,16 @@ msgstr "" #: 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:123 +#: Source/Core/DolphinQt/RenderWidget.cpp:124 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595 +#: Source/Core/DolphinQt/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/Translation.cpp:322 msgid "Error" msgstr "錯誤" @@ -4561,9 +4731,9 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" msgstr "" @@ -4575,7 +4745,7 @@ msgstr "讀取選擇的語系出錯。返回使用系統預設值。" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:305 +#: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4641,13 +4811,13 @@ msgstr "" msgid "Error: This build does not support emulated GBA controllers" msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:341 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:339 msgid "" "Error: Trying to access Shift JIS fonts but they are not loaded. Games may " "not show fonts correctly, or crash." msgstr "" -#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:336 +#: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:334 msgid "" "Error: Trying to access Windows-1252 fonts but they are not loaded. Games " "may not show fonts correctly, or crash." @@ -4666,40 +4836,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:559 -msgid "" -"Example:\n" -"You want to find a function that runs when HP is modified.\n" -"1. Start recording and play the game without letting HP be modified, then " -"press 'Code did not get executed'.\n" -"2. Immediately gain/lose HP and press 'Code has been executed'.\n" -"3. Repeat 1 or 2 to narrow down the results.\n" -"Includes (Code has been executed) should have short recordings focusing on " -"what you want.\n" -"\n" -"Pressing 'Code has been executed' twice will only keep functions that ran " -"for both recordings. Hits will update to reflect the last recording's number " -"of Hits. Total Hits will reflect the total number of times a function has " -"been executed until the lists are cleared with Reset.\n" -"\n" -"Right click -> 'Set blr' will place a blr at the top of the symbol.\n" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:266 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:526 -msgid "Excluded: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81 -msgid "Excluded: 0" -msgstr "" - -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4707,7 +4849,7 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:938 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 msgid "Expected + or closing paren." msgstr "" @@ -4715,7 +4857,7 @@ msgstr "" msgid "Expected arguments: " msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:905 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 msgid "Expected closing paren." msgstr "" @@ -4727,15 +4869,15 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:924 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:915 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:835 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 msgid "Expected start of expression." msgstr "" @@ -4743,11 +4885,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:181 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Export All Wii Saves" msgstr "匯出全部 Wii 存檔" @@ -4762,7 +4904,7 @@ msgstr "" msgid "Export Recording" msgstr "匯出錄像" -#: Source/Core/DolphinQt/MenuBar.cpp:763 +#: Source/Core/DolphinQt/MenuBar.cpp:792 msgid "Export Recording..." msgstr "匯出錄像..." @@ -4790,14 +4932,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1145 +#: Source/Core/DolphinQt/MenuBar.cpp:1185 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "擴充" @@ -4818,7 +4960,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Extract Certificates from NAND" msgstr "" @@ -4851,12 +4993,12 @@ msgid "Extracting Directory..." msgstr "" #. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files) -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "FIFO Player" msgstr "" @@ -4874,7 +5016,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1687 +#: Source/Core/DolphinQt/MenuBar.cpp:1728 msgid "Failed to append to signature file '%1'" msgstr "" @@ -4882,12 +5024,12 @@ msgstr "" msgid "Failed to claim interface for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:675 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676 -msgid "Failed to clear the Skylander from slot(%1)!" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 +msgid "Failed to clear the Skylander from slot %1!" msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 @@ -4915,19 +5057,20 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:797 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" "Failed to create Skylander file:\n" "%1\n" -"(Skylander may already be on the portal)" +"\n" +"The Skylander may already be on the portal." msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1292 @@ -4947,15 +5090,15 @@ msgstr "" msgid "Failed to detach kernel driver for BT passthrough: {0}" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:357 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 msgid "Failed to download codes." msgstr "下載代碼失敗。" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:739 msgid "Failed to dump %1: Can't open file" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:746 msgid "Failed to dump %1: Failed to write to file" msgstr "" @@ -4968,7 +5111,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1220 +#: Source/Core/DolphinQt/MenuBar.cpp:1260 msgid "Failed to extract certificates from NAND" msgstr "" @@ -4991,33 +5134,29 @@ msgstr "" msgid "Failed to find one or more D3D symbols" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:224 -msgid "Failed to find or open file: %1" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1115 +#: Source/Core/DolphinQt/MenuBar.cpp:1155 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:1128 +#: Source/Core/DolphinQt/MenuBar.cpp:1168 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:1131 +#: Source/Core/DolphinQt/MainWindow.cpp:1128 msgid "Failed to init core" msgstr "" @@ -5028,7 +5167,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:375 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" msgstr "" @@ -5037,18 +5176,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1636 +#: Source/Core/DolphinQt/MainWindow.cpp:1639 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 -#: Source/Core/DolphinQt/MenuBar.cpp:1394 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1438 msgid "Failed to load RSO module at %1" msgstr "" @@ -5060,19 +5199,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1626 +#: Source/Core/DolphinQt/MenuBar.cpp:1667 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:841 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842 -msgid "Failed to load the Skylander file(%1)!\n" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +msgid "" +"Failed to load the Skylander file:\n" +"%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:590 +#: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." msgstr "" @@ -5082,13 +5223,21 @@ msgid "" "update package." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:662 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:578 -#: Source/Core/DolphinQt/MainWindow.cpp:1719 -#: Source/Core/DolphinQt/RenderWidget.cpp:123 +#: Source/Core/DolphinQt/MenuBar.cpp:215 +msgid "Failed to open \"%1\" for writing." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:428 +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 msgid "Failed to open '%1'" msgstr "" @@ -5096,6 +5245,10 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +msgid "Failed to open Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" msgstr "" @@ -5122,28 +5275,32 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1635 +#: Source/Core/DolphinQt/MainWindow.cpp:1638 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" -"Failed to open the Infinity file(%1)!\n" -"File may already be in use on the base." +"Failed to open the Infinity file:\n" +"%1\n" +"\n" +"The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" -"Failed to open the Skylander file(%1)!\n" -"File may already be in use on the portal." +"Failed to open the Skylander file:\n" +"%1\n" +"\n" +"The file may already be in use on the portal." msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:474 @@ -5163,7 +5320,7 @@ msgstr "" msgid "Failed to parse Redump.org data" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:299 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." msgstr "" @@ -5185,31 +5342,34 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" -"Failed to read the Infinity file(%1)!\n" -"File was too small." +"Failed to read the Infinity file(%1):\n" +"%1\n" +"\n" +"The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:827 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" -"Failed to read the Skylander file(%1)!\n" -"File was too small." +"Failed to read the Skylander file:\n" +"%1\n" +"\n" +"The file was too small." msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" -"Failed to read the contents of file\n" -"\n" -"\"%1\"" +"Failed to read the contents of file:\n" +"%1" msgstr "" #: Source/Core/Core/Movie.cpp:1015 @@ -5243,31 +5403,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +msgid "Failed to save Branch Watch snapshot \"%1\"" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1616 +#: Source/Core/DolphinQt/MenuBar.cpp:1656 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:178 -msgid "Failed to save file to: %1" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1701 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1780 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:536 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 > " @@ -5318,7 +5478,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:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Failure" msgstr "" @@ -5326,11 +5486,11 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:206 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 msgid "Fallback Region:" msgstr "" @@ -5343,7 +5503,7 @@ msgstr "快速" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1300 +#: Source/Core/Core/Movie.cpp:1299 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5354,11 +5514,11 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" msgstr "" @@ -5366,9 +5526,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:662 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "File Format" msgstr "" @@ -5380,20 +5540,20 @@ msgstr "" msgid "File Info" msgstr "檔案資訊" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "File Name" msgstr "檔案名稱" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:658 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 -#: Source/Core/DolphinQt/MenuBar.cpp:661 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:690 msgid "File Size" msgstr "檔案大小" @@ -5401,7 +5561,7 @@ msgstr "檔案大小" msgid "File Size:" msgstr "" -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:363 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 msgid "File contained no codes." msgstr "檔案未含有代碼。" @@ -5435,15 +5595,15 @@ msgstr "檔案系統" msgid "Filters" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 msgid "Find &Next" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:154 msgid "Find &Previous" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:953 msgid "Finish Calibration" msgstr "" @@ -5455,7 +5615,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" msgstr "" @@ -5471,31 +5631,32 @@ msgstr "修正校驗" msgid "Fix Checksums Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202 +#. i18n: "Fixed" here means that the alignment is always the same +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" 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:87 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" #. i18n: A floating point number #. i18n: Floating-point (non-integer) number -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 +#: 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/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:890 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." msgstr "" @@ -5505,13 +5666,13 @@ msgid "" "title=Broadband_Adapter\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:65 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, 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" @@ -5519,7 +5680,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" @@ -5551,11 +5712,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:449 +#: 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:446 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5592,17 +5753,17 @@ msgstr "向前" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:470 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:336 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 msgid "Frame %1" msgstr "" @@ -5623,7 +5784,7 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" @@ -5631,7 +5792,7 @@ msgstr "" msgid "Frame Range" msgstr "" -#: Source/Core/VideoCommon/FrameDumper.cpp:325 +#: Source/Core/VideoCommon/FrameDumper.cpp:328 msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" @@ -5655,7 +5816,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 msgid "Free Look Controller %1" msgstr "" @@ -5686,7 +5847,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "French" @@ -5710,7 +5871,7 @@ msgstr "" msgid "From:" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:124 +#: Source/Core/DolphinQt/ToolBar.cpp:125 msgid "FullScr" msgstr "全螢幕" @@ -5742,7 +5903,7 @@ msgstr "" msgid "GBA Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" msgstr "" @@ -5858,26 +6019,26 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:243 msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" msgstr "" @@ -5905,8 +6066,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:659 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Game ID" msgstr "遊戲 ID" @@ -5966,11 +6127,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 msgid "GameCube Controller at Port %1" msgstr "" @@ -5978,11 +6139,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -5995,11 +6156,11 @@ msgid "GameCube Memory Cards" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439 msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6027,7 +6188,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 代碼" @@ -6037,35 +6198,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:446 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:445 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "一般" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 -msgid "Generate Action Replay Code" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:239 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:543 -msgid "Generated AR code." +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1295 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 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:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "German" @@ -6077,18 +6238,18 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" msgstr "" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" msgstr "" @@ -6101,8 +6262,8 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 -#: Source/Core/DolphinQt/ToolBar.cpp:130 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "影像" @@ -6141,7 +6302,7 @@ msgstr "綠 左" msgid "Green Right" msgstr "綠 右" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:663 msgid "Grid View" msgstr "" @@ -6150,7 +6311,7 @@ msgstr "" msgid "Guitar" msgstr "Guitar" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:256 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" msgstr "" @@ -6178,36 +6339,35 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Head" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:110 #: qtbase/src/gui/kernel/qplatformtheme.cpp:736 msgid "Help" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:136 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" msgstr "" @@ -6220,7 +6380,11 @@ msgstr "" msgid "Hide" msgstr "隱藏" -#: Source/Core/DolphinQt/MenuBar.cpp:729 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +msgid "Hide &Controls" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" msgstr "" @@ -6236,12 +6400,12 @@ msgstr "" msgid "Hide Remote GBAs" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: 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 "" @@ -6250,14 +6414,8 @@ msgstr "" msgid "Hit Strength" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Hits" -msgstr "" - #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:238 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:239 msgid "Horizontal FOV" msgstr "" @@ -6274,7 +6432,7 @@ msgstr "" msgid "Host Input Authority" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "Host Size" msgstr "" @@ -6298,16 +6456,16 @@ msgstr "" msgid "Host with NetPlay" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 msgid "Hotkey Settings" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:210 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" msgstr "快捷鍵" @@ -6316,7 +6474,7 @@ msgstr "快捷鍵" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6330,16 +6488,16 @@ msgstr "" msgid "I am aware of the risks and want to continue" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:216 msgid "ID" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:612 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" msgstr "" @@ -6374,7 +6532,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:361 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 msgid "IR Sensitivity:" msgstr "IR 靈敏度:" @@ -6407,11 +6565,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:378 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:266 +#: Source/Core/DolphinQt/Main.cpp:267 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 " @@ -6457,11 +6615,15 @@ msgstr "" msgid "Ignore" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +msgid "Ignore &Apploader Branch Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:76 +#: Source/Core/DolphinQt/Main.cpp:77 msgid "Ignore for this session" msgstr "" @@ -6485,7 +6647,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:403 +#: 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 " @@ -6494,7 +6656,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6509,15 +6671,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:301 +#: Source/Core/DolphinQt/MenuBar.cpp:330 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1813 +#: Source/Core/DolphinQt/MainWindow.cpp:1816 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1823 +#: Source/Core/DolphinQt/MainWindow.cpp:1826 #, c-format msgid "" "Importing NAND backup\n" @@ -6528,15 +6690,6 @@ msgstr "" msgid "In-Game?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:267 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:527 -msgid "Included: %1" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82 -msgid "Included: 0" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:282 msgid "" "Includes the contents of the embedded frame buffer (EFB) and upscaled EFB " @@ -6545,27 +6698,27 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" msgstr "" @@ -6610,15 +6763,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38 +#. i18n: Window for managing Disney Infinity figures +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6638,8 +6792,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:1294 -#: Source/Core/DolphinQt/MenuBar.cpp:1534 +#: Source/Core/DolphinQt/MenuBar.cpp:1336 +#: Source/Core/DolphinQt/MenuBar.cpp:1579 msgid "Information" msgstr "訊息" @@ -6653,10 +6807,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1317 -#: Source/Core/DolphinQt/MenuBar.cpp:1376 -#: Source/Core/DolphinQt/MenuBar.cpp:1645 -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "Input" msgstr "輸入" @@ -6670,20 +6824,26 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +msgid "Insert &BLR" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 +msgid "Insert &BLR at start" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +msgid "Insert &NOP" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "插入 SD 卡" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -msgid "Inspected" -msgstr "" - #: Source/Core/DolphinQt/ResourcePackManager.cpp:40 #: Source/Core/DolphinQt/ResourcePackManager.cpp:321 msgid "Install" @@ -6697,7 +6857,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Install WAD..." msgstr "" @@ -6705,11 +6865,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: 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/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6718,7 +6880,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Instruction:" msgstr "" @@ -6727,7 +6889,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:735 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6744,19 +6906,19 @@ msgstr "" msgid "Interface" msgstr "界面" -#: Source/Core/Core/State.cpp:669 +#: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:334 +#: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:689 +#: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:702 +#: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6769,19 +6931,19 @@ msgstr "內部 LZO 錯誤 - 壓縮失敗" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:533 +#: Source/Core/Core/State.cpp:548 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:546 +#: Source/Core/Core/State.cpp:561 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:563 +#: Source/Core/Core/State.cpp:578 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6796,7 +6958,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "内部解析度:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:556 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." msgstr "" @@ -6804,11 +6966,11 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:836 +#: Source/Core/DolphinQt/MenuBar.cpp:865 msgid "Interpreter Core" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "" @@ -6820,7 +6982,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:313 +#: Source/Core/DolphinQt/MainWindow.cpp:314 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6829,11 +6991,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1324 +#: Source/Core/DolphinQt/MenuBar.cpp:1366 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 msgid "Invalid callstack" msgstr "" @@ -6862,7 +7024,7 @@ msgstr "" msgid "Invalid literal." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:372 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." msgstr "" @@ -6874,19 +7036,19 @@ msgstr "" msgid "Invalid recording file" msgstr "無效的錄像檔" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:397 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:424 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:407 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 msgid "Invalid search string (only even string lengths supported)" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:211 +#: Source/Core/DolphinQt/Main.cpp:212 msgid "Invalid title ID." msgstr "" @@ -6896,7 +7058,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italian" @@ -6905,63 +7067,63 @@ msgid "Italy" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:972 +#: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:944 +#: Source/Core/DolphinQt/MenuBar.cpp:984 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:951 +#: Source/Core/DolphinQt/MenuBar.cpp:991 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:901 +#: Source/Core/DolphinQt/MenuBar.cpp:941 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:937 +#: Source/Core/DolphinQt/MenuBar.cpp:977 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:955 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:908 +#: Source/Core/DolphinQt/MenuBar.cpp:948 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:962 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:895 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:958 +#: Source/Core/DolphinQt/MenuBar.cpp:998 msgid "JIT Paired Off" msgstr "" @@ -6973,27 +7135,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:979 +#: Source/Core/DolphinQt/MenuBar.cpp:1019 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:965 +#: Source/Core/DolphinQt/MenuBar.cpp:1005 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:851 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1007 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 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/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Android/jni/MainAndroid.cpp:417 +msgid "JIT is not active" +msgstr "" + +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanese" @@ -7004,13 +7170,13 @@ msgstr "Japanese" msgid "Japanese (Shift-JIS)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:676 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" msgstr "" @@ -7024,7 +7190,7 @@ msgstr "" #. value", "last value", or "this value:". These three UI elements are intended to form a sentence #. together. Because the UI elements can't be reordered by a translation, you may have to give #. up on the idea of having them form a sentence depending on the grammar of your target language. -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:182 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" msgstr "" @@ -7045,7 +7211,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "KiB" msgstr "" @@ -7053,12 +7219,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korean" @@ -7069,7 +7235,7 @@ msgstr "Korean" msgid "L" msgstr "L" -#: Source/Core/DolphinQt/GBAWidget.cpp:393 +#: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." msgstr "" @@ -7079,7 +7245,7 @@ msgstr "" msgid "L-Analog" msgstr "L-類比" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 msgid "LR Save" msgstr "" @@ -7087,35 +7253,37 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:590 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 msgid "Last Value" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153 +#. i18n: A timestamp for when the Skylander was most recently used +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144 +#. i18n: A timestamp for when the Skylander was most recently reset +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 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 "" @@ -7185,13 +7353,13 @@ msgstr "" msgid "Levers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:67 +#: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" msgstr "" @@ -7205,7 +7373,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" msgstr "" @@ -7213,11 +7381,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:668 +#: Source/Core/DolphinQt/MenuBar.cpp:697 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:631 +#: Source/Core/DolphinQt/MenuBar.cpp:660 msgid "List View" msgstr "" @@ -7228,29 +7396,36 @@ 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/Debugger/CodeDiffDialog.cpp:105 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 msgid "Load" msgstr "讀取" -#: Source/Core/DolphinQt/MenuBar.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +msgid "Load Branch Watch &From..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +msgid "Load Branch Watch snapshot" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:258 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" msgstr "" @@ -7271,7 +7446,7 @@ msgstr "" msgid "Load ROM" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" msgstr "" @@ -7360,19 +7535,19 @@ msgstr "讀取儲存格 8" msgid "Load State Slot 9" msgstr "讀取儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:379 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:380 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:381 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1086 msgid "Load Wii System Menu %1" msgstr "" @@ -7384,16 +7559,16 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:406 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1553 -#: Source/Core/DolphinQt/MenuBar.cpp:1570 +#: Source/Core/DolphinQt/MenuBar.cpp:1598 +#: Source/Core/DolphinQt/MenuBar.cpp:1615 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" msgstr "" @@ -7401,18 +7576,18 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1535 +#: Source/Core/DolphinQt/MenuBar.cpp:1580 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: 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:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7432,7 +7607,7 @@ msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:236 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "記錄" @@ -7444,7 +7619,7 @@ msgstr "記錄設定" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:889 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7452,7 +7627,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7468,7 +7643,7 @@ msgstr "記錄輸出" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288 +#: 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 " @@ -7483,16 +7658,16 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: 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 "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" msgstr "" @@ -7500,7 +7675,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:289 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 msgid "MORIBUND" msgstr "" @@ -7510,7 +7685,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" msgstr "" @@ -7518,37 +7693,37 @@ msgstr "" msgid "Main Stick" msgstr "主搖桿" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:656 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Maker" msgstr "" @@ -7565,12 +7740,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:303 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7582,7 +7757,7 @@ msgstr "" msgid "Mask ROM" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" msgstr "" @@ -7599,16 +7774,16 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 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:205 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 msgid "Medium" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:45 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:46 msgid "Memory" msgstr "" @@ -7620,7 +7795,7 @@ msgstr "" msgid "Memory Card" msgstr "記憶卡" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Memory Card Manager" msgstr "" @@ -7632,7 +7807,7 @@ msgstr "" msgid "Memory Override" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:222 msgid "Memory breakpoint options" msgstr "" @@ -7648,7 +7823,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1794 +#: Source/Core/DolphinQt/MainWindow.cpp:1797 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7656,29 +7831,33 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:545 +#: Source/Core/UICommon/UICommon.cpp:551 msgid "MiB" 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:422 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 msgid "Microphone" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "雜項" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "其它設定" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +msgid "Misc. Controls" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." msgstr "" @@ -7698,36 +7877,41 @@ msgid "" "- Hash: {4:02X}" msgstr "" +#: Source/Core/Core/HW/EXI/EXI_Device.h:108 +msgid "Modem Adapter (tapserver)" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298 +#: 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 " "unchecked." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:60 +#. i18n: %1 is a name +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 -#: Source/Core/DolphinQt/MenuBar.cpp:1494 +#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1538 msgid "Modules found: %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -7739,16 +7923,16 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 msgid "Motion Simulation" msgstr "" #: Source/Core/Core/HW/GCPadEmu.cpp:79 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:285 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 msgid "Motor" msgstr "馬達" @@ -7785,6 +7969,10 @@ msgid "" "The movie will likely not sync!" msgstr "" +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +msgid "Multiple errors while generating AR codes." +msgstr "" + #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" @@ -7794,10 +7982,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1175 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 -#: Source/Core/DolphinQt/MenuBar.cpp:1202 -#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: 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/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7806,8 +7994,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:260 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-J" msgstr "" @@ -7816,7 +8004,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-K" msgstr "" @@ -7833,25 +8021,25 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:262 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "NTSC-U" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:164 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Name of the tag to remove:" msgstr "" @@ -7860,7 +8048,7 @@ msgid "Name of your session shown in the server browser" msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:116 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:117 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:121 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:156 #: Source/Core/DolphinQt/Config/InfoWidget.cpp:163 @@ -7917,7 +8105,7 @@ msgstr "" msgid "Network" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:384 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" msgstr "" @@ -7947,7 +8135,7 @@ msgstr "" msgid "New File (%1)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:122 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" msgstr "" @@ -7955,7 +8143,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 msgid "New identity generated." msgstr "" @@ -7963,7 +8151,7 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1123 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 msgid "New tag" msgstr "" @@ -7972,7 +8160,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 msgid "Next Match" msgstr "" @@ -7986,7 +8174,7 @@ msgid "Nickname is too long." msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:199 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:136 msgid "Nickname:" msgstr "" @@ -8000,7 +8188,7 @@ msgstr "" msgid "No Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" msgstr "" @@ -8014,7 +8202,7 @@ msgstr "" msgid "No Compression" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" msgstr "" @@ -8022,16 +8210,16 @@ msgstr "" msgid "No Save Data" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:574 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:732 +#: 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 msgid "No description available" msgstr "" @@ -8047,15 +8235,15 @@ msgstr "" msgid "No file loaded / recorded." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:369 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" msgstr "" @@ -8064,7 +8252,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1186 +#: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." msgstr "" @@ -8076,10 +8264,6 @@ msgstr "" msgid "No paths found in the M3U file \"{0}\"" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:523 -msgid "No possible functions left. Reset." -msgstr "" - #: Source/Core/DiscIO/VolumeVerifier.cpp:1423 msgid "No problems were found." msgstr "" @@ -8091,11 +8275,11 @@ msgid "" "there most likely are no problems that will affect emulation." msgstr "" -#: Source/Core/InputCommon/InputConfig.cpp:78 +#: Source/Core/InputCommon/InputConfig.cpp:61 msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 msgid "No recording loaded." msgstr "" @@ -8104,18 +8288,18 @@ msgstr "" msgid "No save data found." msgstr "" -#: Source/Core/Core/State.cpp:1024 +#: Source/Core/Core/State.cpp:1040 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/WiimoteControllersWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:870 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 msgid "None" msgstr "無" @@ -8175,7 +8359,7 @@ msgid "Null" msgstr "" #. i18n: The number of times a code block has been executed -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:89 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 msgid "NumExec" msgstr "" @@ -8210,10 +8394,58 @@ msgstr "" msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:176 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 msgid "Object %1" msgstr "" +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 +msgid "Object 1 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 +msgid "Object 1 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 +msgid "Object 1 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 +msgid "Object 2 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 +msgid "Object 2 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 +msgid "Object 2 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 +msgid "Object 3 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 +msgid "Object 3 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 +msgid "Object 3 Y" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 +msgid "Object 4 Size" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 +msgid "Object 4 X" +msgstr "" + +#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 +msgid "Object 4 Y" +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" msgstr "" @@ -8227,7 +8459,7 @@ msgstr "" msgid "Off" msgstr "關閉" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:111 msgid "Offset" msgstr "" @@ -8239,14 +8471,29 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:375 +#: 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 " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +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 " +"whether a code path was or was not 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" +"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." +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" msgstr "" @@ -8254,13 +8501,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1670 +#: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1645 +#: Source/Core/DolphinQt/MenuBar.cpp:1686 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8268,7 +8515,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:27 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:364 -#: Source/Core/DolphinQt/ToolBar.cpp:115 +#: Source/Core/DolphinQt/ToolBar.cpp:116 #: qtbase/src/gui/kernel/qplatformtheme.cpp:714 msgid "Open" msgstr "開啟" @@ -8277,11 +8524,11 @@ msgstr "開啟" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:218 +#: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" msgstr "" -#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66 +#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" @@ -8302,7 +8549,7 @@ msgstr "" msgid "Open Wii &Save Folder" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" msgstr "" @@ -8335,11 +8582,11 @@ msgid "Operators" msgstr "" #: Source/Core/Core/HW/GCPadEmu.h:63 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:288 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70 #: Source/Core/DolphinQt/ConvertDialog.cpp:84 -#: Source/Core/DolphinQt/GBAWidget.cpp:430 +#: Source/Core/DolphinQt/GBAWidget.cpp:435 msgid "Options" msgstr "選項" @@ -8352,13 +8599,36 @@ msgstr "橘" msgid "Orbital" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +msgid "Origin" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +msgid "Origin Max" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +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 +msgid "Origin Symbol" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +msgid "Origin and Destination" +msgstr "" + #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:101 +#: 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:228 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" msgstr "" @@ -8371,7 +8641,7 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Other State Management" msgstr "" @@ -8391,16 +8661,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:695 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:759 +#: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:265 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:219 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "PAL" msgstr "" @@ -8409,15 +8679,15 @@ msgid "PAL (EBU)" msgstr "" #. i18n: PCAP is a file format -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8425,11 +8695,11 @@ msgstr "" msgid "PNG image file (*.png);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "PPC vs Host" msgstr "" @@ -8442,11 +8712,11 @@ msgstr "控制器" msgid "Pads" msgstr "控制器" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Parameters" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:213 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" msgstr "" @@ -8497,11 +8767,15 @@ msgstr "" msgid "Paths" msgstr "路徑" -#: Source/Core/DolphinQt/ToolBar.cpp:158 +#: Source/Core/DolphinQt/ToolBar.cpp:159 msgid "Pause" msgstr "暫停" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +msgid "Pause Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" msgstr "" @@ -8540,7 +8814,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:285 +#: Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Perform Online System Update" msgstr "" @@ -8548,33 +8822,33 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:175 msgid "Physical" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1249 +#: Source/Core/DolphinQt/MenuBar.cpp:1289 msgid "Pick a debug font" msgstr "" @@ -8590,12 +8864,12 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 -#: Source/Core/DolphinQt/MenuBar.cpp:652 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "Platform" msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:121 Source/Core/DolphinQt/ToolBar.cpp:165 +#: Source/Core/DolphinQt/ToolBar.cpp:122 Source/Core/DolphinQt/ToolBar.cpp:166 msgid "Play" msgstr "執行" @@ -8607,7 +8881,7 @@ msgstr "" msgid "Play Recording" msgstr "播放錄像" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" msgstr "" @@ -8619,27 +8893,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" msgstr "" @@ -8648,7 +8922,8 @@ msgstr "" msgid "Players" msgstr "玩家" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139 +#. i18n: The total amount of time the Skylander has been used for +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" msgstr "" @@ -8660,23 +8935,27 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" #. i18n: "Point" refers to the action of pointing a Wii Remote. -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:233 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:234 msgid "Point" msgstr "" +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 +msgid "Point (Passthrough)" +msgstr "" + #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 msgid "Port %1" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" msgstr "" @@ -8685,7 +8964,7 @@ msgstr "" msgid "Port:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" @@ -8706,11 +8985,11 @@ msgid "Post-Processing Shader Configuration" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:165 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -8718,11 +8997,11 @@ msgstr "" msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1314 +#: Source/Core/Core/Movie.cpp:1313 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1288 +#: Source/Core/Core/Movie.cpp:1287 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -8745,7 +9024,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: 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 " @@ -8760,7 +9039,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Previous Match" msgstr "" @@ -8771,7 +9050,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:617 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 msgid "Primitive %1" msgstr "" @@ -8783,7 +9062,7 @@ msgstr "" msgid "Private and Public" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Problem" msgstr "" @@ -8817,8 +9096,8 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -8826,11 +9105,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:533 +#: Source/Core/DolphinQt/MenuBar.cpp:562 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -8850,14 +9129,14 @@ 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 "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1793 +#: Source/Core/DolphinQt/MainWindow.cpp:1796 msgid "Question" msgstr "問題" @@ -8878,19 +9157,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-類比" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:280 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1312 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "RUNNING" msgstr "" @@ -8903,11 +9182,11 @@ msgstr "" msgid "Range" msgstr "範圍" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:74 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75 msgid "Range End: " msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:72 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73 msgid "Range Start: " msgstr "" @@ -8919,7 +9198,11 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +msgid "Raw Internal Resolution" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" msgstr "" @@ -8931,14 +9214,14 @@ msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation or write operation occurs. #. The string is not a command to read and write something or to allow reading and writing. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:229 msgid "Read and write" msgstr "" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a read operation occurs. #. The string does not mean "read-only" in the sense that something cannot be written to. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:231 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:233 msgid "Read only" msgstr "" @@ -8959,10 +9242,15 @@ msgstr "" msgid "Real Wii Remote" msgstr "" -#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387 +#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +msgid "Recent Hits" +msgstr "" + #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" @@ -8976,7 +9264,7 @@ msgstr "" msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 msgid "Recording" msgstr "" @@ -9011,7 +9299,7 @@ msgid "" "unsure, select None.
" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" msgstr "" @@ -9019,14 +9307,14 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 #: Source/Core/DolphinQt/ResourcePackManager.cpp:42 -#: Source/Core/DolphinQt/ToolBar.cpp:116 +#: Source/Core/DolphinQt/ToolBar.cpp:117 msgid "Refresh" msgstr "更新" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:224 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:228 msgid "Refresh Current Values" msgstr "" @@ -9034,11 +9322,11 @@ msgstr "" msgid "Refresh Game List" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:398 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:399 msgid "Refresh failed. Please run the game for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:412 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:413 msgid "Refreshed current values." msgstr "" @@ -9047,8 +9335,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 +#: Source/Core/DolphinQt/MenuBar.cpp:689 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9077,7 +9365,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:328 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 msgid "Remove" msgstr "移除" @@ -9094,7 +9382,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1135 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 msgid "Remove tag" msgstr "" @@ -9105,8 +9393,8 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:960 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 msgid "Rename symbol" msgstr "" @@ -9114,11 +9402,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "渲染至主視窗" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9134,23 +9422,22 @@ 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:899 +#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" msgstr "重置" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:239 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:108 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:575 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" msgstr "" @@ -9178,6 +9465,10 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +msgid "Resolution Type:" +msgstr "" + #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" msgstr "" @@ -9194,7 +9485,7 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 msgid "Restore instruction" msgstr "" @@ -9211,7 +9502,7 @@ msgstr "" msgid "Revision" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:55 +#: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" msgstr "" @@ -9270,7 +9561,7 @@ msgstr "" msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 msgid "Rotation" msgstr "" @@ -9288,26 +9579,52 @@ msgid "" "dolphin_emphasis>" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +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 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" +"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" +"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" +"All context menus have the action to delete the selected row(s) from the " +"candidates." +msgstr "" + #: Source/Core/Core/HW/GCPadEmu.h:61 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:65 msgid "Rumble" msgstr "震動" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 msgid "Run &To Here" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:675 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:629 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" msgstr "" @@ -9323,19 +9640,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9343,7 +9660,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9356,7 +9673,7 @@ msgstr "" msgid "SELECT" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" msgstr "" @@ -9364,11 +9681,11 @@ msgstr "" msgid "SHA1 Digest" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:347 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" msgstr "" @@ -9378,11 +9695,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1008 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:365 +#: Source/Core/DolphinQt/MenuBar.cpp:394 msgid "Sa&ve State" msgstr "儲存進度(&V)" @@ -9395,7 +9712,6 @@ msgstr "安全" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:102 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9405,9 +9721,17 @@ msgstr "儲存" msgid "Save All" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +msgid "Save Branch Watch &As..." +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +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:1144 +#: Source/Core/DolphinQt/MenuBar.cpp:1184 msgid "Save Export" msgstr "" @@ -9416,24 +9740,24 @@ msgid "Save FIFO log" msgstr "" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:775 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" #. i18n: Noun (i.e. the data saved by the game) -#: Source/Core/DolphinQt/GBAWidget.cpp:410 +#: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:246 +#: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1102 -#: Source/Core/DolphinQt/MenuBar.cpp:1111 -#: Source/Core/DolphinQt/MenuBar.cpp:1114 -#: Source/Core/DolphinQt/MenuBar.cpp:1120 -#: Source/Core/DolphinQt/MenuBar.cpp:1127 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1154 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 +#: Source/Core/DolphinQt/MenuBar.cpp:1167 msgid "Save Import" msgstr "" @@ -9445,13 +9769,13 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1928 +#: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 -#: Source/Core/DolphinQt/GBAWidget.cpp:418 +#: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" @@ -9495,23 +9819,23 @@ msgstr "儲存至儲存格 8" msgid "Save State Slot 9" msgstr "儲存至儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:366 +#: Source/Core/DolphinQt/MenuBar.cpp:395 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:368 +#: Source/Core/DolphinQt/MenuBar.cpp:397 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:367 +#: Source/Core/DolphinQt/MenuBar.cpp:396 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:398 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Save Symbol Map &As..." msgstr "" @@ -9519,7 +9843,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Save and Load State" msgstr "" @@ -9531,26 +9855,26 @@ msgstr "" msgid "Save as..." msgstr "另存為..." -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1767 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1103 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" "Overwrite now?" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224 msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1588 +#: Source/Core/DolphinQt/MenuBar.cpp:1633 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1648 +#: Source/Core/DolphinQt/MenuBar.cpp:1689 msgid "Save signature file" msgstr "" @@ -9558,7 +9882,7 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:407 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Save to Slot %1 - %2" msgstr "" @@ -9570,7 +9894,7 @@ msgstr "" msgid "Saved Wii Remote pairings can only be reset when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230 msgid "Saves:" msgstr "" @@ -9582,26 +9906,26 @@ msgstr "" msgid "Scaled EFB Copy" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:312 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:125 +#: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "截圖" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86 -#: Source/Core/DolphinQt/MenuBar.cpp:541 Source/Core/DolphinQt/MenuBar.cpp:543 +#: 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 msgid "Search" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:112 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:110 msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 msgid "Search Current Object" msgstr "" @@ -9609,17 +9933,17 @@ msgstr "" msgid "Search Subfolders" msgstr "搜尋子資料夾" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:222 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:226 msgid "Search and Filter" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:376 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:377 msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:891 +#: Source/Core/DolphinQt/MenuBar.cpp:920 msgid "Search for an Instruction" msgstr "" @@ -9627,11 +9951,11 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1768 +#: Source/Core/DolphinQt/MenuBar.cpp:1808 msgid "Search instruction" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" msgstr "" @@ -9651,7 +9975,7 @@ msgstr "" msgid "Section that contains most CPU and Hardware related settings." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:408 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:409 msgid "Security options" msgstr "" @@ -9659,28 +9983,36 @@ msgstr "" msgid "Select" 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 +msgid "" +"Select Branch Watch snapshot auto-save file (for user folder location, " +"cancel)" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1138 +#: Source/Core/DolphinQt/MenuBar.cpp:1178 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 msgid "Select GBA Saves Path" msgstr "" @@ -9700,15 +10032,15 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:408 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" msgstr "" @@ -9716,7 +10048,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/DolphinQt/MenuBar.cpp:411 msgid "Select State Slot" msgstr "選擇儲存格" @@ -9775,15 +10107,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:194 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 -#: Source/Core/DolphinQt/GBAWidget.cpp:214 -#: Source/Core/DolphinQt/GBAWidget.cpp:245 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: 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:1417 +#: Source/Core/DolphinQt/MainWindow.cpp:1420 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -9791,11 +10123,11 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -9803,19 +10135,19 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Select a title to install to NAND" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1419 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1852 +#: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" msgstr "" @@ -9823,12 +10155,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1829 +#: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1803 -#: Source/Core/DolphinQt/MenuBar.cpp:1093 +#: Source/Core/DolphinQt/MainWindow.cpp:1806 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 msgid "Select the save file" msgstr "選擇存檔" @@ -9844,7 +10176,7 @@ msgstr "" msgid "Selected Font" msgstr "" -#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233 +#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:234 msgid "Selected controller profile does not exist" msgstr "" @@ -9856,26 +10188,45 @@ msgstr "" msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:228 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:206 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:355 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." msgstr "" +#: 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 " +"video files might be created.
Note that color correction and cropping are " +"always ignored by the captures.

Window Resolution: Uses the " +"output window resolution (without black bars).
This is a simple dumping " +"option that will capture the image more or less as you see it.
Aspect " +"Ratio Corrected Internal Resolution: Uses the Internal Resolution (XFB " +"size), and corrects it by the target aspect ratio.
This option will " +"consistently dump at the specified Internal Resolution regardless of how the " +"image is displayed during recording.
Raw Internal Resolution: Uses " +"the Internal Resolution (XFB size) without correcting it with the target " +"aspect ratio.
This will provide a clean dump without any aspect ratio " +"correction so users have as raw as possible input for external editing " +"software.

If unsure, leave this at \"Aspect Ratio " +"Corrected Internal Resolution\"." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " @@ -9887,18 +10238,29 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 -msgid "" -"Selects which aspect ratio to use when rendering.
Each game can have a " -"slightly different native aspect ratio.

Auto: Uses the native aspect " -"ratio
Force 16:9: Mimics an analog TV with a widescreen aspect ratio." -"
Force 4:3: Mimics a standard 4:3 analog TV.
Stretch to Window: " -"Stretches the picture to the window size.
Custom: For games running with " -"specific custom aspect ratio cheats.

If unsure, " -"select Auto." +#: 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 " +"game and rarely exactly matched 4:3 or 16:9. Some of the image would be cut " +"off by the edges of the TV, or the image wouldn't fill the TV entirely. By " +"default, Dolphin shows the whole image without distorting its proportions, " +"which means it's normal for the image to not entirely fill your display." +"

Auto: Mimics a TV with either a 4:3 or 16:9 aspect ratio, " +"depending on which type of TV the game seems to be targeting." +"

Force 16:9: Mimics a TV with a 16:9 (widescreen) aspect ratio." +"

Force 4:3: Mimics a TV with a 4:3 aspect ratio." +"

Stretch to Window: Stretches the image to the window size. " +"This will usually distort the image's proportions.

Custom: " +"Mimics a TV with the specified aspect ratio. This is mostly intended to be " +"used with aspect ratio cheats/mods.

Custom (Stretch): Similar " +"to `Custom`, but stretches the image to the specified aspect ratio. This " +"will usually distort the image's proportions, and should not be used under " +"normal circumstances.

If unsure, select Auto." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233 +#: 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 " @@ -9912,7 +10274,7 @@ msgstr "" msgid "Send" msgstr "傳送" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "傳感器位置:" @@ -9936,16 +10298,12 @@ msgstr "" msgid "Server rejected traversal attempt" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:122 msgid "Set &Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:581 -msgid "Set &blr" -msgstr "" - #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" @@ -9961,40 +10319,40 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:985 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:961 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: 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:193 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." 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." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:53 +#: 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." @@ -10006,20 +10364,20 @@ msgstr "" msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:432 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:29 msgid "Shake" msgstr "搖晃" @@ -10036,16 +10394,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:415 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" msgstr "顯示日誌視窗(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:457 msgid "Show &Toolbar" msgstr "顯示工具列(&T)" @@ -10053,53 +10411,53 @@ msgstr "顯示工具列(&T)" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:728 +#: Source/Core/DolphinQt/MenuBar.cpp:757 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:715 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 msgid "Show Current Game on Discord" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 +#: 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:690 +#: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "顯示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:798 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" msgstr "顯示 France" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:717 msgid "Show GameCube" msgstr "顯示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Germany" msgstr "" @@ -10111,23 +10469,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:804 +#: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" msgstr "輸入顯示" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Italy" msgstr "顯示 Italy" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" msgstr "顯示 Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Lag Counter" msgstr "" @@ -10135,19 +10493,19 @@ msgstr "" msgid "Show Language:" msgstr "顯示語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:421 +#: Source/Core/DolphinQt/MenuBar.cpp:450 msgid "Show Log &Configuration" msgstr "日誌記錄設定(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:104 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:720 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show Netherlands" msgstr "" @@ -10155,32 +10513,36 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:742 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:111 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" msgstr "顯示平台" -#: Source/Core/DolphinQt/MenuBar.cpp:727 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +msgid "Show Projection Statistics" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" msgstr "顯示區域" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:721 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" msgstr "" @@ -10188,72 +10550,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:811 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:723 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Show Taiwan" msgstr "顯示 Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:714 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show USA" msgstr "顯示 USA" -#: Source/Core/DolphinQt/MenuBar.cpp:725 +#: Source/Core/DolphinQt/MenuBar.cpp:754 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" msgstr "顯示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Wii" msgstr "顯示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:724 +#: Source/Core/DolphinQt/MenuBar.cpp:753 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" msgstr "" @@ -10261,65 +10623,71 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:268 +#: 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:270 +#: 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:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, 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:258 +#: 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:266 +#: 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:254 +#: 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:262 +#: 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:265 +#: 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:295 +#: 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:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10329,34 +10697,34 @@ msgstr "" msgid "Side-by-Side" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268 msgid "Sideways Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:265 msgid "Sideways Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:311 msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Signature Database" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" msgstr "" @@ -10365,7 +10733,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Simplified Chinese" @@ -10382,17 +10750,17 @@ 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." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10427,24 +10795,24 @@ msgid "" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:637 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" msgstr "" @@ -10452,10 +10820,6 @@ msgstr "" msgid "Skylanders Manager" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84 -msgid "Skylanders folder not found for this user. Create new folder?" -msgstr "" - #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 msgid "Slider Bar" @@ -10465,7 +10829,7 @@ msgstr "" msgid "Slot A" msgstr "插槽 A" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163 msgid "Slot A:" msgstr "" @@ -10473,7 +10837,7 @@ msgstr "" msgid "Slot B" msgstr "插槽 B" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177 msgid "Slot B:" msgstr "" @@ -10481,7 +10845,7 @@ msgstr "" msgid "Snap the thumbstick position to the nearest octagonal axis." msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:325 msgid "Socket table" msgstr "" @@ -10505,12 +10869,12 @@ msgid "" "Please check the highlighted values." msgstr "" -#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:128 -#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:274 +#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:129 +#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:275 msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -10524,27 +10888,27 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanish" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:291 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:294 msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "揚聲器音量:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:123 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: 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, " @@ -10565,15 +10929,15 @@ 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:275 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Stack start" msgstr "" @@ -10586,25 +10950,28 @@ msgstr "標準控制器" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:273 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:160 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +msgid "Start Branch Watch" +msgstr "" + +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Start Re&cording Input" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:55 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:69 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:333 msgid "Start Recording" msgstr "開始錄製" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -10620,10 +10987,10 @@ msgstr "" msgid "Started game" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:72 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 +#: 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 msgid "State" msgstr "" @@ -10633,7 +11000,7 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/DolphinQt/ToolBar.cpp:102 +#: Source/Core/DolphinQt/ToolBar.cpp:103 msgid "Step" msgstr "" @@ -10645,13 +11012,13 @@ 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:108 +#: Source/Core/Core/HotkeyManager.cpp:68 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:105 +#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" @@ -10667,7 +11034,7 @@ msgstr "" msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" @@ -10676,7 +11043,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -10706,18 +11073,14 @@ msgstr "搖桿" #: Source/Core/Core/HotkeyManager.cpp:32 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 -#: Source/Core/DolphinQt/ToolBar.cpp:123 +#: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:760 +#: Source/Core/DolphinQt/MenuBar.cpp:789 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:325 -msgid "Stop Recording" -msgstr "" - #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 msgid "Stopped game" msgstr "" @@ -10750,7 +11113,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "拉伸至視窗" @@ -10785,8 +11148,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:1081 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 +#: Source/Core/DolphinQt/MenuBar.cpp:1255 msgid "Success" msgstr "" @@ -10813,7 +11176,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1256 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -10825,12 +11188,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1111 +#: Source/Core/DolphinQt/MenuBar.cpp:1151 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1122 msgid "Successfully installed this title to the NAND." msgstr "" @@ -10841,11 +11204,11 @@ msgstr "" #. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and #. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in #. all countries they were released in. They were not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:69 +#: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" msgstr "" @@ -10853,16 +11216,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: 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:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 msgid "Suspended" msgstr "" @@ -10872,12 +11235,12 @@ msgstr "" #. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" msgstr "" @@ -10888,7 +11251,7 @@ msgid "" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35 msgid "Swing" msgstr "揮舞" @@ -10902,34 +11265,21 @@ msgid "Switch to B" msgstr "" #. i18n: The symbolic name of a code block -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 -#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84 +#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:85 msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:986 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:211 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:312 -msgid "" -"Symbol map not found.\n" -"\n" -"If one does not exist, you can generate one from the Menu bar:\n" -"Symbols -> Generate Symbols From ->\n" -"\tAddress | Signature Database | RSO Modules" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:925 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 msgid "Symbol name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Symbols" msgstr "" @@ -10955,7 +11305,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -10974,24 +11324,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "系統語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:776 +#: Source/Core/DolphinQt/MenuBar.cpp:805 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:449 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1013 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:665 +#: Source/Core/DolphinQt/MenuBar.cpp:694 msgid "Tags" msgstr "" @@ -11001,7 +11351,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Tail" msgstr "" @@ -11009,15 +11359,15 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 msgid "Take Screenshot" msgstr "截取畫面" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:696 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11025,7 +11375,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" msgstr "" @@ -11033,6 +11383,12 @@ 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 +msgid "Text file (*.txt);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 msgid "Texture Cache" @@ -11042,7 +11398,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11054,7 +11410,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11077,7 +11433,7 @@ msgstr "" msgid "The H3 hash table for the {0} partition is not correct." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:435 +#: Source/Core/Core/Boot/Boot.cpp:430 msgid "The IPL file is not a known good dump. (CRC32: {0:x})" msgstr "" @@ -11091,13 +11447,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 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:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1242 msgid "The NAND has been repaired." msgstr "" @@ -11108,11 +11464,11 @@ msgid "" "copy or move it back to the NAND." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170 -msgid "The amount of money this skylander should have. Between 0 and 65000" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: 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 " @@ -11145,6 +11501,13 @@ msgstr "" msgid "The decryption keys need to be appended to the NAND backup file." msgstr "" +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:68 +msgid "" +"The default value \"%1\" will work with a local tapserver and newserv. You " +"can also enter a network location (address:port) to connect to a remote " +"tapserver." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" "The destination file cannot be the same as the source file\n" @@ -11162,7 +11525,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:438 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11182,17 +11545,17 @@ msgstr "" #. 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:111 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." msgstr "" #. i18n: Here, PID means Product ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." msgstr "" #. i18n: Here, VID means Vendor ID (for a USB device). -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." msgstr "" @@ -11200,7 +11563,7 @@ msgstr "" msgid "The expression contains a syntax error." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:487 msgid "" "The file\n" "%1\n" @@ -11214,7 +11577,7 @@ msgid "" "Do you wish to replace it?" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:279 msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" @@ -11230,7 +11593,7 @@ msgstr "" msgid "The file {0} was already open, the file header will not be written." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:466 msgid "" "The filename %1 does not conform to Dolphin's region code format for memory " "cards. Please rename this file to either %2, %3, or %4, matching the region " @@ -11241,7 +11604,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573 +#: 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 " @@ -11298,9 +11661,9 @@ msgstr "" msgid "The hashes match!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 msgid "" -"The hero level of this skylander. Only seen in Skylanders: Spyro's " +"The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" @@ -11314,11 +11677,11 @@ msgstr "" msgid "The install partition is missing." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" @@ -11332,8 +11695,8 @@ msgid "" "Folder." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173 -msgid "The nickname for this skylander. Limited to 15 characters" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 +msgid "The nickname for this Skylander. Limited to 15 characters" msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 @@ -11360,12 +11723,12 @@ msgstr "" msgid "The resulting decrypted AR code doesn't contain any lines." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:508 msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596 +#: 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 "" @@ -11399,7 +11762,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1205 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)." @@ -11414,11 +11777,11 @@ msgstr "" msgid "The ticket is not correctly signed." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." msgstr "" @@ -11426,15 +11789,15 @@ msgstr "" msgid "The type of a partition could not be read." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" @@ -11457,7 +11820,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11483,14 +11846,19 @@ msgstr "" msgid "There are too many partitions in the first partition table." msgstr "" -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:808 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:806 msgid "" "There are unsaved changes in \"%1\".\n" "\n" "Do you want to save before closing?" msgstr "" -#: Source/Core/Core/State.cpp:1034 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +msgid "There is nothing to save!" +msgstr "" + +#: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" msgstr "" @@ -11526,19 +11894,19 @@ msgid "" "consoles. This is likely to lead to ERROR #002." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:286 +#: Source/Core/Core/ConfigManager.cpp:288 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:281 +#: Source/Core/Core/ConfigManager.cpp:283 msgid "This WAD is not valid." msgstr "" @@ -11653,6 +12021,10 @@ msgstr "" msgid "This is a good dump." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +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:" msgstr "" @@ -11665,11 +12037,11 @@ msgid "" "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/AboutDialog.cpp:66 +#: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:304 +#: Source/Core/Core/ConfigManager.cpp:306 msgid "This title cannot be booted." msgstr "" @@ -11682,7 +12054,7 @@ msgstr "" msgid "This title is set to use an invalid common key." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:322 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:325 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11690,7 +12062,7 @@ msgid "" "DSPHLE: Unknown ucode (CRC = {0:08x}) - forcing AX." msgstr "" -#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:313 +#: Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp:316 msgid "" "This title might be incompatible with DSP HLE emulation. Try using LLE if " "this is homebrew.\n" @@ -11709,6 +12081,13 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +msgid "" +"This will also filter unconditional branches.\n" +"To filter for or against unconditional branches,\n" +"use the Branch Type filter options." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" "This will limit the speed of chunked uploading per client, which is used for " @@ -11723,11 +12102,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 msgid "Threads" msgstr "" @@ -11735,12 +12114,12 @@ msgstr "" msgid "Threshold" msgstr "閾值" -#: Source/Core/UICommon/UICommon.cpp:546 +#: Source/Core/UICommon/UICommon.cpp:552 msgid "TiB" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:55 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:231 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:32 msgid "Tilt" msgstr "傾斜" @@ -11754,10 +12133,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: 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:654 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Title" msgstr "標題" @@ -11771,7 +12150,7 @@ msgstr "" msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:331 +#: Source/Core/DolphinQt/MenuBar.cpp:360 msgid "Toggle &Fullscreen" msgstr "" @@ -11796,7 +12175,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 msgid "Toggle Breakpoint" msgstr "" @@ -11848,15 +12227,19 @@ msgstr "" msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/ToolBar.cpp:28 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +msgid "Tool Controls" +msgstr "" + +#: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "上方" @@ -11864,9 +12247,8 @@ msgstr "上方" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:90 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:264 -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:498 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" msgstr "" @@ -11903,28 +12285,28 @@ msgstr "" msgid "Touch" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Traditional Chinese" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" msgstr "" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" msgstr "" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" msgstr "" @@ -11961,26 +12343,26 @@ msgid "Triggers" msgstr "扳機" #. i18n: One of the figure types in the Skylanders games. -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330 -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" msgstr "類型" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:48 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" msgstr "" @@ -11992,7 +12374,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" msgstr "" @@ -12004,20 +12386,20 @@ msgstr "" msgid "USB Gecko" msgstr "" -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138 -#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:139 +#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152 msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:272 +#: 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:277 +#: 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." @@ -12025,7 +12407,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: 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." @@ -12034,7 +12416,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12046,11 +12428,11 @@ msgstr "" msgid "Unable to create updater copy." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." msgstr "" @@ -12070,7 +12452,7 @@ msgid "" "Would you like to ignore this line and continue parsing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." msgstr "" @@ -12093,15 +12475,15 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official #. translations in other languages, check the SuperChargers manual at #. https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" msgstr "取消讀取進度" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Undo Save State" msgstr "取消儲存進度" @@ -12119,11 +12501,11 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:637 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:652 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 @@ -12134,12 +12516,13 @@ msgstr "" msgid "Unknown" msgstr "未知" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:865 +#. i18n: "Var" is short for "variant" +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1175 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12163,11 +12546,11 @@ msgid "" "player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" msgstr "" @@ -12175,7 +12558,7 @@ msgstr "" msgid "Unknown author" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" msgstr "" @@ -12183,7 +12566,7 @@ msgstr "" msgid "Unknown disc" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:380 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:381 msgid "Unknown error occurred." msgstr "" @@ -12203,16 +12586,18 @@ msgstr "" msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:632 +#. i18n: This is used to create a file name. The string must end in ".sky". +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277 +#. i18n: This is used to create a file name. The string must end in ".bin". +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" msgstr "無限制" @@ -12245,22 +12630,22 @@ msgid "Unpacking" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 -#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:807 +#: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 msgid "Unsigned 16" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" msgstr "" @@ -12322,23 +12707,23 @@ msgid "" "This can take a while." msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:263 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:266 msgid "Upright Toggle" msgstr "" -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:305 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:308 msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 msgid "Usage Statistics Reporting Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:55 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" @@ -12350,15 +12735,15 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:140 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12366,7 +12751,7 @@ msgstr "" msgid "Use Panic Handlers" msgstr "顯示錯誤提示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: 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 " @@ -12384,43 +12769,18 @@ msgstr "" msgid "Use a single depth buffer for both eyes. Needed for a few games." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:64 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:65 msgid "Use memory mapper configuration at time of scan" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:62 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:63 msgid "Use physical addresses" msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:60 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:61 msgid "Use virtual addresses when possible" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:538 -msgid "" -"Used to find functions based on when they should be running.\n" -"Similar to Cheat Engine Ultimap.\n" -"A symbol map must be loaded prior to use.\n" -"Include/Exclude lists will persist on ending/restarting emulation.\n" -"These lists will not persist on Dolphin close.\n" -"\n" -"'Start Recording': keeps track of what functions run.\n" -"'Stop Recording': erases current recording without any change to the lists.\n" -"'Code did not get executed': click while recording, will add recorded " -"functions to an exclude list, then reset the recording list.\n" -"'Code has been executed': click while recording, will add recorded function " -"to an include list, then reset the recording list.\n" -"\n" -"After you use both exclude and include once, the exclude list will be " -"subtracted from the include list and any includes left over will be " -"displayed.\n" -"You can continue to use 'Code did not get executed'/'Code has been executed' " -"to narrow down the results.\n" -"\n" -"Saving will store the current list in Dolphin's Log folder (File -> Open " -"User Folder)" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183 msgid "User Config" msgstr "" @@ -12452,21 +12812,21 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:240 +#: 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:247 +#: 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/AboutDialog.cpp:57 +#: Source/Core/DolphinQt/AboutDialog.cpp:67 msgid "Using Qt %1" msgstr "" @@ -12474,31 +12834,31 @@ msgstr "" msgid "Using TTL %1 for probe packet" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:601 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" msgstr "" #. i18n: A normal matrix is a matrix used for transforming normal vectors. The word "normal" #. does not have its usual meaning here, but rather the meaning of "perpendicular to a #. surface". -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:590 msgid "Usually used for normal matrices" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:588 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:584 msgid "Usually used for position matrices" msgstr "" #. i18n: Tex coord is short for texture coordinate -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:598 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:594 msgid "Usually used for tex coord matrices" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:103 msgid "Utility" msgstr "工具" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:73 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "V-Sync" msgstr "垂直同步" @@ -12506,11 +12866,11 @@ msgstr "垂直同步" msgid "VBI Skip" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:125 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" msgstr "數值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." msgstr "" @@ -12518,17 +12878,17 @@ msgstr "" msgid "Value:" msgstr "數值:" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:619 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" msgstr "" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" msgstr "" @@ -12544,16 +12904,16 @@ msgstr "事件" msgid "Verify" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:102 msgid "Verify Integrity" msgstr "" -#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412 +#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:413 msgid "Verify certificates" msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:161 msgid "Verifying" msgstr "" @@ -12567,7 +12927,7 @@ msgid "Vertex Rounding" msgstr "" #. i18n: FOV stands for "Field of view". -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:246 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:247 msgid "Vertical FOV" msgstr "" @@ -12581,12 +12941,12 @@ msgid "Video" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "View &code" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128 msgid "View &memory" msgstr "" @@ -12594,14 +12954,14 @@ msgstr "" msgid "Virtual Notches" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:132 msgid "Virtual address space" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:334 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:62 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "音量" @@ -12621,31 +12981,31 @@ msgstr "提高音量" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1073 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "WAD files (*.wad)" msgstr "" -#: Source/Core/Core/WiiUtils.cpp:137 +#: Source/Core/Core/WiiUtils.cpp:138 msgid "WAD installation failed: Could not create Wii Shop log files." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:105 +#: Source/Core/Core/WiiUtils.cpp:106 msgid "WAD installation failed: Could not finalise title import." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:95 +#: Source/Core/Core/WiiUtils.cpp:96 msgid "WAD installation failed: Could not import content {0:08x}." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:79 +#: Source/Core/Core/WiiUtils.cpp:80 msgid "WAD installation failed: Could not initialise title import (error {0})." msgstr "" -#: Source/Core/Core/WiiUtils.cpp:57 +#: Source/Core/Core/WiiUtils.cpp:58 msgid "WAD installation failed: The selected file is not a valid WAD." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:286 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "WAITING" msgstr "" @@ -12684,12 +13044,12 @@ msgstr "" msgid "WIA GC/Wii images (*.wia)" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232 -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:457 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:236 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:456 msgid "Waiting for first scan..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307 msgid "" "Waits for all shaders to finish compiling before starting a game. Enabling " "this option may reduce stuttering or hitching for a short time after the " @@ -12700,7 +13060,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260 +#: 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 " @@ -12722,7 +13082,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:1523 +#: Source/Core/DolphinQt/MenuBar.cpp:1568 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 msgid "Warning" msgstr "警告" @@ -12794,7 +13154,7 @@ msgstr "" #. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" msgstr "" @@ -12811,7 +13171,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:316 +#: 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 " @@ -12819,7 +13179,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:311 +#: 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 " @@ -12827,7 +13187,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -12851,7 +13211,7 @@ msgstr "" msgid "Wii NAND Root:" msgstr "" -#: Source/Core/Core/HW/Wiimote.cpp:100 +#: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" msgstr "" @@ -12859,7 +13219,7 @@ 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:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" @@ -12877,7 +13237,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -12897,7 +13257,7 @@ msgstr "" msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 msgid "Wii and Wii Remote" msgstr "" @@ -12905,11 +13265,11 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1094 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:76 +#: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" @@ -12919,11 +13279,23 @@ msgid "" "can set a hotkey to unlock it." msgstr "" +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +msgid "Window Resolution" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 -#: Source/Core/DolphinQt/GBAWidget.cpp:432 +#: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +msgid "Wipe &Inspection Data" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Wipe Recent Hits" +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" msgstr "自動換行" @@ -12937,10 +13309,14 @@ msgstr "" msgid "Write" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:931 +msgid "Write JIT Block Log Dump" +msgstr "" + #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. #. The string does not mean "write-only" in the sense that something cannot be read from. -#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:235 +#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:237 msgid "Write only" msgstr "" @@ -12982,6 +13358,14 @@ msgstr "" msgid "Wrong revision" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:223 +msgid "Wrote to \"%1\"." +msgstr "" + +#: Source/Android/jni/MainAndroid.cpp:434 +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 @@ -12990,11 +13374,11 @@ msgstr "" msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:569 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 msgid "XF register " msgstr "" -#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67 +#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" msgstr "" @@ -13029,14 +13413,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: 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:272 +#: 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 " @@ -13133,7 +13517,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1177 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13151,15 +13535,19 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "不支援 Zero 3 代碼" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +msgid "Zero candidates remaining." +msgstr "" + #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:97 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:107 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:110 msgid "[%1, %2] and [%3, %4]" msgstr "" @@ -13167,11 +13555,11 @@ msgstr "" msgid "^ Xor" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:205 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" msgstr "" @@ -13190,21 +13578,21 @@ msgstr "" msgid "d3d12.dll could not be loaded." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635 -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:632 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:652 msgid "default" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387 +#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 msgid "disconnected" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:192 +#: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "errno" msgstr "" @@ -13212,31 +13600,35 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +msgid "false" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:198 msgid "is greater than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:200 msgid "is greater than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:194 msgid "is less than" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:196 msgid "is less than or equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:188 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:192 msgid "is not equal to" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:204 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:208 msgid "last value" msgstr "" @@ -13246,7 +13638,7 @@ msgstr "" msgid "m/s" msgstr "" -#: Source/Core/DolphinQt/GBAWidget.cpp:215 +#: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" @@ -13256,13 +13648,13 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "off" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 msgid "on" msgstr "" @@ -13279,16 +13671,20 @@ msgstr "" msgid "sRGB" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:202 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +msgid "true" +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 msgid "uDraw GameTablet" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" msgstr "" @@ -13303,11 +13699,11 @@ msgstr "" msgid "{0} (Masterpiece)" msgstr "" -#: Source/Core/UICommon/GameFile.cpp:771 +#: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:442 +#: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" @@ -13342,7 +13738,7 @@ msgstr "" #. 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 -#: Source/Core/DolphinQt/AboutDialog.cpp:82 +#: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" "© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." @@ -13351,8 +13747,8 @@ msgstr "" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. #. i18n: The symbol/abbreviation for degrees (unit of angular measure). -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:240 -#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:248 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:241 +#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:249 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:35 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:48 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:57 From 3ab1334cd9077010202762357e15e2a04dc8114e Mon Sep 17 00:00:00 2001 From: sowens99 Date: Fri, 26 Apr 2024 20:06:57 -0400 Subject: [PATCH 220/223] VideoCommon: Only show input count when recording --- Source/Core/VideoCommon/OnScreenUI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index dce1c2146f6e..4d0213a1a4ea 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -296,7 +296,8 @@ void OnScreenUI::DrawDebugText() else if (Config::Get(Config::MAIN_SHOW_FRAME_COUNT)) { ImGui::Text("Frame: %" PRIu64, movie.GetCurrentFrame()); - ImGui::Text("Input: %" PRIu64, movie.GetCurrentInputCount()); + if (movie.IsRecordingInput()) + ImGui::Text("Input: %" PRIu64, movie.GetCurrentInputCount()); } if (Config::Get(Config::MAIN_SHOW_LAG)) ImGui::Text("Lag: %" PRIu64 "\n", movie.GetCurrentLagCount()); From 38158191363bde4e3410ffb781203d0d589a395b Mon Sep 17 00:00:00 2001 From: Filoppi Date: Sat, 27 Apr 2024 22:11:45 +0300 Subject: [PATCH 221/223] Qt: fix 13524 - output resampling mode not loading correctly from ini --- Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp index 2b21fcfe13dd..9e2866a70b58 100644 --- a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp @@ -372,7 +372,8 @@ void EnhancementsWidget::LoadSettings() // Resampling const OutputResamplingMode output_resampling_mode = Config::Get(Config::GFX_ENHANCE_OUTPUT_RESAMPLING); - m_output_resampling_combo->setCurrentIndex(static_cast(output_resampling_mode)); + m_output_resampling_combo->setCurrentIndex( + m_output_resampling_combo->findData(static_cast(output_resampling_mode))); m_output_resampling_combo->setEnabled(g_Config.backend_info.bSupportsPostProcessing); From 628ab51b4bdc31af8a4b959a810fc7703f06dd2c Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Fri, 26 Apr 2024 12:23:12 -0700 Subject: [PATCH 222/223] CheatSearch: Use two's complement for negative hex values --- Source/Core/Core/CheatSearch.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/CheatSearch.cpp b/Source/Core/Core/CheatSearch.cpp index 2f51c4f9e8b9..dd5e21ac7bbe 100644 --- a/Source/Core/Core/CheatSearch.cpp +++ b/Source/Core/Core/CheatSearch.cpp @@ -572,11 +572,19 @@ std::string Cheats::CheatSearchSession::GetResultValueAsString(size_t index, if (hex) { if constexpr (std::is_same_v) - return fmt::format("0x{0:08x}", Common::BitCast(m_search_results[index].m_value)); + { + return fmt::format("0x{0:08x}", Common::BitCast(m_search_results[index].m_value)); + } else if constexpr (std::is_same_v) - return fmt::format("0x{0:016x}", Common::BitCast(m_search_results[index].m_value)); + { + return fmt::format("0x{0:016x}", Common::BitCast(m_search_results[index].m_value)); + } else - return fmt::format("0x{0:0{1}x}", m_search_results[index].m_value, sizeof(T) * 2); + { + return fmt::format("0x{0:0{1}x}", + Common::BitCast>(m_search_results[index].m_value), + sizeof(T) * 2); + } } return fmt::format("{}", m_search_results[index].m_value); From a9544510468740b77cf06ef28daaa65fe247fd32 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 29 Apr 2024 20:55:44 +0200 Subject: [PATCH 223/223] Translation resources sync with Transifex --- Languages/po/ar.po | 58 +- Languages/po/ca.po | 58 +- Languages/po/cs.po | 58 +- Languages/po/da.po | 58 +- Languages/po/de.po | 58 +- Languages/po/dolphin-emu.pot | 58 +- Languages/po/el.po | 58 +- Languages/po/en.po | 58 +- Languages/po/es.po | 58 +- Languages/po/fa.po | 58 +- Languages/po/fi.po | 58 +- Languages/po/fr.po | 386 +++++---- Languages/po/hr.po | 58 +- Languages/po/hu.po | 58 +- Languages/po/it.po | 390 +++++---- Languages/po/ja.po | 58 +- Languages/po/ko.po | 58 +- Languages/po/ms.po | 58 +- Languages/po/nb.po | 58 +- Languages/po/nl.po | 58 +- Languages/po/pl.po | 58 +- Languages/po/pt.po | 58 +- Languages/po/pt_BR.po | 555 ++++++++----- Languages/po/ro.po | 58 +- Languages/po/ru.po | 1433 ++++++++++++++++++++++------------ Languages/po/sr.po | 58 +- Languages/po/sv.po | 62 +- Languages/po/tr.po | 58 +- Languages/po/zh_CN.po | 420 ++++++---- Languages/po/zh_TW.po | 58 +- 30 files changed, 2761 insertions(+), 1877 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index 7336e0006388..5412dee6d8b1 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1104,7 +1104,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "القرص بالفعل على وشك أن يتم إدراجه." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1412,7 +1412,7 @@ msgstr "مساحة العنوان حسب حالة وحدة المعالجة ال msgid "Address:" msgstr "عنوان" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1485,7 +1485,7 @@ msgstr "خيارات متقدمة" msgid "Advanced Settings" msgstr "الإعدادات المتقدمة" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1654,7 +1654,7 @@ msgstr "الزاوية" msgid "Angular velocity to ignore and remap." msgstr "السرعة الزاوية للتجاهل وإعادة التخطيط" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "التنعيم" @@ -1678,7 +1678,7 @@ msgstr "إلحاق ب & ملف التوقيع الموجود" msgid "Appl&y Signature File..." msgstr "تطبيق ملف التوقيع" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2355,7 +2355,7 @@ msgstr "" msgid "Calculate" msgstr "حساب" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2708,7 +2708,7 @@ msgstr "رمز" msgid "Codes received!" msgstr "الرموز الواردة!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "تصحيح الألوان" @@ -3029,7 +3029,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3040,7 +3040,7 @@ msgstr "" "الافتراضية أمام الشاشة.

تؤدي القيمة الأعلى إلى إنشاء تأثيرات أقوى " "خارج الشاشة بينما تكون القيمة الأقل أكثر راحة." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3049,7 +3049,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3082,7 +3082,7 @@ msgstr "" "Controls whether to use high or low-level DSP emulation. Defaults to " "True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "التقارب" @@ -3709,7 +3709,7 @@ msgstr "حذف الملفات المحددة" msgid "Delete the existing file '{0}'?" msgstr "'{0}' احذف الملف الموجود" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "العمق" @@ -3888,7 +3888,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4604,7 +4604,7 @@ msgstr "" "Enables Floating Point Result Flag calculation, needed for a few games. (ON " "= Compatible, OFF = Fast)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4638,7 +4638,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5879,7 +5879,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5889,7 +5889,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6447,7 +6447,7 @@ msgstr "الرسومات" msgid "Graphics mods are currently disabled." msgstr "تعديلات الرسومات معطلة حاليا" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7147,7 +7147,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "الدقة الداخلية" @@ -7342,7 +7342,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7936,7 +7936,7 @@ msgstr "الناشر" msgid "Maker:" msgstr "الناشر" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8870,7 +8870,7 @@ msgstr "لعبة أخرى" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "إعادة تشكيل الإخراج" @@ -9189,7 +9189,7 @@ msgstr "فتحات البوابة" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "تم اكتشاف مزامنة محتملة: %1 قد تمت مزامنتها في الإطار %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "تأثير ما بعد المعالجة" @@ -9516,7 +9516,7 @@ msgstr "اليسار أحمر" msgid "Red Right" msgstr "اليمين أحمر" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10462,7 +10462,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11293,7 +11293,7 @@ msgstr "التنقل" msgid "Stereo" msgstr "استريو" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "3D وضع ثلاثي الأبعاد" @@ -11490,7 +11490,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11650,7 +11650,7 @@ msgstr "دقة ذاكرة التخزين المؤقت للنسيج" msgid "Texture Dumping" msgstr "تفريغ النسيج" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "تصفية النسيج" diff --git a/Languages/po/ca.po b/Languages/po/ca.po index 74e7883a6f6d..f95a8384d95a 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1102,7 +1102,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1392,7 +1392,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1452,7 +1452,7 @@ msgstr "Avançat" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1621,7 +1621,7 @@ msgstr "Angle" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1645,7 +1645,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2316,7 +2316,7 @@ msgstr "" msgid "Calculate" msgstr "Calcular" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2662,7 +2662,7 @@ msgstr "Codi:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2977,7 +2977,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2985,7 +2985,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2994,7 +2994,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3019,7 +3019,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3619,7 +3619,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3798,7 +3798,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4499,7 +4499,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4533,7 +4533,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5745,7 +5745,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5755,7 +5755,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6305,7 +6305,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6974,7 +6974,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7170,7 +7170,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7758,7 +7758,7 @@ msgstr "Fabricant" msgid "Maker:" msgstr "Fabricant:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8679,7 +8679,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8998,7 +8998,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9315,7 +9315,7 @@ msgstr "Vermell Esquerra" msgid "Red Right" msgstr "Vermell Dret" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10253,7 +10253,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11073,7 +11073,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11270,7 +11270,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11428,7 +11428,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/cs.po b/Languages/po/cs.po index 8d862827294c..ccfba00df09d 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1076,7 +1076,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1366,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1426,7 +1426,7 @@ msgstr "Pokročilé" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1595,7 +1595,7 @@ msgstr "Úhel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1619,7 +1619,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2290,7 +2290,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2636,7 +2636,7 @@ msgstr "Kód:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2951,7 +2951,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2959,7 +2959,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2968,7 +2968,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2993,7 +2993,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3593,7 +3593,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4475,7 +4475,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4509,7 +4509,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5720,7 +5720,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5730,7 +5730,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6280,7 +6280,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6949,7 +6949,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7144,7 +7144,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7732,7 +7732,7 @@ msgstr "Tvůrce" msgid "Maker:" msgstr "Výrobce:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8654,7 +8654,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8973,7 +8973,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9290,7 +9290,7 @@ msgstr "Červená vlevo" msgid "Red Right" msgstr "Červená vpravo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10228,7 +10228,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11050,7 +11050,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11247,7 +11247,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11405,7 +11405,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/da.po b/Languages/po/da.po index fa18d514c7fc..9cc271b54165 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1095,7 +1095,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1399,7 +1399,7 @@ msgstr "" msgid "Address:" msgstr "Adresse:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1459,7 +1459,7 @@ msgstr "Avanceret" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1628,7 +1628,7 @@ msgstr "Vinkel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1652,7 +1652,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2325,7 +2325,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2671,7 +2671,7 @@ msgstr "Kode:" msgid "Codes received!" msgstr "Koder modtaget!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2986,7 +2986,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 +2994,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 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 +3003,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 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 +3030,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3632,7 +3632,7 @@ msgstr "Slet valgte filer..." msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3811,7 +3811,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4516,7 +4516,7 @@ msgstr "" "Aktivér beregning af Floating Point resultatflag anvendt i enkelte spil. " "(TIL = Kompatibel, FRA = Hurtig)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4550,7 +4550,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5763,7 +5763,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5773,7 +5773,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6323,7 +6323,7 @@ msgstr "Grafikindstillinger" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7000,7 +7000,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7195,7 +7195,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7783,7 +7783,7 @@ msgstr "Udgiver" msgid "Maker:" msgstr "Udgiver:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8708,7 +8708,7 @@ msgstr "Andet spil..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9027,7 +9027,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9344,7 +9344,7 @@ msgstr "Rød venstre" msgid "Red Right" msgstr "Rød højre" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10282,7 +10282,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11105,7 +11105,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11302,7 +11302,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11460,7 +11460,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/de.po b/Languages/po/de.po index 8290b4d9f3bd..d3738e90bd7d 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1129,7 +1129,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1455,7 +1455,7 @@ msgstr "" msgid "Address:" msgstr "Adresse:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1536,7 +1536,7 @@ msgstr "Erweitert" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1708,7 +1708,7 @@ msgstr "Winkel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1732,7 +1732,7 @@ msgstr "An &vorhandene Signaturdatei anfügen..." msgid "Appl&y Signature File..." msgstr "Signaturdatei an&wenden..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2424,7 +2424,7 @@ msgstr "" msgid "Calculate" msgstr "Berechnen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2792,7 +2792,7 @@ msgstr "Code:" msgid "Codes received!" msgstr "Codes empfangen!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -3108,7 +3108,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3120,7 +3120,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3134,7 +3134,7 @@ msgstr "" "geringer die interne Auflösung, desto besser die Performance." "

Im Zweifel, wähle Nativ." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3168,7 +3168,7 @@ msgstr "" "Kontroliiert, ob High- oder Low-Level-DSP Emulation verwendet werden soll. " "Standardwert True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Konvergenz" @@ -3814,7 +3814,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:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Tiefe" @@ -4000,7 +4000,7 @@ msgstr "" "zu erzwingen. Sperrt jede Hochskalierung.

Im " "Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4735,7 +4735,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4772,7 +4772,7 @@ msgstr "" "unterstützt wird. Die meisten Spiele haben damit kein Problem." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6042,7 +6042,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6052,7 +6052,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6631,7 +6631,7 @@ msgstr "Grafik schaltet um" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7367,7 +7367,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Interne Auflösung" @@ -7562,7 +7562,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT-SystemRegister Aus" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8162,7 +8162,7 @@ msgstr "Hersteller" msgid "Maker:" msgstr "Hersteller:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9108,7 +9108,7 @@ msgstr "Anderes Spiel..." msgid "Output" msgstr "Ausgabe" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9429,7 +9429,7 @@ msgstr "" "Mögliche Desynchronisation erkannt: %1 wurde wahrscheinlich auf Frame %2 " "desynchronisiert" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Nachbearbeitungseffekt" @@ -9759,7 +9759,7 @@ msgstr "Rot links" msgid "Red Right" msgstr "Rot rechts" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10716,7 +10716,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11570,7 +11570,7 @@ msgstr "Schrittweite" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Stereoskopischer 3D-Modus" @@ -11777,7 +11777,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11940,7 +11940,7 @@ msgstr "Texturen-Cache-Genauigkeit" msgid "Texture Dumping" msgstr "Texturdump" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Texturfilterung" diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index cd002bf6ba9b..51bb457bfdf1 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1073,7 +1073,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1363,7 +1363,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1423,7 +1423,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 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 +1592,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1616,7 +1616,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2287,7 +2287,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2633,7 +2633,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2948,7 +2948,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2956,7 +2956,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2965,7 +2965,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2990,7 +2990,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3590,7 +3590,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3769,7 +3769,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4470,7 +4470,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4504,7 +4504,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5712,7 +5712,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5722,7 +5722,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6272,7 +6272,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6941,7 +6941,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7136,7 +7136,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7721,7 +7721,7 @@ msgstr "" msgid "Maker:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 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 +8642,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8961,7 +8961,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9278,7 +9278,7 @@ msgstr "" msgid "Red Right" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10216,7 +10216,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11036,7 +11036,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11233,7 +11233,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11391,7 +11391,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/el.po b/Languages/po/el.po index d50be8692b72..f9602f866d6f 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1087,7 +1087,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1377,7 +1377,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1437,7 +1437,7 @@ msgstr "Για προχωρημένους" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1606,7 +1606,7 @@ msgstr "Γωνεία" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Εξομάλυνση Ορίων" @@ -1630,7 +1630,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2301,7 +2301,7 @@ msgstr "" msgid "Calculate" msgstr "Υπολογισμός" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2647,7 +2647,7 @@ msgstr "Κωδικός:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2962,7 +2962,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 +2970,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 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 +2979,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 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 +3004,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3606,7 +3606,7 @@ msgstr "Διαγραφή Επιλεγμένων Αρχείων..." msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Βάθος" @@ -3786,7 +3786,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4494,7 +4494,7 @@ msgstr "" "Ενεργοποιεί το Floating Point Result Flag υπολογισμό, απαραίτητο για μερικά " "παιχνίδια. (Ενεργό = Συμβατότητα, Ανενεργό = Ταχύτητα)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4528,7 +4528,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5740,7 +5740,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5750,7 +5750,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6300,7 +6300,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6969,7 +6969,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Εσωτερική Ανάλυση" @@ -7164,7 +7164,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7752,7 +7752,7 @@ msgstr "Δημιουργός" msgid "Maker:" msgstr "Δημιουργός:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8675,7 +8675,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8994,7 +8994,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9311,7 +9311,7 @@ msgstr "Αριστερό Κόκκινο" msgid "Red Right" msgstr "Δεξί Κόκκινο" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10249,7 +10249,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11072,7 +11072,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11269,7 +11269,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11427,7 +11427,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/en.po b/Languages/po/en.po index c1cddb99aef1..c7d90e50471b 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+0200\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -1072,7 +1072,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1362,7 +1362,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1422,7 +1422,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 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 +1591,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1615,7 +1615,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2286,7 +2286,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2632,7 +2632,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2947,7 +2947,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2955,7 +2955,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2964,7 +2964,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2989,7 +2989,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3589,7 +3589,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3768,7 +3768,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4469,7 +4469,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4503,7 +4503,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5711,7 +5711,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5721,7 +5721,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6271,7 +6271,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6940,7 +6940,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7135,7 +7135,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7720,7 +7720,7 @@ msgstr "" msgid "Maker:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8641,7 +8641,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8960,7 +8960,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9277,7 +9277,7 @@ msgstr "" msgid "Red Right" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10215,7 +10215,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11035,7 +11035,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11232,7 +11232,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11390,7 +11390,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/es.po b/Languages/po/es.po index 3381ec884673..99c497aefdd7 100644 --- a/Languages/po/es.po +++ b/Languages/po/es.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1139,7 +1139,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1473,7 +1473,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:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1564,7 +1564,7 @@ msgstr "Avanzado" msgid "Advanced Settings" msgstr "Ajustes avanzados" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1735,7 +1735,7 @@ msgstr "Ángulo" msgid "Angular velocity to ignore and remap." msgstr "Velocidad angular a ignorar y reasignar." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Suavizado de bordes" @@ -1759,7 +1759,7 @@ msgstr "Añadir al archivo de firma existente..." msgid "Appl&y Signature File..." msgstr "Aplicar archivo de firma..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2456,7 +2456,7 @@ msgstr "" msgid "Calculate" msgstr "Calcular" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2827,7 +2827,7 @@ msgstr "Código:" msgid "Codes received!" msgstr "¡Códigos recibidos!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Corrección de color" @@ -3206,7 +3206,7 @@ msgstr "" "tenga efecto.

Si tienes dudas, deja esta opción en " "203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3218,7 +3218,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3232,7 +3232,7 @@ msgstr "" "resolución interna, mejor será el rendimiento.

Si " "tienes dudas, selecciona Nativa." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3267,7 +3267,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:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Convergencia" @@ -3936,7 +3936,7 @@ msgstr "Borrar archivos seleccionados..." msgid "Delete the existing file '{0}'?" msgstr "¿Borrar el archivo «{0}»?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Profundidad" @@ -4122,7 +4122,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:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4928,7 +4928,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4984,7 +4984,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:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6309,7 +6309,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:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6326,7 +6326,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:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6919,7 +6919,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:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7689,7 +7689,7 @@ msgstr "" "versión ({0} / {1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Resolución interna" @@ -7887,7 +7887,7 @@ msgid "JIT SystemRegisters Off" msgstr "Sin SystemRegisters JIT" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8497,7 +8497,7 @@ msgstr "Creador" msgid "Maker:" msgstr "Creador:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9477,7 +9477,7 @@ msgstr "Otro juego..." msgid "Output" msgstr "Salida" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Remuestreo de salida" @@ -9805,7 +9805,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:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Efecto de posprocesado:" @@ -10138,7 +10138,7 @@ msgstr "Rojo izquierdo" msgid "Red Right" msgstr "Rojo derecho" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -11113,7 +11113,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -12022,7 +12022,7 @@ msgstr "Avanzar" msgid "Stereo" msgstr "Estéreo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Modo 3D estereoscópico" @@ -12230,7 +12230,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12398,7 +12398,7 @@ msgstr "Precisión de la caché de texturas" msgid "Texture Dumping" msgstr "Volcado de texturas" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Filtrado de texturas" diff --git a/Languages/po/fa.po b/Languages/po/fa.po index da6ff71620ce..13ec28a61980 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1076,7 +1076,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1366,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1426,7 +1426,7 @@ msgstr "پیشرفته" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1595,7 +1595,7 @@ msgstr "زاویه" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1619,7 +1619,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2290,7 +2290,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2636,7 +2636,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2951,7 +2951,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2959,7 +2959,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2968,7 +2968,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2993,7 +2993,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3593,7 +3593,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4473,7 +4473,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4507,7 +4507,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5718,7 +5718,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5728,7 +5728,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6278,7 +6278,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6947,7 +6947,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7142,7 +7142,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7730,7 +7730,7 @@ msgstr "" msgid "Maker:" msgstr "سازنده" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8651,7 +8651,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8970,7 +8970,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9287,7 +9287,7 @@ msgstr "قرمز چپ" msgid "Red Right" msgstr "قرمز راست" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10225,7 +10225,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11045,7 +11045,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11242,7 +11242,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11400,7 +11400,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/fi.po b/Languages/po/fi.po index 8c95f27e6acf..f9c0947f1887 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1111,7 +1111,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Levyä ollaan jo laittamassa." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1443,7 +1443,7 @@ msgstr "Osoiteavaruus CPU-tilan mukaan" msgid "Address:" msgstr "Osoite:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1531,7 +1531,7 @@ msgstr "Lisäasetukset" msgid "Advanced Settings" msgstr "Lisäasetukset" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1702,7 +1702,7 @@ msgstr "Kulma" msgid "Angular velocity to ignore and remap." msgstr "Kulmanopeus uudelleenmuunnettavaksi." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Reunanpehmennys" @@ -1726,7 +1726,7 @@ msgstr "Lisää allekirjoitus &olemassaolevaan allekirjoitustiedostoon..." msgid "Appl&y Signature File..." msgstr "Käyt&ä allekirjoitustiedostoa..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2420,7 +2420,7 @@ msgstr "" msgid "Calculate" msgstr "Laske" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2792,7 +2792,7 @@ msgstr "Koodi:" msgid "Codes received!" msgstr "Koodit saatu!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Värinkorjaus" @@ -3165,7 +3165,7 @@ msgstr "" "ulostulo.

Ellet ole varma, jätä tämän arvoksi 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3177,7 +3177,7 @@ msgstr "" "voimakkaamman ruudusta nousemisen vaikutelman, kun taas matalampi arvo on " "mukavampi." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3192,7 +3192,7 @@ msgstr "" "

Ellet ole varma, valitse Alkuperäinen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3227,7 +3227,7 @@ msgstr "" "Valitsee, käytetäänkö matalan vai korkean tason DSP-emulointia. Oletuksena " "True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Yhtenevyys" @@ -3894,7 +3894,7 @@ msgstr "Poista valitut tiedostot..." msgid "Delete the existing file '{0}'?" msgstr "Poistetaanko olemassaoleva tiedosto '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Syvyys" @@ -4081,7 +4081,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4864,7 +4864,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4921,7 +4921,7 @@ msgstr "" "Useimmissa peleissä tämä ei aiheuta ongelmia.

Ellet " "ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6223,7 +6223,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:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6233,7 +6233,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6824,7 +6824,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:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7589,7 +7589,7 @@ msgstr "" "({0} / {1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Sisäinen kuvatarkkuus" @@ -7784,7 +7784,7 @@ 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:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8394,7 +8394,7 @@ msgstr "Tekijä" msgid "Maker:" msgstr "Tekijä:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9377,7 +9377,7 @@ msgstr "Muu peli..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Kuvan uudelleenotanta" @@ -9705,7 +9705,7 @@ msgstr "" "Mahdollinen desynkronoituminen havaittu: %1 on voinut desynkronoitua " "kehyksessä %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Jälkikäsittelyefekti" @@ -10034,7 +10034,7 @@ msgstr "Punainen vasen" msgid "Red Right" msgstr "Punainen oikea" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -11004,7 +11004,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11901,7 +11901,7 @@ msgstr "Askellus" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Stereoskooppinen 3D -tila" @@ -12108,7 +12108,7 @@ msgstr "Vaihda voimaa" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12276,7 +12276,7 @@ msgstr "Tekstuurivälimuistin tarkkuus" msgid "Texture Dumping" msgstr "Tekstuurien vedostaminen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Tekstuurien suodattaminen" diff --git a/Languages/po/fr.po b/Languages/po/fr.po index 26baba878075..36b0c3ef18f1 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -178,7 +178,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 révision(s) après %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -436,7 +436,7 @@ msgstr "Paramètres des &manettes" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 msgid "&Copy Address" -msgstr "" +msgstr "&Copier l'adresse" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" @@ -573,7 +573,7 @@ msgstr "&Langue :" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Charger la surveillance de Branche" #: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" @@ -678,7 +678,7 @@ msgstr "Gestionnaire de Packs de &Ressources" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Sauvegarder la surveillance de Branche" #: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" @@ -710,7 +710,7 @@ msgstr "&Threads" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "&Tool" -msgstr "" +msgstr "&Outil" #: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" @@ -1121,7 +1121,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1161,7 +1161,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 msgid "A&uto Save" -msgstr "" +msgstr "Sauvegarde a&uto" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1457,7 +1457,7 @@ msgstr "Espace d'adresse par état de CPU" msgid "Address:" msgstr "Adresse :" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1543,7 +1543,7 @@ msgstr "Avancé" msgid "Advanced Settings" msgstr "Réglages avancés" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1565,6 +1565,30 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"Affecte la manière dont l'affichage du jeu est mis à l'échelle en fonction " +"de la résolution de la fenêtre.
Les performances dépendent principalement " +"du nombre d'échantillons que chaque méthode utilise.
Comparé au SSAA, le " +"rééchantillonnage est utile dans le cas où la résolution de la fenêtre " +"d'affichage
n'est pas un multiple de la résolution native émulée." +"

Par défaut - [le plus rapide]
Échantillonneur bilinéaire " +"interne au GPU qui ne corrige pas le gamma.
Ce réglage peut être ignoré " +"si la correction gamma est forcée sur marche.

Bilinéaire - [4 " +"échantillons]
Interpolation linéaire entre les pixels avec correction " +"gamma.

Bicubique - [16 échantillons]
Interpolation cubique " +"entre les pixels avec correction gamma.
Bien lors d'une mise à l'échelle " +"sur des résolutions proches, par exemple 1080p et 1440p.
Fourni dans " +"différents parfums :
B-Spline : flou, mais évite tous les " +"artefacts de lobing.
Mitchell-Netravali : bon compromis entre flou " +"et le lobing.
Catmull-Rom : plus net, mais peut provoquer des " +"artefacts de lobing.

Bilinéaire net - [1 à 4 " +"échantillons]
Similaire au \"Plus proche\", il conserve un affichage net, " +"
mais fait un peu de mélange pour éviter les reflets.
Fonctionne au " +"mieux avec les jeux en 2D dans de faibles résolutions." +"

Échantillonnage de zone - [jusqu'à 324 " +"échantillons]
Pondère les pixels en fonction du pourcentage de surface " +"qu'ils occupent. Avec correction gamma.
C'est le mieux pour downscaler " +"par plus de 2x.

Dans le doute, sélectionnez \"Par " +"défaut\"." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1714,7 +1738,7 @@ msgstr "Angle" msgid "Angular velocity to ignore and remap." msgstr "Vélocité angulaire à ignorer et remapper." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1738,7 +1762,7 @@ msgstr "Ajouter à un fichier de signature &existant..." msgid "Appl&y Signature File..." msgstr "A&ppliquer un fichier de signature" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1793,7 +1817,7 @@ msgstr "Format d'écran" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +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 @@ -1940,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "Adresse de destination BBA" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -2100,6 +2124,10 @@ msgid "" "\n" "Try again with a different character." msgstr "" +"Échec de la création d'une figure vierge à :\n" +"%1\n" +"\n" +"Veuillez réessayer avec un personnage différent." #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 @@ -2164,71 +2192,71 @@ msgstr "Bas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 msgid "Branch" -msgstr "" +msgstr "Branche" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 msgid "Branch (LR saved)" -msgstr "" +msgstr "Branche (LR sauvegardé)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 msgid "Branch Conditional" -msgstr "" +msgstr "Branche Conditionnelle" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 msgid "Branch Conditional (LR saved)" -msgstr "" +msgstr "Branche Conditionnelle (LR sauvegardé)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch Conditional to Count Register" -msgstr "" +msgstr "Branche Conditionnelle vers Registre de comptage" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Branche Conditionnelle vers Registre de comptage (LR sauvegardé)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch Conditional to Link Register" -msgstr "" +msgstr "Branche Conditionnelle vers Registre de Lien" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Branche Conditionnelle vers Registre de Lien (LR sauvegardé)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Not Overwritten" -msgstr "" +msgstr "Branche non écrasée" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch Type" -msgstr "" +msgstr "Type de branche" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 msgid "Branch Was Overwritten" -msgstr "" +msgstr "La branche a été écrasée" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Surveillance de Branche" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Outil de surveillance de Branche" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Aide de l'outil de surveillance de Branche (1/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Aide de l'outil de surveillance de Branche (2/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Aide de l'outil de surveillance de Branche (3/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Aide de l'outil de surveillance de Branche (4/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 msgid "" @@ -2246,6 +2274,22 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"La surveillance de branche est un outil de recherche de code qui peut isoler " +"les branches suivies par le CPU émulé en testant les branches candidates " +"avec un critère simple. Si vous connaissez le moteur de cheat Ultimap, la " +"surveillance de branche vous sera familière.\n" +"\n" +"Cliquez que le bouton \"Démarrer la surveillance de Branche\" pour " +"l'activer. Elle reste active à travers les sessions d'émulation, et un " +"instantané de votre progression peut être sauvegardé et chargé depuis le " +"répertoire User pour pouvoir reprendre après avoir quitté Dolphin. Les " +"actions \"Sauvegarder sous...\" et \"Charger depuis...\" sont également " +"disponibles, et la sauvegarde automatique peut être activée pour faire un " +"instantané à chaque étape de la recherche. Le bouton \"Mettre en pause la " +"surveillance de Branche\" l'arrêtera de suivre les futurs hits de branche " +"jusqu'à ce qu'il lui soit demandé de reprendre. Appuyez sur le bouton " +"\"Effacer la surveillance de Branche\" pour effacer toutes les candidates et " +"retourner à la phase de liste noire." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 msgid "" @@ -2256,22 +2300,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 "" +"La surveillance de Branche démarre dans une phase de liste noire, ce qui " +"signifie qu'aucune candidate n'a encore été choisie, et que celles déjà " +"trouvées peuvent être exclues des candidates en cliquant sur \"Chemin de " +"code non pris\", \"La branche a été écrasée\", et \"La branche n'a pas été " +"écrasée\". Une fois cliqué sur \"Chemin de code non pris\" une première " +"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 msgid "Branch to Count Register" -msgstr "" +msgstr "Branche vers Registre de comptage" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Count Register (LR saved)" -msgstr "" +msgstr "Branche vers Registre de comptage (LR sauvegardé)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "Branche vers Registre de liens" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Branche vers Registre de liens (LR sauvegardé)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2434,7 +2485,7 @@ msgstr "" msgid "Calculate" msgstr "Calculer" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2529,15 +2580,15 @@ msgstr "Annuler l'étalonnage" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 msgid "Candidates: %1" -msgstr "" +msgstr "Candidates : %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Candidates : %1 | Exclues : %2 | Restantes : %3" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Candidates : %1 | Filtrées : %2 | Restantes : %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2765,7 +2816,7 @@ msgstr "Effacer" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 msgid "Clear Branch Watch" -msgstr "" +msgstr "Effacer la surveillance de Branche" #: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" @@ -2798,11 +2849,11 @@ msgstr "Code" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Not Taken" -msgstr "" +msgstr "\"Chemin de code non pris\"" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Code Path Was Taken" -msgstr "" +msgstr "\"Le chemin de code a été pris\"" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2812,7 +2863,7 @@ msgstr "Code :" msgid "Codes received!" msgstr "Codes reçus !" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Correction de couleur" @@ -2830,7 +2881,7 @@ msgstr "Espace de couleur" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 msgid "Column &Visibility" -msgstr "" +msgstr "&Visibilité de la colonne" #: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." @@ -2890,7 +2941,7 @@ msgstr "Compression :" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 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. @@ -3188,7 +3239,7 @@ msgstr "" "effet.

Dans le doute, laissez la valeur sur 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3200,7 +3251,7 @@ msgstr "" "l'impression que les objets sortent de l'écran, une valeur basse est plus " "confortable." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3215,7 +3266,7 @@ msgstr "" "

Dans le doute, sélectionnez Résolution native " -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3250,7 +3301,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:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Convergence" @@ -3405,7 +3456,7 @@ msgstr "Core" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 msgid "Core is uninitialized." -msgstr "" +msgstr "Le noyau n'est pas initialisé." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3653,7 +3704,7 @@ msgstr "Personnalisé" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" -msgstr "" +msgstr "Personnalisé (étirer)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" @@ -3919,7 +3970,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:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Profondeur" @@ -3953,29 +4004,29 @@ msgstr "Description : %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Destination" -msgstr "" +msgstr "Destination" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Destination (chemin de socket UNIX ou adresse:port) :" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Destination (addresse:port) :" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 msgid "Destination Max" -msgstr "" +msgstr "Destination Max" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 msgid "Destination Min" -msgstr "" +msgstr "Destination Min" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Destination Symbol" -msgstr "" +msgstr "Symbole de destination" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" @@ -4105,7 +4156,7 @@ msgstr "" "la RAM. Empêche tout upscaling.

Dans le doute, " "décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4738,7 +4789,7 @@ msgstr "" #: Source/Core/DolphinQt/MenuBar.cpp:924 msgid "Enable JIT Block Profiling" -msgstr "" +msgstr "Activer le profilage de bloc de JIT" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" @@ -4905,7 +4956,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4963,7 +5014,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5117,6 +5168,8 @@ msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." msgstr "" +"Entrez l'adresse IP et le port de l'instance tapserver à laquelle vous " +"voulez vous connecter." #: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" @@ -5532,7 +5585,7 @@ msgstr "Impossible d'effacer Skylander !" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "Impossible d'effacer le Skylander du slot %1 !" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5574,6 +5627,10 @@ msgid "" "\n" "The Skylander may already be on the portal." msgstr "" +"Impossible de créer le fichier Skylander :\n" +"%1\n" +"\n" +"Le Skylander est peut-être déjà sur le portail." #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5734,6 +5791,8 @@ msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"Impossible de charger le fichier Skylander :\n" +"%1" #: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." @@ -5753,11 +5812,11 @@ msgstr "Impossible de modifier Skylander !" #: Source/Core/DolphinQt/MenuBar.cpp:215 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Impossible d'ouvrir \"%1\" en écriture." #: Source/Android/jni/MainAndroid.cpp:428 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Impossible d'ouvrir \"{0}\" en écriture." #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/MainWindow.cpp:1722 @@ -5771,7 +5830,7 @@ msgstr "Impossible d'utiliser l'appareil Bluetooth : {0}" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Impossible d'ouvrir l'instantané de surveillance de Branche \"%1\"" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5817,6 +5876,10 @@ msgid "" "\n" "The file may already be in use on the base." msgstr "" +"Impossible d'ouvrir le fichier Infinity :\n" +"%1\n" +"\n" +"Le fichier est peut-être déjà en cours d'utilisation sur la base." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" @@ -5829,6 +5892,10 @@ msgid "" "\n" "The file may already be in use on the portal." msgstr "" +"Impossible d'ouvrir le fichier Skylander :\n" +"%1\n" +"\n" +"Le fichier est peut-être déjà en cours d'utilisation sur le portail." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5885,6 +5952,10 @@ msgid "" "\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 msgid "Failed to read the Skylander file!" @@ -5897,12 +5968,18 @@ msgid "" "\n" "The file was too small." msgstr "" +"Impossible de lire le fichier Skylander :\n" +"%1\n" +"\n" +"Le fichier était trop petit." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" "Failed to read the contents of file:\n" "%1" msgstr "" +"Impossible de lire le contenu du fichier :\n" +"%1" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5947,6 +6024,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 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 msgid "Failed to save FIFO log." @@ -6282,7 +6361,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:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6298,7 +6377,7 @@ msgstr "" "jeu sont préférables à ceci, si disponibles.

Dans " "le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6822,7 +6901,7 @@ msgstr "Général et Options" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Générer un/des code(s) Action Replay" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" @@ -6830,7 +6909,7 @@ msgstr "Générer une nouvelle identité pour les statistiques" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 msgid "Generated AR code(s)." -msgstr "" +msgstr "Code(s) AR généré(s)." #: Source/Core/DolphinQt/MenuBar.cpp:1337 msgid "Generated symbol names from '%1'" @@ -6892,7 +6971,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:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6999,7 +7078,7 @@ msgstr "Cacher" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 msgid "Hide &Controls" -msgstr "" +msgstr "Cacher les &contrôles" #: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" @@ -7291,7 +7370,7 @@ msgstr "Ignorer" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Ignorer les its de Branche d'&Apploader" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7527,15 +7606,15 @@ msgstr "Force de l'entrée à ignorer et remapper." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 msgid "Insert &BLR" -msgstr "" +msgstr "Insérer &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 msgid "Insert &BLR at start" -msgstr "" +msgstr "Insérer &BLR au démarrage" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 msgid "Insert &NOP" -msgstr "" +msgstr "Insérer &NOP" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" @@ -7661,7 +7740,7 @@ msgstr "" "décompressée ({0} / {1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Résolution interne" @@ -7858,7 +7937,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7869,7 +7948,7 @@ msgstr "" #: Source/Android/jni/MainAndroid.cpp:417 msgid "JIT is not active" -msgstr "" +msgstr "JIT n'est pas actif" #: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" @@ -8136,11 +8215,11 @@ msgstr "Charger un &Autre fichier de carte..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "Charger la surveillance de Branche &depuis..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Charger l'instantané de surveillance de Branche" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8470,7 +8549,7 @@ msgstr "Concepteur" msgid "Maker:" msgstr "Concepteur :" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8607,7 +8686,7 @@ msgstr "Paramètres divers" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 msgid "Misc. Controls" -msgstr "" +msgstr "Contrôles divers" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8639,7 +8718,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Adaptateur modem (tapserver)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 @@ -8740,7 +8819,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "Plusieurs erreurs lors de la génération de codes AR." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -9196,51 +9275,51 @@ msgstr "Objet %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Taille de l'objet 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "Objet 1 : X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Objet 1 : Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Taille de l'objet 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "Objet 2 : X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Objet 2 : Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Taille de l'objet 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "Objet 3 : X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Objet 3 : Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Taille de l'objet 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "Objet 4 : X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Objet 4 : Y" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" @@ -9291,6 +9370,18 @@ msgid "" "calls and conditional code paths that are only taken when an action is " "performed in the emulated software." msgstr "" +"Une fois en phase de réduction, il est temps de commencer à affiner les " +"candidates présentées dans le tableau. Réduisez le nombre de candidates en " +"vérifiant si le chemin de code a été emprunté ou non depuis la dernière fois " +"qu'il a été vérifié. Il est également possible de réduire les candidates en " +"déterminant si une instruction dans la branche a été écrasée ou non depuis " +"son dernier hit. Filtrez les candidates par type de branche, condition de " +"branche, adresse d'origine ou de destination, ou nom de symbole d'origine ou " +"de destination.\n" +"\n" +"Après suffisamment de passes et d'essais, vous pourrez trouver l'appel de " +"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 msgid "Online &Documentation" @@ -9405,25 +9496,25 @@ msgstr "Orbite" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Origin" -msgstr "" +msgstr "Origine" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 msgid "Origin Max" -msgstr "" +msgstr "Origine maxi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 msgid "Origin Min" -msgstr "" +msgstr "Origine mini" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Origin Symbol" -msgstr "" +msgstr "Symbole d'origine" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 msgid "Origin and Destination" -msgstr "" +msgstr "Origine et destination" #: Source/Core/Core/FreeLookManager.cpp:101 #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 @@ -9456,7 +9547,7 @@ msgstr "Autres jeux..." msgid "Output" msgstr "Sortie" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Rééchantillonnage de la sortie" @@ -9576,7 +9667,7 @@ msgstr "Pause" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 msgid "Pause Branch Watch" -msgstr "" +msgstr "Mettre en pause la surveillance de la branche" #: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" @@ -9759,7 +9850,7 @@ msgstr "Pointer" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Pointage (en direct)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 @@ -9785,7 +9876,7 @@ msgstr "" "Possible désynchronisation détectée : %1 peut s'être désynchronisé à l'image " "%2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Effet de Post-processing" @@ -10028,7 +10119,7 @@ msgstr "Raw (brut)" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Résolution interne brute" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" @@ -10077,7 +10168,7 @@ 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 msgid "Recent Hits" -msgstr "" +msgstr "Hits récents" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 @@ -10117,7 +10208,7 @@ msgstr "Rouge Gauche" msgid "Red Right" msgstr "Rouge Droite" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10309,7 +10400,7 @@ msgstr "Réinitialiser tous les jumelages sauvegardés des Wiimotes" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" -msgstr "" +msgstr "Type de résolution :" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10570,11 +10661,11 @@ msgstr "Tout enregistrer" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "Sauvegarder la surveillance de Branche &sous..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Sauvegarder l'instantané de surveillance de Branche" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 @@ -10847,6 +10938,8 @@ msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" msgstr "" +"Sélectionner un fichier de sauvegarde automatique d'instantané de " +"surveillance de Branche (pour utiliser le dossier utilisateur, annulez)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" @@ -11088,7 +11181,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11129,6 +11222,24 @@ msgid "" "normal circumstances.

If unsure, select Auto." msgstr "" +"Sélectionne le format d'affichage à utiliser pour afficher le jeu.

Le " +"format d'affichage envoyé par les consoles variait en fonction du jeu et " +"correspondait rarement à 4/3 ou 16/9. Une partie de l'image pouvait être " +"masquée par les bords de la TV, ou l'image pouvait ne pas remplir " +"complètement l'écran. Par défaut, Dolphin affiche l'image en entier sans la " +"déformer, ce qui veut dire qu'il est normal que l'image ne remplisse pas " +"complètement votre moniteur.

Auto : imite une TV avec un " +"format d'affichage 4/3 ou 16/9, en fonction du type de TV que le jeu semble " +"vouloir cibler.

Forcer 16/9 : imite une TV 16/9 (écran large)." +"

Forcer 4/3 : imite une TV en 4/3.

Étirer à la " +"fenêtre : étire l'image à la taille de la fenêtre. Ceci déforme les " +"proportions de l'image.

Personnalisé : imite une TV avec un " +"ratio largeur/hauteur spécifié. Ceci est principalement destiné à être " +"utilisé avec des astuces/mods de rapport hauteur/largeur." +"

Personnalisé (étirer) : Similaire à 'Personnalisé', mais " +"étire l'image au ratio spécifié. Ceci va déformer l'image, et ne devrait pas " +"être utilisé en temps normal.

Dans le doute, " +"sélectionnez Auto." #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" @@ -11421,7 +11532,7 @@ msgstr "Afficher les plateformes" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" -msgstr "" +msgstr "Afficher les statistiques de projection" #: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" @@ -11601,6 +11712,8 @@ msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"Affiche diverses statistiques de projection.

Dans " +"le doute, décochez cette case." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" @@ -11908,7 +12021,7 @@ msgstr "Démarrer &NetPlay..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 msgid "Start Branch Watch" -msgstr "" +msgstr "Démarrer la surveillance de la Branche" #: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" @@ -11998,7 +12111,7 @@ msgstr "Pas à pas" msgid "Stereo" msgstr "Stéréo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Mode de stéréoscopie 3D" @@ -12206,7 +12319,7 @@ msgstr "Swap Forces" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12358,7 +12471,7 @@ msgstr "Test" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Fichier texte (*.txt);;Tous les fichiers (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12373,7 +12486,7 @@ msgstr "Précision du cache de texture" msgid "Texture Dumping" msgstr "Copie des textures" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Filtrage de texture" @@ -12452,6 +12565,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 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 msgid "" @@ -12503,6 +12617,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"La valeur par défaut \"%1\" fonctionnera avec un tapserver et newserv local. " +"Vous pouvez également entrer un emplacement réseau (adresse:port) pour vous " +"connecter à un tapserver distant." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12695,6 +12812,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"Le niveau du héros de ce Skylander. Uniquement vu dans Skylanders: Spyro's " +"Adventure. Compris entre 0 et 100." #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12734,7 +12853,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Le pseudo pour ce Skylander. Limité à 15 caractères." #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12922,7 +13041,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 msgid "There is nothing to save!" -msgstr "" +msgstr "Il n'y a rien à sauvegarder !" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -13133,7 +13252,7 @@ msgstr "Ceci est un dump correct." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Ceci s'applique uniquement au boot initial du logiciel émulé." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13215,6 +13334,9 @@ msgid "" "To filter for or against unconditional branches,\n" "use the Branch Type filter options." msgstr "" +"Ceci va également les Branches inconditionnelles.\n" +"Pour filtrer avec ou sans les Branches inconditionnelles,\n" +"utilisez les options de filtre Type de Branches." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" @@ -13370,7 +13492,7 @@ msgstr "Échec du jetonnage." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Tool Controls" -msgstr "" +msgstr "Contrôles des outils" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" @@ -14569,7 +14691,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" -msgstr "" +msgstr "Résolution de la fenêtre" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 @@ -14578,11 +14700,11 @@ msgstr "Taille de la fenêtre" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "Effacer les données d'&inspection" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Wipe Recent Hits" -msgstr "" +msgstr "Effacer les Hits récents" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14599,7 +14721,7 @@ msgstr "Écrire" #: Source/Core/DolphinQt/MenuBar.cpp:931 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Écrire le vidage du journal du bloc 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. @@ -14648,11 +14770,11 @@ msgstr "Mauvaise révision" #: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Écrit vers \"%1\"." #: Source/Android/jni/MainAndroid.cpp:434 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Écrit vers \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 @@ -14878,7 +15000,7 @@ msgstr "Code Zero 3 non pris en charge" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 msgid "Zero candidates remaining." -msgstr "" +msgstr "Aucun candidat restant." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14943,7 +15065,7 @@ msgstr "Faux achèvement" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 msgid "false" -msgstr "" +msgstr "faux" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -15020,7 +15142,7 @@ msgstr "cette valeur :" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 msgid "true" -msgstr "" +msgstr "vrai" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 diff --git a/Languages/po/hr.po b/Languages/po/hr.po index 1c90ba383e0b..9bb2bccedd18 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1076,7 +1076,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1366,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1426,7 +1426,7 @@ msgstr "Napredno" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1595,7 +1595,7 @@ msgstr "Kut" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1619,7 +1619,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2290,7 +2290,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2636,7 +2636,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2951,7 +2951,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2959,7 +2959,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2968,7 +2968,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2993,7 +2993,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3593,7 +3593,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4473,7 +4473,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4507,7 +4507,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5718,7 +5718,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5728,7 +5728,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6278,7 +6278,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6947,7 +6947,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7142,7 +7142,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7730,7 +7730,7 @@ msgstr "" msgid "Maker:" msgstr "Tvorac:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8651,7 +8651,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8970,7 +8970,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9287,7 +9287,7 @@ msgstr "Crvena Lijevo" msgid "Red Right" msgstr "Crvena Desno" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10225,7 +10225,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11045,7 +11045,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11242,7 +11242,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11400,7 +11400,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/hu.po b/Languages/po/hu.po index 212a2092a264..8f1ed3a0a964 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1086,7 +1086,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1376,7 +1376,7 @@ msgstr "" msgid "Address:" msgstr "Cím:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1436,7 +1436,7 @@ msgstr "Haladó" msgid "Advanced Settings" msgstr "Haladó beállítások" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 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 +1605,7 @@ msgstr "Szög" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Élsimítás" @@ -1629,7 +1629,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2300,7 +2300,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2647,7 +2647,7 @@ msgstr "Kód:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Színkorrekció" @@ -2962,7 +2962,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 +2970,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 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 +2979,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 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 +3004,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Konvergencia" @@ -3606,7 +3606,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:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Mélység" @@ -3785,7 +3785,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4488,7 +4488,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4522,7 +4522,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5740,7 +5740,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5750,7 +5750,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6302,7 +6302,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6971,7 +6971,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Belső felbontás" @@ -7167,7 +7167,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7755,7 +7755,7 @@ msgstr "Készítő" msgid "Maker:" msgstr "Készítő:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8678,7 +8678,7 @@ msgstr "" msgid "Output" msgstr "Kimenet" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Kimeneti mintavételezés" @@ -8997,7 +8997,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Utófeldolgozási effektus" @@ -9316,7 +9316,7 @@ msgstr "Vörös balra" msgid "Red Right" msgstr "Vörös jobbra" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10255,7 +10255,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11078,7 +11078,7 @@ msgstr "" msgid "Stereo" msgstr "Sztereó" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Sztereoszkópikus 3D mód" @@ -11275,7 +11275,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11433,7 +11433,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Textúraszűrés" diff --git a/Languages/po/it.po b/Languages/po/it.po index ec007989ace9..13e256760bd1 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -171,7 +171,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 commit più avanti rispetto %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -429,7 +429,7 @@ msgstr "Impostazioni &Controller" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 msgid "&Copy Address" -msgstr "" +msgstr "&Copia indirizzo" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" @@ -566,7 +566,7 @@ msgstr "&Lingua:" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Carica Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" @@ -671,7 +671,7 @@ msgstr "&Gestione Resource Pack" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Salva Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" @@ -703,7 +703,7 @@ msgstr "&Thread" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "&Tool" -msgstr "" +msgstr "&Strumenti" #: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" @@ -1114,7 +1114,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Un disco è già in inserimento." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1151,7 +1151,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 msgid "A&uto Save" -msgstr "" +msgstr "&Salvataggio automatico" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1447,7 +1447,7 @@ msgstr "Spazio di indirizzo per stato CPU" msgid "Address:" msgstr "Indirizzo:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1536,7 +1536,7 @@ msgstr "Avanzate" msgid "Advanced Settings" msgstr "Impostazioni avanzate" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1558,6 +1558,27 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"Influenza come l'output del gioco viene scalato alla risoluzione della " +"finestra.
Le prestazioni dipendono soprattutto dal numero di " +"campionamento usati da ogni metodo.
Paragonato a SSAA, il ricampionamento " +"è utile se la risoluzione della
finestra di output non è un multiplo " +"della risoluzione d'emulazione nativa.

Predefinito - [il più " +"rapido]
Campionatore bilineare interno alla GPU senza correzione gamma." +"
Questa opzione potrebbe venire ignorata se la correzione gamma è forzata." +"

Bilineare - [4 campionamenti]
Interpolazione lineare con " +"correzione gamma tra pixel.

Bicubica - [16 " +"campionamenti]
Interpolazione cubica con correzione gamma tra pixel." +"
Buona quando si scala tra risoluzioni vicine, come 1080p e 1440p.
Ci " +"sono diverse varianti:
B-Spline: Sfocata, ma evita gli artefatti " +"di lobing
Mitchell-Netravali: Buona via di mezzo tra la sfocatura " +"e il lobing
Catmull-Rom: Nitido, ma può causare artefatti di " +"lobing

Bilineare Netto - [1-4 campionature]
Similmente a " +"\"Più Vicino\", mantiene un'aspetto nitido,
ma evita lo shimmering grazie " +"al blending.
Migliore con giochi 2D a basse risoluzioni." +"

Campionamento ad Area - [fino a 324 campionamenti]
Soppesa " +"i pixel in base alla percentuale d'area che occupano. Con correzione gamma." +"
Migliore per downscalare a più del 2x.

Nel " +"dubbio, seleziona 'Predefinito'." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1707,7 +1728,7 @@ msgstr "Angolo" msgid "Angular velocity to ignore and remap." msgstr "Velocità angolare da ignorare e rimappare." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1731,7 +1752,7 @@ msgstr "Accoda ad un fil&e di signature preesistente..." msgid "Appl&y Signature File..." msgstr "A&pplica file signature..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1785,7 +1806,7 @@ msgstr "Rapporto d'aspetto" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Risoluzione interna corretta per il rapporto d'aspetto" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 @@ -1902,7 +1923,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" -msgstr "Aggiorna automaticamente i valori correnti" +msgstr "Aggiorna automaticamente i valori attuali" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). @@ -1931,7 +1952,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "Indirizzo destinazione BBA" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -2092,6 +2113,10 @@ msgid "" "\n" "Try again with a different character." msgstr "" +"Creazione della statuina vuota fallita su:\n" +"%1\n" +"\n" +"Riprova con un personaggio diverso" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 @@ -2155,71 +2180,71 @@ msgstr "Sotto" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 msgid "Branch" -msgstr "" +msgstr "Branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 msgid "Branch (LR saved)" -msgstr "" +msgstr "Branch (LR saved)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 msgid "Branch Conditional" -msgstr "" +msgstr "Branch Conditional" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 msgid "Branch Conditional (LR saved)" -msgstr "" +msgstr "Branch Conditional (LR saved)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch Conditional to Count Register" -msgstr "" +msgstr "Branch Conditional to Count Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Branch Conditional to Count Register (LR saved)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch Conditional to Link Register" -msgstr "" +msgstr "Branch Conditional to Link Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Branch Conditional to Link Register (LR saved)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Not Overwritten" -msgstr "" +msgstr "Branch non sovrascritto" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch Type" -msgstr "" +msgstr "Tipologia branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Branch sovrascritto" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Controllo branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Branch Watch Tool" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Aiuto Branch Watch Tool (1/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Aiuto Branch Watch Tool (2/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Aiuto Branch Watch Tool (3/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Aiuto Branch Watch Tool (4/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 msgid "" @@ -2237,6 +2262,20 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"Branch Watch è uno strumento di ricerca codice che permette di isolare " +"branch tracciati dalla CPU emulata confrontando diversi candidati tramite " +"semplici criteri. Se hai presente l'Ultimap di Cheat Engine, Branch Watch " +"non è molto diverso.\n" +"\n" +"Premi il pulsante \"Avvia Branch Watch\" per cominciare. Branch Watch " +"persiste attraverso le sessioni di emulazione, ed è possibile salvare o " +"caricare dalla cartella utente snapshot delle ricerche per mantenere i " +"progressi alla chiusura di Dolphin. Sono anche disponibili \"Salva come...\" " +"and \"Carica da...\", ed è possibile abilitare l'auto-salvataggio per " +"salvare uno snapshot ad ogni passo della ricerca. Il pulsante \"Pausa Branch " +"Watch\" fermerà il tracciamento di Branch Watch finché non ne verrà ripresa " +"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 msgid "" @@ -2247,22 +2286,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 "" +"La prima fase del Branch Watch è quella di blacklist, vale a dire che non " +"sono ancora stati scelti candidati ma quelli trovati possono venire esclusi " +"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." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch to Count Register" -msgstr "" +msgstr "Branch to Count Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Count Register (LR saved)" -msgstr "" +msgstr "Branch to Count Register (LR saved)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "Branch to Link Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Branch to Link Register (LR saved)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2426,7 +2471,7 @@ msgstr "" msgid "Calculate" msgstr "Calcola" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2518,15 +2563,15 @@ msgstr "Annulla calibrazione" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 msgid "Candidates: %1" -msgstr "" +msgstr "Candidati: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Candidati: %1 | Esclusi: %2 | Rimasti: %3" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Candidati: %1 | Filtrati: %2 | Rimasti: %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2748,7 +2793,7 @@ msgstr "Pulisci" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 msgid "Clear Branch Watch" -msgstr "" +msgstr "Pulisci Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" @@ -2781,11 +2826,11 @@ msgstr "Codice" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Not Taken" -msgstr "" +msgstr "Code Path non percorso" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Code Path Was Taken" -msgstr "" +msgstr "Code Path percorso" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2795,7 +2840,7 @@ msgstr "Codice:" msgid "Codes received!" msgstr "Codici ricevuti!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Correzione Colore" @@ -2813,7 +2858,7 @@ msgstr "Spazio dei colori" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 msgid "Column &Visibility" -msgstr "" +msgstr "&Visibilità colonna" #: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." @@ -2874,7 +2919,7 @@ msgstr "Compressione:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 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. @@ -3169,7 +3214,7 @@ msgstr "" "HDR.

L'output HDR è richiesto perché questa funzione abbia effetto." "

Nel dubbio, lascia a 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3181,7 +3226,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 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 +3240,7 @@ msgstr "" "risoluzione interna, migliori saranno le prestazioni." "

Nel dubbio, seleziona Nativo." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3229,7 +3274,7 @@ msgstr "" "Controlla se usare l'emulazione DSP di alto o basso livello. Il default è " "Attivo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Convergenza" @@ -3383,7 +3428,7 @@ msgstr "Core" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 msgid "Core is uninitialized." -msgstr "" +msgstr "Core non inizializzato." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3632,7 +3677,7 @@ msgstr "Personalizzato" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" -msgstr "" +msgstr "Personalizzato (allarga)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" @@ -3898,7 +3943,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:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Profondità" @@ -3932,29 +3977,29 @@ msgstr "Descrizione: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Destination" -msgstr "" +msgstr "Destinazione" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Destinazione (percorso socket UNIX o indirizzo:porta)" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Destinazione (indirizzo:porta):" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 msgid "Destination Max" -msgstr "" +msgstr "Max destinazione" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 msgid "Destination Min" -msgstr "" +msgstr "Min destinazione" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Destination Symbol" -msgstr "" +msgstr "Simbolo di destinazione" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" @@ -4085,7 +4130,7 @@ msgstr "" "Blocca l'upscaling.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4714,7 +4759,7 @@ msgstr "" #: Source/Core/DolphinQt/MenuBar.cpp:924 msgid "Enable JIT Block Profiling" -msgstr "" +msgstr "Abilita JIT Block Profiling" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" @@ -4880,7 +4925,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4933,7 +4978,7 @@ msgstr "" "La maggior parte dei giochi ne è compatibile.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5086,6 +5131,8 @@ msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." msgstr "" +"Inserisci l'indirizzo IP e la porta dell'istanza tapserver a cui vuoi " +"connetterti." #: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" @@ -5499,7 +5546,7 @@ msgstr "Fallita rimozione dello Skylander!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "Fallita rimozione dello Skylander dallo slot %1!" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5541,6 +5588,10 @@ msgid "" "\n" "The Skylander may already be on the portal." msgstr "" +"Fallita creazione del file Skylander:\n" +"%1\n" +"\n" +"Lo Skylander potrebbe già essere nel portale" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5701,6 +5752,8 @@ msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"Fallito caricamento del file Skylander:\n" +"%1" #: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." @@ -5720,11 +5773,11 @@ msgstr "Impossibile modificare lo Skylander!" #: Source/Core/DolphinQt/MenuBar.cpp:215 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Fallita l'apertura di \"%1\" per la scrittura." #: Source/Android/jni/MainAndroid.cpp:428 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Fallita l'apertura di \"{0}\" per la scrittura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/MainWindow.cpp:1722 @@ -5738,7 +5791,7 @@ msgstr "Impossibile aprire il dispositivo Bluetooth: {0}" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Fallita l'apertura dello snapshot Branch Watch \"%1\"" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5785,6 +5838,10 @@ msgid "" "\n" "The file may already be in use on the base." msgstr "" +"Fallita apertura del file Infinity:\n" +"%1!\n" +"\n" +"Il file potrebbe già essere in uso sulla base." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" @@ -5797,6 +5854,10 @@ msgid "" "\n" "The file may already be in use on the portal." msgstr "" +"Fallita apertura del file Skylander:\n" +"%1\n" +"\n" +"Il file potrebbe già essere in uso sul portale." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5852,6 +5913,10 @@ msgid "" "\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 msgid "Failed to read the Skylander file!" @@ -5864,12 +5929,18 @@ msgid "" "\n" "The file was too small." msgstr "" +"Fallita lettura del file Skylander:\n" +"%1\n" +"\n" +"Il file è troppo piccolo." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" "Failed to read the contents of file:\n" "%1" msgstr "" +"Impossibile leggere il contenuto del file:\n" +"%1" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5913,7 +5984,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 msgid "Failed to save Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Fallito il salvataggio dello snapshot Branch Watch \"%1\"" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." @@ -6177,7 +6248,7 @@ msgstr "Float" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 msgid "Follow &branch" -msgstr "(b) Segui flusso" +msgstr "Segui &flusso" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6249,7 +6320,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:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6265,7 +6336,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6783,7 +6854,7 @@ msgstr "Generale e opzioni" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Codici Action Replay generati" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" @@ -6791,7 +6862,7 @@ msgstr "Genera una nuova identità statistiche" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 msgid "Generated AR code(s)." -msgstr "" +msgstr "Codici AR generati." #: Source/Core/DolphinQt/MenuBar.cpp:1337 msgid "Generated symbol names from '%1'" @@ -6853,7 +6924,7 @@ msgstr "Settaggi grafici" msgid "Graphics mods are currently disabled." msgstr "Le mod grafiche sono attualmente disabilitate." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6960,7 +7031,7 @@ msgstr "Nascondi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 msgid "Hide &Controls" -msgstr "" +msgstr "Nascondi &controlli" #: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" @@ -7248,7 +7319,7 @@ msgstr "Ignora" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Ignora &Apploader Branch Hits" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7482,15 +7553,15 @@ msgstr "Forza da ignorare e rimappare." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 msgid "Insert &BLR" -msgstr "" +msgstr "Inserisci &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 msgid "Insert &BLR at start" -msgstr "" +msgstr "Inserisci &BLR all'inizio" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 msgid "Insert &NOP" -msgstr "" +msgstr "Inserisci &NOP" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" @@ -7615,7 +7686,7 @@ msgstr "" "decompressa ({0} / {1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Risoluzione interna" @@ -7812,7 +7883,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7823,7 +7894,7 @@ msgstr "" #: Source/Android/jni/MainAndroid.cpp:417 msgid "JIT is not active" -msgstr "" +msgstr "JIT non è attivo" #: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" @@ -8090,11 +8161,11 @@ msgstr "Carica &altro file mappa..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "&Carica Branch Watch da..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Carica snapshot Branch Watch" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8420,7 +8491,7 @@ msgstr "Produttore" msgid "Maker:" msgstr "Produttore:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8555,7 +8626,7 @@ msgstr "Impostazioni varie" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 msgid "Misc. Controls" -msgstr "" +msgstr "Controlli vari" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8587,7 +8658,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Adattatore modem (tapserver)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 @@ -8689,7 +8760,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "Errori multipli durante la generazione dei codici AR." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -9144,51 +9215,51 @@ msgstr "Oggetto %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Dimensione oggetto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "X oggetto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Y oggetto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Dimensione oggetto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "X oggetto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Y oggetto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Dimensione oggetto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "X oggetto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Y oggetto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Dimensione oggetto 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "X oggetto 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Y oggetto 4" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" @@ -9353,25 +9424,25 @@ msgstr "Orbita" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Origin" -msgstr "" +msgstr "Origine" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 msgid "Origin Max" -msgstr "" +msgstr "Max origine" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 msgid "Origin Min" -msgstr "" +msgstr "Min origine" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Origin Symbol" -msgstr "" +msgstr "Simbolo d'origine" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 msgid "Origin and Destination" -msgstr "" +msgstr "Origine e destinazione" #: Source/Core/Core/FreeLookManager.cpp:101 #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 @@ -9404,7 +9475,7 @@ msgstr "Altro gioco..." msgid "Output" msgstr "Output" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Ricampionamento Output" @@ -9524,7 +9595,7 @@ msgstr "Pausa" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 msgid "Pause Branch Watch" -msgstr "" +msgstr "Pausa Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" @@ -9707,7 +9778,7 @@ msgstr "Puntamento" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Punto (Passthrough)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 @@ -9731,7 +9802,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:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Effetto di post-processing" @@ -9972,7 +10043,7 @@ msgstr "Raw" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Risoluzione interna originale" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" @@ -10021,7 +10092,7 @@ msgstr "Ricevuti dati Wii Remote non validi da Netplay." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Recent Hits" -msgstr "" +msgstr "Recent Hits" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 @@ -10061,7 +10132,7 @@ msgstr "Rosso sinistro" msgid "Red Right" msgstr "Rosso destro" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10250,7 +10321,7 @@ msgstr "Reimposta tutti gli abbinamenti salvati con i Wii Remote" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" -msgstr "" +msgstr "Tipo di risoluzione:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10511,11 +10582,11 @@ msgstr "Salva tutto" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "&Salva Branch Watch come..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Salva snapshot Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 @@ -10735,7 +10806,7 @@ msgid "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." msgstr "" -"La ricerca non è attualmente possibile nello spazio di indirizzo virtuale. " +"La ricerca nello spazio di indirizzo virtuale non è attualmente possibile. " "Esegui il gioco per un po', quindi riprova." #: Source/Core/DolphinQt/MenuBar.cpp:920 @@ -10786,6 +10857,8 @@ msgid "" "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 " +"cartella corrente, premi Annulla)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" @@ -11026,8 +11099,26 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"Configura le registrazioni dei frame dump (video) e gli screenshot.
Se il " +"gioco o la risoluzione della finestra cambia durante la registrazione, " +"potrebbero venir creati più filmati.
Tieni presente che la correzione " +"colore e il ritaglio saranno sempre ignorati dalle registrazioni." +"

Risoluzione finestra: Usa la risoluzione della finestra di " +"output (senza le bande nere).
Questa è un'opzione di dump che registrerà " +"le immagini più o meno come le vedi normalmente.
Risoluzione interna " +"corretta per il rapporto d'aspetto: Usa la risoluzione interna " +"(dimensione del XFB) corretta per il rapporto d'aspetto di destinazione." +"
Questa opzione registrerà costantemente alla risoluzione interna " +"indicata indipendentemente da come viene visualizzata durante la " +"registrazione.
Risoluzione interna originale: Usa la risoluzione " +"interna (dimensione del XFB) senza correggerla con il rapporto d'aspetto di " +"destinazione.
Fornirà un dump senza alcuna correzione del rapporto " +"d'aspetto, per dare all'utente un input quanto più grezzo per eventuali " +"software di editing esterni.

Nel dubbio, lascia " +"\"Risoluzione interna corretta per il rapporto d'aspetto\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11067,6 +11158,24 @@ msgid "" "normal circumstances.

If unsure, select Auto." msgstr "" +"Configura il rapporto d'aspetto da usare per visualizzare i giochi." +"

Il rapporto d'aspetto usato dalle console originali dipendeva dal " +"gioco e raramente corrispondeva a 4:3 o 16:9. Alcune immagini venivano " +"ritagliate dai bordi delle TV, o non riempivano totalmente l'area " +"disponibile. Normalmente, Dolphin mostra l'immagine intera senza distorcerne " +"le proporzioni, quindi può capitare che l'immagine non riempia correttamente " +"il tuo schermo.

Auto: Imita una TV con rapporto d'aspetto a " +"4:3 o 16:9, a seconda del tipo di TV che il gioco sembri voler indirizzare." +"

Forza 16:9: Imita una tv con rapporto d'aspetto 16:9 " +"(widescreen).

Forza 4:3: Imita una tv con rapporto d'aspetto " +"4:3.

Adatta a finestra: Allarga l'immagine alla dimensione " +"della finestra. Di solito distorce le proporzioni dell'immagine." +"

Personalizzato: Imita una TV col rapporto d'aspetto indicato. " +"Di solito è usato con mod o trucchi per modificare il rapporto d'aspetto." +"

Personalizzato (allarga): Simile a `Personalizzato`, ma " +"allarga l'immagine al rapporto d'aspetto indicato. Di solito distorce le " +"proporzioni dell'immagine, e non dovrebbe mai venire utilizzato." +"

Nel dubbio, seleziona Auto." #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" @@ -11359,7 +11468,7 @@ msgstr "Mostra piattaforme" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" -msgstr "" +msgstr "Mostra informazioni di proiezione" #: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" @@ -11537,6 +11646,8 @@ msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"Mostra diverse informazioni di proiezione.

Nel " +"dubbio, lascia deselezionato." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" @@ -11837,7 +11948,7 @@ msgstr "Avvia &NetPlay" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 msgid "Start Branch Watch" -msgstr "" +msgstr "Avvia Branch Watch" #: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" @@ -11927,7 +12038,7 @@ msgstr "Entrando" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Modalità stereoscopia 3D" @@ -12134,7 +12245,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12286,7 +12397,7 @@ msgstr "Prova" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "File di testo (*.txt);;Tutti i file (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12301,7 +12412,7 @@ msgstr "Accuratezza cache texture" msgid "Texture Dumping" msgstr "Dump delle texture" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Filtraggio texture" @@ -12377,7 +12488,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "I soldi di questo Skylander. Tra 0 e 65000" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" @@ -12429,6 +12540,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"Il valore predefinito \"%1\" funzionerà con un tapserver locale e con " +"newserv. Puoi anche inserire un indirizzo network (indirizzo:porta) per " +"connetterti a un tapserver remoto." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12620,6 +12734,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"Il livello eroe di questo Skylander. Presente solo su Skylanders: Spyro's " +"Adventures. Tra 0 e 100." #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12659,7 +12775,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Il soprannome di questo Skylander. Massimo 15 caratteri" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12844,7 +12960,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 msgid "There is nothing to save!" -msgstr "" +msgstr "Non c'è nulla da salvare!" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -13052,7 +13168,7 @@ msgstr "Questo è un buon dump." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Ha effetto solo all'avvio del software emulato" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13288,7 +13404,7 @@ msgstr "Tokenizzazione fallita." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Tool Controls" -msgstr "" +msgstr "Controlli strumenti" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" @@ -14478,7 +14594,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" -msgstr "" +msgstr "Risoluzione finestra" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 @@ -14487,11 +14603,11 @@ msgstr "Dimensioni finestra" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "Pulisci &Inspection Data" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Wipe Recent Hits" -msgstr "" +msgstr "Pulisci Recent Hits" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14508,7 +14624,7 @@ msgstr "Scrittura" #: Source/Core/DolphinQt/MenuBar.cpp:931 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Scrivi JIT Block 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. @@ -14557,11 +14673,11 @@ msgstr "Revisione errata" #: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Scritto su \"%1\"." #: Source/Android/jni/MainAndroid.cpp:434 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Scritto su \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 @@ -14785,7 +14901,7 @@ msgstr "Codice Zero 3 non supportato" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 msgid "Zero candidates remaining." -msgstr "" +msgstr "Zero candidati rimasti." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14850,7 +14966,7 @@ msgstr "completamento-finto" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 msgid "false" -msgstr "" +msgstr "false" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -14927,7 +15043,7 @@ msgstr "questo valore:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 msgid "true" -msgstr "" +msgstr "true" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 diff --git a/Languages/po/ja.po b/Languages/po/ja.po index ca9f8da73322..8f7ac657978d 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1124,7 +1124,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "ディスクは既に挿入されています。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1447,7 +1447,7 @@ msgstr "Address space by CPU state" msgid "Address:" msgstr "Address:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1534,7 +1534,7 @@ msgstr "高度な設定" msgid "Advanced Settings" msgstr "高度な設定" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1705,7 +1705,7 @@ msgstr "角度" msgid "Angular velocity to ignore and remap." msgstr "ここで指定した角度以下の入力を無視します" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "アンチエイリアス" @@ -1729,7 +1729,7 @@ msgstr "既存の署名ファイルに追加...(&E)" msgid "Appl&y Signature File..." msgstr "Appl&y Signature File..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2425,7 +2425,7 @@ msgstr "" msgid "Calculate" msgstr "計算する" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2785,7 +2785,7 @@ msgstr "コード:" msgid "Codes received!" msgstr "コードを受け取りました!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "カラーコレクション" @@ -3157,7 +3157,7 @@ msgstr "" "設定を有効にするにはHDR出力が必要です。

よく分からな" "い場合は、203 のままにしておきます。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3168,7 +3168,7 @@ msgstr "" "距離を設定できます。

値を高くすると効果が強くなり、低くすると目の負担" "が軽減されます。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3182,7 +3182,7 @@ msgstr "" "

よく分からなければ、「Native」を選択してください。" "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3215,7 +3215,7 @@ msgstr "" "ハイレベルDSPエミュレーションとローレベルDSPエミュレーションのどちらを使用す" "るかを制御します。デフォルトは 真(True) です" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "収束点" @@ -3880,7 +3880,7 @@ msgstr "選択中のタイトルの実体を削除..." msgid "Delete the existing file '{0}'?" msgstr "既存のファイル '{0}' を削除しますか?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "深度" @@ -4064,7 +4064,7 @@ msgstr "" "EFBのVRAMコピーを無効にし、RAMへのラウンドトリップを強制します。すべてのアッ" "プスケーリングを禁止します。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4851,7 +4851,7 @@ msgstr "" "浮動小数点演算結果フラグを有効にします。必要なゲームはわずかです [有効=互換" "性重視/無効=速度向上]" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4904,7 +4904,7 @@ msgstr "" "この設定について考える必要はありません。

よく分から" "なければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6209,7 +6209,7 @@ msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "%1 はジオメトリシェーダーをサポートしていないため、強制的にオンになりました。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6225,7 +6225,7 @@ msgstr "" "

よく分からない場合は、チェックを外したままにしてく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6813,7 +6813,7 @@ msgstr "グラフィック設定 切替" msgid "Graphics mods are currently disabled." msgstr "グラフィックMODは現在無効になっています。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7568,7 +7568,7 @@ msgstr "" "{1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "レンダリング解像度" @@ -7763,7 +7763,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8373,7 +8373,7 @@ msgstr "メーカー" msgid "Maker:" msgstr "メーカー" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9352,7 +9352,7 @@ msgstr "他のタイトル..." msgid "Output" msgstr "出力" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "出力 リサンプリング" @@ -9680,7 +9680,7 @@ msgstr "" "非同期が起きたことが検出されました。 %1 は、フレーム %2 で非同期になった可能" "性があります" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "ポストプロセス" @@ -10009,7 +10009,7 @@ msgstr "赤 - 左" msgid "Red Right" msgstr "赤 - 右" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10975,7 +10975,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11872,7 +11872,7 @@ msgstr "Stepping" msgid "Stereo" msgstr "ステレオ" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "表示方式" @@ -12079,7 +12079,7 @@ msgstr "スワップフォース" msgid "Swapper" msgstr "スワッパー" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12246,7 +12246,7 @@ msgstr "テクスチャキャッシュの精度" msgid "Texture Dumping" msgstr "Texture Dumping" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "テクスチャーフィルタリング" diff --git a/Languages/po/ko.po b/Languages/po/ko.po index 527dfd6d043a..21e8825d8a11 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1107,7 +1107,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "디스크가 이미 삽입되려는 중입니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1431,7 +1431,7 @@ msgstr "CPU 상태에 의한 주소 공간" msgid "Address:" msgstr "주소:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1509,7 +1509,7 @@ msgstr "고급" msgid "Advanced Settings" msgstr "고급 설정" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1680,7 +1680,7 @@ msgstr "각도" msgid "Angular velocity to ignore and remap." msgstr "무시하고 리맵핑할 각 속도" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "안티-앨리어싱" @@ -1704,7 +1704,7 @@ msgstr "존재하는 서명 파일에 덧붙이기... (&E)" msgid "Appl&y Signature File..." msgstr "서명 파일 적용... (&y)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2394,7 +2394,7 @@ msgstr "" msgid "Calculate" msgstr "계산" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2756,7 +2756,7 @@ msgstr "코드:" msgid "Codes received!" msgstr "코드들을 받았습니다!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "색 보정" @@ -3122,7 +3122,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3133,7 +3133,7 @@ msgstr "" "입니다.

높은 수치는 더 강한 화면-밖 효과를 만듭니다 반면 낮은 수치는 " "좀 더 편안합니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3147,7 +3147,7 @@ msgstr "" "올 것입니다.

모르겠으면, 원본을 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 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 +3179,7 @@ msgid "" msgstr "" "높은 혹은 낮은-레벨 DSP 에뮬레이션을 사용할지 정합니다. 기본값은 켜기" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "수렴" @@ -3833,7 +3833,7 @@ msgstr "선택된 파일들 삭제..." msgid "Delete the existing file '{0}'?" msgstr "존재하는 파일 '{0}' 를 삭제합니까?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "깊이" @@ -4018,7 +4018,7 @@ msgstr "" "링을 막습니다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4785,7 +4785,7 @@ msgstr "" "부동 소수점 결과 플래그 계산을 켭니다, 소수의 게임들에서 필요합니다. (켬 = 호" "환성, 끔 = 빠름)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4830,7 +4830,7 @@ msgstr "" "들은 이것과 아무런 이슈가 없습니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6114,7 +6114,7 @@ msgstr "%1 가 VS 확장을 지원하지 않기 때문에 강제로 꺼졌습니 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "%1 가 기하학 쉐이더를 지원하지 않기 때문에 강제로 켜졌습니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6124,7 +6124,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6708,7 +6708,7 @@ msgstr "그래픽 토글" msgid "Graphics mods are currently disabled." msgstr "그래픽 모드가 현재 꺼졌습니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7457,7 +7457,7 @@ msgid "" msgstr "내부 LZO 오류 - 압축해제된 버전 스트링 분석에 실패했습니다 ({0} / {1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "내부 해상도" @@ -7652,7 +7652,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT 시스템레지스터 끄기" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8258,7 +8258,7 @@ msgstr "제작사" msgid "Maker:" msgstr "제작사:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9226,7 +9226,7 @@ msgstr "다른 게임..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "출력 리샘플링" @@ -9551,7 +9551,7 @@ msgstr "포탈 슬롯들" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "가능한 비동기 감지됨: %1 가 프레임 %2 에서 비동기화된 듯 합니다" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "후-처리 효과" @@ -9880,7 +9880,7 @@ msgstr "빨강 왼쪽" msgid "Red Right" msgstr "빨강 오른쪽" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10842,7 +10842,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11733,7 +11733,7 @@ msgstr "스텝핑" msgid "Stereo" msgstr "스테레오" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "입체 3D 모드" @@ -11938,7 +11938,7 @@ msgstr "스왑 포스" msgid "Swapper" msgstr "교환자" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12103,7 +12103,7 @@ msgstr "텍스처 캐시 정확도" msgid "Texture Dumping" msgstr "텍스처 덤핑" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "텍스처 필터링" diff --git a/Languages/po/ms.po b/Languages/po/ms.po index 7f0805e61307..b0bac50b388d 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1083,7 +1083,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Cakera A sedia dimasukkan." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1375,7 +1375,7 @@ msgstr "" msgid "Address:" msgstr "Alamat:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1445,7 +1445,7 @@ msgstr "Lanjutan" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1614,7 +1614,7 @@ msgstr "Sudut" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1638,7 +1638,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2311,7 +2311,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2660,7 +2660,7 @@ msgstr "Kod:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2975,7 +2975,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2983,7 +2983,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2992,7 +2992,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3017,7 +3017,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3625,7 +3625,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3804,7 +3804,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4512,7 +4512,7 @@ msgstr "" "Benarkan Pengiraan Bendera Keputusan Titik Apung, diperlukan oleh sesetengah " "permainan. (HIDUP = Serasi, MATI = Pantas)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4546,7 +4546,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5764,7 +5764,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5774,7 +5774,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6324,7 +6324,7 @@ msgstr "Togol Grafik" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7005,7 +7005,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Resolusi Dalaman" @@ -7200,7 +7200,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7788,7 +7788,7 @@ msgstr "Pembuat:" msgid "Maker:" msgstr "Pembuat:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8717,7 +8717,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9038,7 +9038,7 @@ msgstr "" "Nyahsegerak berkemungkinan dikesan: %1 mungkin telah dinyahsegerak pada " "bingkai %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9357,7 +9357,7 @@ msgstr "Merah Kiri" msgid "Red Right" msgstr "Merah Kanan" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10297,7 +10297,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11122,7 +11122,7 @@ msgstr "Melangkah" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11319,7 +11319,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11477,7 +11477,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/nb.po b/Languages/po/nb.po index 73bb86d0da31..ce7d755dc7dd 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" @@ -1101,7 +1101,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1404,7 +1404,7 @@ msgstr "" msgid "Address:" msgstr "Adresse:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1473,7 +1473,7 @@ msgstr "Avansert" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 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 +1642,7 @@ msgstr "Vinkel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1666,7 +1666,7 @@ msgstr "Føy på til &eksisterende signaturfil..." msgid "Appl&y Signature File..." msgstr "Legg p&å Singaturfil..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2343,7 +2343,7 @@ msgstr "" msgid "Calculate" msgstr "Kalkuler" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2693,7 +2693,7 @@ msgstr "Kode:" msgid "Codes received!" msgstr "Koder mottatt!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -3008,7 +3008,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3016,7 +3016,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3025,7 +3025,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3056,7 +3056,7 @@ msgstr "" "Kontrollerer om høy-nivå eller lav-nivå DSP-emulering skal benyttes. " "Standard er Sant" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "Slett valgte filer..." msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3843,7 +3843,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4552,7 +4552,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4586,7 +4586,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5815,7 +5815,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5825,7 +5825,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6375,7 +6375,7 @@ msgstr "Grafikkbrytere" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7055,7 +7055,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Intern oppløsning" @@ -7250,7 +7250,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT Systemregistre Av" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7842,7 +7842,7 @@ msgstr "Skaper" msgid "Maker:" msgstr "Skaper:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8776,7 +8776,7 @@ msgstr "Andre spill..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9097,7 +9097,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:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9422,7 +9422,7 @@ msgstr "Rød venstre" msgid "Red Right" msgstr "Rød høyre" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10365,7 +10365,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11192,7 +11192,7 @@ msgstr "Stepper" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11389,7 +11389,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11549,7 +11549,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/nl.po b/Languages/po/nl.po index d4d75582910f..dcff6deab0b2 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1131,7 +1131,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1462,7 +1462,7 @@ msgstr "Adresruimte per CPU state" msgid "Address:" msgstr "Adres:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1541,7 +1541,7 @@ msgstr "Geavanceerd" msgid "Advanced Settings" msgstr "Geavanceerde instellingen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1712,7 +1712,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:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1736,7 +1736,7 @@ msgstr "Toevoegen aan &Bestaand Signatuurbestand..." msgid "Appl&y Signature File..." msgstr "P&as Signatuur Toe..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2429,7 +2429,7 @@ msgstr "" msgid "Calculate" msgstr "Bereken" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2798,7 +2798,7 @@ msgstr "Code:" msgid "Codes received!" msgstr "Codes ontvangen!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Kleur Correctie" @@ -3169,7 +3169,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 +3180,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 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 +3195,7 @@ msgstr "" "

In geval van twijfel Native selecteren." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 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 +3228,7 @@ msgstr "" "Bepaalt of high of low-level DSP-emulatie moet worden gebruikt. Standaard " "ingesteld op Waar" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Convergentie" @@ -3889,7 +3889,7 @@ msgstr "Verwijder Geselecteerde Bestanden..." msgid "Delete the existing file '{0}'?" msgstr "Verwijder het bestaande bestand '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Diepte" @@ -4074,7 +4074,7 @@ msgstr "" "afgedwongen. Blokkeert alle opschaling.

In geval " "van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4831,7 +4831,7 @@ msgstr "" "Activeer Floating Point Result Flag berekening, nodig voor enkele spellen. " "(AAN = Compatibel, UIT = Snel)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4874,7 +4874,7 @@ msgstr "" "software. De meeste spellen geven hier niks om.

In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6161,7 +6161,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:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6171,7 +6171,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6758,7 +6758,7 @@ msgstr "Graphics Schakelaars" msgid "Graphics mods are currently disabled." msgstr "Grafische mods zijn momenteel uitgeschakeld." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7518,7 +7518,7 @@ msgstr "" "{1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Interne resolutie" @@ -7714,7 +7714,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT SysteemRegisters Uit" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8320,7 +8320,7 @@ msgstr "Maker" msgid "Maker:" msgstr "Maker:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9297,7 +9297,7 @@ msgstr "Ander spel..." msgid "Output" msgstr "Output" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Output Resampling" @@ -9621,7 +9621,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:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Post-Processing Effect" @@ -9952,7 +9952,7 @@ msgstr "Rood Links" msgid "Red Right" msgstr "Rood Rechts" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10919,7 +10919,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11818,7 +11818,7 @@ msgstr "Stappen" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Stereoscopische 3D Modus" @@ -12025,7 +12025,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12192,7 +12192,7 @@ msgstr "Nauwkeurigheid van textuurcache" msgid "Texture Dumping" msgstr "Texture Dumping" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Textuurfiltering" diff --git a/Languages/po/pl.po b/Languages/po/pl.po index 7040c6f6b0d4..2c2ca5d5e497 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1110,7 +1110,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1403,7 +1403,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1474,7 +1474,7 @@ msgstr "Zaawansowane" msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1643,7 +1643,7 @@ msgstr "Kąt" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1667,7 +1667,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2338,7 +2338,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2687,7 +2687,7 @@ msgstr "Kod:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -3002,7 +3002,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3010,7 +3010,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3019,7 +3019,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3044,7 +3044,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3648,7 +3648,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3827,7 +3827,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4535,7 +4535,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4569,7 +4569,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5786,7 +5786,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5796,7 +5796,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6346,7 +6346,7 @@ msgstr "Przełączniki grafiki" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7024,7 +7024,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Rozdzielczość wewnętrzna" @@ -7221,7 +7221,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7809,7 +7809,7 @@ msgstr "Producent" msgid "Maker:" msgstr "Producent:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8732,7 +8732,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9051,7 +9051,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9370,7 +9370,7 @@ msgstr "Czerwony lewo" msgid "Red Right" msgstr "Czerwony prawo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10308,7 +10308,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11133,7 +11133,7 @@ msgstr "Kroki" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11330,7 +11330,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11488,7 +11488,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/pt.po b/Languages/po/pt.po index bde3fc99aa39..e54b0399906b 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1077,7 +1077,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1367,7 +1367,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1427,7 +1427,7 @@ msgstr "Avançadas" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1596,7 +1596,7 @@ msgstr "Ângulo" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1620,7 +1620,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2291,7 +2291,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2637,7 +2637,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2952,7 +2952,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2960,7 +2960,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2969,7 +2969,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2994,7 +2994,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3594,7 +3594,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3773,7 +3773,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4474,7 +4474,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4508,7 +4508,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5720,7 +5720,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5730,7 +5730,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6280,7 +6280,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6949,7 +6949,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7144,7 +7144,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7732,7 +7732,7 @@ msgstr "" msgid "Maker:" msgstr "Fabricante:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8653,7 +8653,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8972,7 +8972,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9289,7 +9289,7 @@ msgstr "Vermelho Esquerda" msgid "Red Right" msgstr "Vermelho Direita" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10227,7 +10227,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11047,7 +11047,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11244,7 +11244,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11402,7 +11402,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index 7f8d1cdff7d3..f797bb56368c 100644 --- a/Languages/po/pt_BR.po +++ b/Languages/po/pt_BR.po @@ -46,9 +46,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Runo , 2013\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: pt_BR\n" @@ -207,7 +207,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 revisão(ões) à frente de %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -465,7 +465,7 @@ msgstr "Configurações de &Controles" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 msgid "&Copy Address" -msgstr "" +msgstr "&Copiar Endereço" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" @@ -602,7 +602,7 @@ msgstr "&Idioma:" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Carregar Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" @@ -707,7 +707,7 @@ msgstr "Gerenciador de Pacotes de &Recursos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Salvar Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" @@ -739,7 +739,7 @@ msgstr "&Threads" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "&Tool" -msgstr "" +msgstr "&Ferramenta" #: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" @@ -1149,7 +1149,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1188,7 +1188,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 msgid "A&uto Save" -msgstr "" +msgstr "Salvar A&utomaticamente" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1275,7 +1275,7 @@ msgid "" "enable achievements." msgstr "" "As conquistas foram desativadas.
Por favor feche todos os jogos em " -"execução pra reativar as conquistas." +"execução para reativar as conquistas." #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" @@ -1483,7 +1483,7 @@ msgstr "Espaço do endereço pelo state da CPU" msgid "Address:" msgstr "Endereço:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1493,14 +1493,14 @@ msgid "" "option is incompatible with Manual Texture Sampling." "

If unsure, select 'Default'." msgstr "" -"Ajustar a filtragem da textura. A filtragem anisotrópica melhora a qualidade " -"visual das texturas que estão em ângulos de visão oblíquos. Forçar o Mais " -"Próximo e Forçar o Linear substituem o filtro de dimensionamento da textura " -"selecionado pelo jogo.

Qualquer opção exceto a 'Padrão' alterará a " -"aparência das texturas do jogo e poderia causar problemas em um pequeno " -"número de jogos.
Esta opção é imcompatível com a Amostragem Manual das " -"Texturas.
Se não tiver certeza selecione 'Padrão'." +"Ajusta a filtragem das texturas. A filtragem anisotrópica melhora a " +"qualidade visual de texturas que estão em ângulos de visualização oblíquos. " +"\"Forçar Pelo Mais Próximo\" e \"Forçar Linear\" substituirão o filtro de " +"escala de textura especificado pelo jogo.

Qualquer opção diferente de " +"\"Padrão\" alterará a aparência das texturas e poderá causar problemas em um " +"pequeno número de jogos.

Essa opção é incompatível com a \"Amostragem " +"Manual de Texturas\".

Na dúvida, selecione \"Padrão" +"\"." #. i18n: Refers to plastic shell of game controller (stick gate) that limits stick movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:107 @@ -1571,7 +1571,7 @@ msgstr "Avançado" msgid "Advanced Settings" msgstr "Configurações Avançadas" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1593,6 +1593,26 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"Afeta como a saída do jogo é dimensionada para a resolução da janela. O " +"desempenho depende principalmente do número de amostras que cada método " +"utiliza. Comparado com o SSAA, a reamostragem é útil nos casos em que a " +"resolução da janela de saída não é um múltiplo da resolução nativa de " +"emulação.

Padrão (mais rápido)
Amostragem bilinear interna " +"da GPU, sem correção de gama. Essa opção pode ser ignorada se a correção de " +"gama for forçada.

Bilinear (4 amostras)
Interpolação linear " +"entre os pixels, com correção de gama.

Bicúbica (16 " +"amostras)
Interpolação cúbica entre os pixels, com correção de gama. Boa " +"para redimensionar entre resoluções próximas, 1080p e 1440p, por exemplo. " +"Disponível em diversas variações:

B-Spline: Borrada, mas evita " +"todos os artefatos de lobing.
Mitchell-Netravali: Um meio termo " +"entre borrada e com artefatos de lobing.
Catmull-Rom: Mais nítida, " +"mas pode causar artefatos de lobing.

Bilinear Nítido (1-4 " +"amostras)
Semelhante ao \"Pelo Mais Próximo\", mantém uma imagem nítida, " +"mas também realiza um pouco de blending para evitar tremulações. Funciona " +"melhor com jogos 2D em resoluções baixas.

Amostragem de Área " +"(até 324 amostras)
Avalia pixels com base na porcentagem de área que " +"ocupam, com correção de gama. Funciona melhor para downscaling acima de 2x." +"

Na dúvida, selecione \"Padrão\"." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1742,7 +1762,7 @@ msgstr "Ângulo" msgid "Angular velocity to ignore and remap." msgstr "Velocidade angular a ignorar e remapear." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1766,7 +1786,7 @@ msgstr "Anexar ao &Arquivo de Assinatura Existente..." msgid "Appl&y Signature File..." msgstr "Apl&icar Arquivo de Assinatura..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1820,7 +1840,7 @@ msgstr "Proporção de Tela" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +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 @@ -1967,7 +1987,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "Endereço de destino do BBA" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -2129,6 +2149,10 @@ msgid "" "\n" "Try again with a different character." msgstr "" +"Falha ao criar figura em branco em:\n" +"%1\n" +"\n" +"Tente novamente com um personagem diferente." #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 @@ -2193,71 +2217,71 @@ msgstr "Embaixo" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 msgid "Branch" -msgstr "" +msgstr "Branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 msgid "Branch (LR saved)" -msgstr "" +msgstr "Branch (LR salvo)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 msgid "Branch Conditional" -msgstr "" +msgstr "Branch Condicional" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 msgid "Branch Conditional (LR saved)" -msgstr "" +msgstr "Branch Condicional (LR salvo)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch Conditional to Count Register" -msgstr "" +msgstr "Branch Condicional para Registrador Contador" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Branch Condicional para Registrador Contador (LR salvo)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch Conditional to Link Register" -msgstr "" +msgstr "Branch Condicional para Registrador de Link" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Branch Condicional para Registrador de Link (LR salvo)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Not Overwritten" -msgstr "" +msgstr "Branch Não Foi Sobrescrita" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch Type" -msgstr "" +msgstr "Tipo de Branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Branch Foi Sobrescrita" #: 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 "Ferramenta Branch Watch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Ajuda da Ferramenta Branch Watch (1/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Ajuda da Ferramenta Branch Watch (2/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Ajuda da Ferramenta Branch Watch (3/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Ajuda da Ferramenta Branch Watch (4/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 msgid "" @@ -2275,6 +2299,20 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"Branch Watch é uma ferramenta de busca de código que pode isolar branches " +"monitoradas pela CPU emulada através de testes de candidatos que atendam " +"critérios simples. Caso tenha familiaridade com a ferramenta Ultimap do " +"Cheat Engine, o Branch Watch funciona de maneira semelhante.\n" +"\n" +"Pressione o botão \"Iniciar Branch Watch\" para ativar a ferramenta. O " +"Branch Watch continua ativo entre sessões de emulação, e uma captura do seu " +"progresso pode ser salva e carregada na Pasta do Usuário, para continuar de " +"onde parou após fechar o Dolphin. Ações \"Salvar Como...\" e \"Carregar De..." +"\" também estão disponíveis, e uma função de salvamento automático pode ser " +"ativada para salvar o estado da ferramenta depois de cada etapa de uma " +"busca. O botão \"Pausar Branch Watch\" irá suspender a ferramenta até que " +"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 msgid "" @@ -2285,22 +2323,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 "" +"Branch Watch inicia na fase de exclusão, então nenhum candidato foi " +"escolhido ainda, mas candidatos encontrados até o momento podem ser " +"removidos da candidatura ao pressionar os botões \"Caminho de Código Não " +"Executado\", \"Branch Foi Sobrescrita\" e \"Branch Não Sobrescrita\". Ao " +"pressionar o botão \"Caminho de Código Executado\" pela primeira vez, a " +"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 msgid "Branch to Count Register" -msgstr "" +msgstr "Branch para Registrador Contador" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Count Register (LR saved)" -msgstr "" +msgstr "Branch para Registrador Contador (LR salvo)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "Branch para Registrador de Link" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Branch para Registrador de Link (LR salvo)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2416,7 +2461,7 @@ msgstr "Botões" #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" -msgstr "Por: %1" +msgstr "Autor(a): %1" #: Source/Core/Core/HW/GCPadEmu.cpp:57 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:31 @@ -2463,7 +2508,7 @@ msgstr "" msgid "Calculate" msgstr "Calcular" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2555,15 +2600,15 @@ msgstr "Cancelar Calibração" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 msgid "Candidates: %1" -msgstr "" +msgstr "Candidatos: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Candidatos: %1 | Excluídos: %2 | Restantes: %3" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Candidatos: %1 | Filtrados: %2 | Restantes: %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2787,7 +2832,7 @@ msgstr "Limpar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 msgid "Clear Branch Watch" -msgstr "" +msgstr "Limpar Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" @@ -2820,11 +2865,11 @@ msgstr "Código" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Not Taken" -msgstr "" +msgstr "Caminho de Código Não Executado" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Code Path Was Taken" -msgstr "" +msgstr "Caminho de Código Executado" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2834,7 +2879,7 @@ msgstr "Código:" msgid "Codes received!" msgstr "Códigos recebidos!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Correção de Cores" @@ -2852,7 +2897,7 @@ msgstr "Espaço de Cores" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 msgid "Column &Visibility" -msgstr "" +msgstr "Colunas &Visíveis" #: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." @@ -2913,7 +2958,7 @@ msgstr "Compressão:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 msgid "Cond." -msgstr "" +msgstr "Condição" #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. @@ -3203,13 +3248,13 @@ msgid "" "display.

HDR output is required for this setting to take effect." "

If unsure, leave this at 203." msgstr "" -"Controla a luminosidade base de uma superfície branca de papel em unidades. " -"Útil pra ajustar a diferentes condições ambientais de iluminação quando usar " -"uma tela HDR.

A saída do HDR é requerida pra esta configuração ter " -"efeito.

Se não tiver certeza deixe isto em 203." +"Controla a luminância de base de uma superfície branca de papel em nits. " +"Útil para se adaptar à diferentes condições de iluminação ambiente ao " +"utilizar uma tela HDR.

'Pós-Processamento HDR' precisa estar ativado " +"para que essa opção tenha efeito.

Na dúvida, " +"mantenha essa opção em 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3221,7 +3266,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3235,7 +3280,7 @@ msgstr "" "resolução interna, melhor será o desempenho.

Na " "dúvida, selecione \"Nativa (640x528)\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3269,7 +3314,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:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Convergência" @@ -3425,7 +3470,7 @@ msgstr "Core" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 msgid "Core is uninitialized." -msgstr "" +msgstr "Core não inicializado." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3536,7 +3581,7 @@ msgstr "Não foi possível reconhecer o arquivo {0}" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" -msgstr "Não pôde salvar suas mudanças!" +msgstr "Não foi possível salvar as alterações!" #: Source/Core/UICommon/AutoUpdate.cpp:303 #: Source/Core/UICommon/AutoUpdate.cpp:309 @@ -3626,10 +3671,10 @@ msgid "" "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." "

If unsure, leave this unchecked." msgstr "" -"Corta a imagem da sua proporção de aspecto nativa (a qual raramente combina " -"com 4:3 ou 16:9) para a proporção do aspecto específica alvo do usuário (ex: " -"4:3 ou 16:9)

Se não tiver certeza deixe isto " -"desmarcado." +"Corta a imagem da sua proporção de tela nativa (que raramente corresponde à " +"exatos 4:3 ou 16:9) para a proporção de tela especificada pelo usuário (por " +"exemplo, 4:3 ou 16:9).

Na dúvida, mantenha essa " +"opção desativada." #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:82 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:175 @@ -3673,11 +3718,11 @@ msgstr "Thread atual" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" -msgstr "Personalizar" +msgstr "Personalizada" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" -msgstr "" +msgstr "Personalizada (Esticada)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" @@ -3685,15 +3730,15 @@ msgstr "Espaço do Endereço Personalizado" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "Altura da Proporção do Aspecto Personalizada" +msgstr "Altura da proporção de tela personalizada" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "Largura da Proporção do Aspecto Personalizada" +msgstr "Largura da proporção de tela personalizada" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "Proporção do Aspecto Personalizada:" +msgstr "Proporção de Tela Personalizada:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3940,7 +3985,7 @@ msgstr "Excluir Arquivos Selecionados..." msgid "Delete the existing file '{0}'?" msgstr "Excluir o arquivo existente '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Profundidade" @@ -3974,29 +4019,29 @@ msgstr "Descrição: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Destination" -msgstr "" +msgstr "Destino" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Destino (caminho p/ soquete UNIX ou endereço:porta):" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Destino (endereço:porta):" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 msgid "Destination Max" -msgstr "" +msgstr "Destino Máx." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 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 msgid "Destination Symbol" -msgstr "" +msgstr "Símbolo de Destino" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" @@ -4129,7 +4174,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4743,25 +4788,25 @@ msgid "" "the game to be closed before re-enabling." msgstr "" "Ativa o Modo Hardcore no RetroAchievements.

O Modo Hardcore tem a " -"inteção de fornecer uma experiência tão próxima do jogo no hardware original " -"quanto possível. Os rankings do RetroAchievements são orientados " -"principalmente em relação aos pontos Hardcore (os pontos Softcore são " -"rastreados mas não tão fortemente enfatizados) e as tabelas de classificação " -"requerem que o Modo Hardcore esteja ligado.

Pra garantir esta " -"experiência as seguintes funções serão desativadas conforme eles dão aos " -"jogadores do emulador uma vantagem sobre os jogadores de console:
- " -"Carregando os states
-- O salvamento de states é permitido
- " -"Velocidades do emulador abaixo de 100%
-- O avanço dos frames está " -"desativado
-- Turbo é permitido
-Trapaças
- Patches de " -"memória
-- Patches de arquivos são permitidos
- Interface do Debug do " -"Usuário
- Olhar livre

Isto não pode ser ligado " -"enquanto um jogo está sendo jogado.
Feche seu jogo " -"atual antes de ativar.
Fique ciente que desligar o Modo Hardcore enquanto " -"um jogo está em execução requer que o jogo seja fechado antes de reativá-lo." +"intenção de fornecer a experiência mais próxima possível de executar o jogo " +"no hardware original. Os rankings do RetroAchievements são baseados " +"principalmente em relação aos pontos Hardcore (pontos Softcore também são " +"contabilizados, mas tem uma prioridade menor) e os placares de líderes " +"exigem que o Modo Hardcore esteja ligado.

Pra garantir essa " +"experiência, as seguintes funções serão desativadas, visto que elas garantem " +"vantagens não disponíveis para jogadores no console:
- Carregar estados " +"salvos
-- Criar estados salvos é permitido
- Velocidade de emulação " +"abaixo de 100%
-- A função de avanço de quadros será desativada
-- " +"Turbo é permitido
-Cheats
- Patches de memória
-- Patches de " +"arquivo são permitidos
- Interface de depuração
- Olhar " +"livre

Isso não pode ser ativado enquanto um jogo " +"estiver em execução
Feche seu jogo atual antes de " +"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 msgid "Enable JIT Block Profiling" -msgstr "" +msgstr "Ativar Perfilamento de Bloco JIT" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" @@ -4857,8 +4902,8 @@ msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " "problems in some games. (ON = Compatible, OFF = Unlocked)" msgstr "" -"Ativar a velocidade emulada do disco. Desativar isto pode causar crashes e " -"outros problemas em alguns jogos. (ON = Compatível, OFF = Desbloqueado)" +"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 msgid "" @@ -4927,7 +4972,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4937,14 +4982,14 @@ msgid "" "Texture Decoding.

If unsure, leave this unchecked." msgstr "" -"Ativa a detecção dos mipmaps arbitrários os quais alguns jogos usam pra " -"efeitos especiais baseados na distância.

Pode ter falsos positivos " -"que resultam em texturas desfocadas numa resolução interna aumentada tais " -"como em jogos que usam mipmaps de resolução muito baixa. Desativar isto " -"também pode reduzir a lentidão em jogos que frequentemente carregam novas " -"texturas. Esta função não é compatível com a Decodificação de Texturas da " -"GPU

Se não tiver certeza deixe isto selecionado." +"Ativa a detecção de mipmaps arbitrários, que alguns jogos utilizam para " +"renderizar efeitos gráficos especiais baseados na distância da câmera." +"

Pode causar falsos positivos, resultando em texturas borradas em " +"resoluções internas maiores, como em jogos que utilizam mipmaps de resolução " +"muito baixa. Desativar essa opção também pode reduzir engasgos em jogos que " +"frequentemente carregam novas texturas.

Esse recurso não é compatível " +"com a 'Decodificação de Texturas na GPU'.

Na " +"dúvida, mantenha essa opção desativada." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:85 msgid "" @@ -4982,7 +5027,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5013,11 +5058,11 @@ msgid "" "Detection.

If unsure, leave this unchecked." msgstr "" -"Ativa a decodificação das texturas usando a GPU ao invés da CPU.

Isto " -"pode resultar em ganhos de performance em alguns cenários ou em sistemas " -"aonde a CPU é o obstáculo.
Esta opção é imcompatível com a Detecção " -"Arbitrária do Mipmap.

Se não tiver certeza deixe " -"isto desmarcado." +"Ativa a decodificação de texturas usando a GPU ao invés da CPU.

Isso " +"pode melhorar o desempenho em algumas situações, ou em sistemas com gargalos " +"de CPU.

Essa opção é incompatível com a \"Detecção de Mipmaps " +"Arbitrários\".

Na dúvida, mantenha essa opção " +"desativada." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100 msgid "" @@ -5133,6 +5178,8 @@ msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." 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 msgid "Enter the RSO module address:" @@ -5543,7 +5590,7 @@ msgstr "Falha ao remover Skylander!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "Falha ao remover o Skylander do slot %1!" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5585,6 +5632,10 @@ msgid "" "\n" "The Skylander may already be on the portal." msgstr "" +"Falha ao criar arquivo do Skylander:\n" +"%1\n" +"\n" +"O Skylander pode já estar inserido no portal." #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5747,6 +5798,8 @@ msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"Falha ao carregar arquivo do Skylander:\n" +"%1" #: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." @@ -5766,11 +5819,11 @@ msgstr "Falha ao modificar o Skylander!" #: Source/Core/DolphinQt/MenuBar.cpp:215 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Falha ao abrir \"%1\" para escrita." #: Source/Android/jni/MainAndroid.cpp:428 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Falha ao abrir \"{0}\" para escrita." #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/MainWindow.cpp:1722 @@ -5784,7 +5837,7 @@ msgstr "Falha ao acessar o dispositivo Bluetooth: {0}" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Falha ao abrir o estado do Branch Watch \"%1\"" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5792,7 +5845,7 @@ msgstr "Falha ao abrir o arquivo de configuração!" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:731 msgid "Failed to open file" -msgstr "Falhou em abrir o arquivo" +msgstr "Falha ao abrir o arquivo" #: Source/Core/Core/NetPlayCommon.cpp:26 msgid "Failed to open file \"{0}\"." @@ -5830,6 +5883,10 @@ msgid "" "\n" "The file may already be in use on the base." msgstr "" +"Falha ao carregar arquivo do Infinity:\n" +"%1\n" +"\n" +"O arquivo pode já estar sendo utilizado na base." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" @@ -5842,6 +5899,10 @@ msgid "" "\n" "The file may already be in use on the portal." msgstr "" +"Falha ao carregar arquivo do Skylander:\n" +"%1\n" +"\n" +"O arquivo pode já estar sendo utilizado no portal." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5898,6 +5959,10 @@ msgid "" "\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 msgid "Failed to read the Skylander file!" @@ -5910,12 +5975,18 @@ msgid "" "\n" "The file was too small." msgstr "" +"Falha ao ler arquivo do Skylander:\n" +"%1\n" +"\n" +"O arquivo é muito pequeno." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" "Failed to read the contents of file:\n" "%1" msgstr "" +"Falha ao ler conteúdo do arquivo:\n" +"%1" #: Source/Core/Core/Movie.cpp:1015 msgid "Failed to read {0}" @@ -5959,7 +6030,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 msgid "Failed to save Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Falha ao salvar o estado do Branch Watch \"%1\"" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." @@ -6300,7 +6371,7 @@ msgstr "" "Opção ativada pois o backend %1 não suporta shaders de " "geometria." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6309,15 +6380,15 @@ msgid "" "available.

If unsure, leave this unchecked." msgstr "" -"Força o jogo a produzir gráficos em qualquer proporção de aspecto expandindo " -"o frustum de visualização sem esticar a imagem.
Isto é um hack e seus " -"resultados variarão muito de jogo pra jogo (frequentemente faz a Interface " -"do Usuário esticar).
Os patches de proporção do AR/código-do-Gecko " -"específicos do jogo são preferíveis a este se disponíveis." -"

Se não tiver certeza, deixe isto desmarcado.Isso é um hack e os " +"resultados variam bastante, dependendo do jogo (frequentemente esticando " +"elementos de IU).
Recomenda-se utilizar códigos AR/Gecko de proporção de " +"tela específicos para o jogo ao invés dessa opção, caso estejam disponíveis." +"

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6838,7 +6909,7 @@ msgstr "Geral e Opções" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Gerar Código(s) do Action Replay" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" @@ -6846,7 +6917,7 @@ msgstr "Gerar uma Nova ID de Estatísticas " #: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 msgid "Generated AR code(s)." -msgstr "" +msgstr "Código(s) AR gerado(s)." #: Source/Core/DolphinQt/MenuBar.cpp:1337 msgid "Generated symbol names from '%1'" @@ -6908,7 +6979,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:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7015,7 +7086,7 @@ msgstr "Ocultar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 msgid "Hide &Controls" -msgstr "" +msgstr "Ocultar &Controles" #: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" @@ -7308,7 +7379,7 @@ msgstr "Ignorar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Ignorar Acertos de Branch do &Apploader" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7541,15 +7612,15 @@ msgstr "Força da entrada pra ignorar e remapear." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 msgid "Insert &BLR" -msgstr "" +msgstr "Inserir &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 msgid "Insert &BLR at start" -msgstr "" +msgstr "Inserir &BLR no início" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 msgid "Insert &NOP" -msgstr "" +msgstr "Inserir &NOP" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" @@ -7583,7 +7654,7 @@ msgstr "Instalar na NAND" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." -msgstr "Instruções." +msgstr "Instrução" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 @@ -7673,7 +7744,7 @@ 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:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Resolução Interna" @@ -7803,11 +7874,11 @@ msgstr "JIT" #: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "JIT Block Linking Off" -msgstr "Ligação dos Blocos do JIT Desligado" +msgstr "Link de Blocos JIT Desativado" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:25 msgid "JIT Blocks" -msgstr "Blocos do JIT" +msgstr "Blocos JIT" #: Source/Core/DolphinQt/MenuBar.cpp:1012 msgid "JIT Branch Off" @@ -7870,7 +7941,7 @@ 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:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7881,7 +7952,7 @@ msgstr "" #: Source/Android/jni/MainAndroid.cpp:417 msgid "JIT is not active" -msgstr "" +msgstr "JIT não está ativo" #: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" @@ -7991,7 +8062,7 @@ msgstr "Último Valor" #. i18n: A timestamp for when the Skylander was most recently used #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" -msgstr "Última colocação:" +msgstr "Último uso:" #. i18n: A timestamp for when the Skylander was most recently reset #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 @@ -8148,11 +8219,11 @@ msgstr "Carregar o &Outro Arquivo do Mapa..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "Carregar Branch Watch &De..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Carregar estado do Branch Watch" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8480,7 +8551,7 @@ msgstr "Fabricante" msgid "Maker:" msgstr "Fabricante:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8613,7 +8684,7 @@ msgstr "Configurações Diversas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 msgid "Misc. Controls" -msgstr "" +msgstr "Outros Controles" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8645,7 +8716,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Adaptador de Modem (tapserver)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 @@ -8747,7 +8818,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "Múltiplos erros ao gerar os códigos AR." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -8918,7 +8989,7 @@ msgstr "Novo Ponto de Interrupção" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:706 msgid "New File" -msgstr "Arquivo Novo" +msgstr "Novo Arquivo" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:708 msgid "New File (%1)" @@ -9200,51 +9271,51 @@ msgstr "Objeto %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Tamanho do Objeto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "Posição X do Objeto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Posição Y do Objeto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Tamanho do Objeto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "Posição X do Objeto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Posição Y do Objeto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Tamanho do Objeto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "Posição X do Objeto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Posição Y do Objeto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Tamanho do Objeto 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "Posição X do Objeto 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Posição Y do Objeto 4" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 msgid "Object Range" @@ -9295,6 +9366,18 @@ msgid "" "calls and conditional code paths that are only taken when an action is " "performed in the emulated software." msgstr "" +"Estando na fase de redução, é hora de reduzir o número de candidatos " +"exibidos na tabela. Isso pode ser feito ao verificar se um caminho de código " +"foi executado ou não desde a última checagem. Também é possível reduzir os " +"candidatos ao determinar se uma instrução de branch foi sobrescrita ou não " +"desde que foi atingida pela primeira vez. Filtre os candidatos pelo tipo de " +"branch, condição, endereço de origem ou destino, e nome do símbolo de origem " +"ou destino.\n" +"\n" +"Após etapas suficientes de redução e experimento, você provavelmente será " +"capaz de encontrar chamadas de função e caminhos de código condicional que " +"são executados apenas quando uma ação específica é executada no software " +"emulado." #: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "Online &Documentation" @@ -9409,25 +9492,25 @@ msgstr "Orbital" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Origin" -msgstr "" +msgstr "Origem" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 msgid "Origin Max" -msgstr "" +msgstr "Origem Máx." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 msgid "Origin Min" -msgstr "" +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 msgid "Origin Symbol" -msgstr "" +msgstr "Símbolo de Origem" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 msgid "Origin and Destination" -msgstr "" +msgstr "Origem e Destino" #: Source/Core/Core/FreeLookManager.cpp:101 #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 @@ -9460,7 +9543,7 @@ msgstr "Outro jogo..." msgid "Output" msgstr "Saída dos Dados" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "Saída da Reamostragem" @@ -9580,7 +9663,7 @@ msgstr "Pausar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 msgid "Pause Branch Watch" -msgstr "" +msgstr "Pausar Branch Watch" #: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" @@ -9764,7 +9847,7 @@ msgstr "Apontar" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Apontar (Redirecionamento)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 @@ -9789,7 +9872,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:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Efeito de Pós-Processamento" @@ -10032,7 +10115,7 @@ msgstr "Bruto" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Resolução Interna Bruta" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" @@ -10081,7 +10164,7 @@ msgstr "Dados do Wii Remote inválidos recebidos do NetPlay." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Recent Hits" -msgstr "" +msgstr "Acertos Recentes" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 @@ -10121,7 +10204,7 @@ msgstr "Vermelho Esquerdo" msgid "Red Right" msgstr "Vermelho Direito" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10312,7 +10395,7 @@ msgstr "Redefinir pareamento de todos os Wii Remotes salvos" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" -msgstr "" +msgstr "Resolução de Captura:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10454,6 +10537,25 @@ 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 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 @@ -10573,11 +10675,11 @@ msgstr "Salvar Todos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "S&alvar Branch Watch Como..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Salvar estado do Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 @@ -10849,6 +10951,8 @@ msgid "" "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)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" @@ -11089,8 +11193,24 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"Define como capturas de quadros (vídeos) e capturas de tela serão obtidas." +"

Se a resolução do jogo ou da janela sofrer alterações durante a " +"gravação, diversos arquivos de vídeo poderão ser criados. Note que a " +"correção de cores e o corte de imagem serão sempre ignorados nas capturas." +"

Resolução da Janela: Usa a resolução da janela de saída " +"(ignorando barras pretas). Uma opção de captura simples, produzindo " +"resultados semelhantes ao que você vê na tela.
Resolução Interna com " +"Proporção de Tela Corrigida: Usa a Resolução Interna (tamanho do XFB) e " +"aplica correções para a proporção de tela de destino. Essa opção irá " +"capturar consistentemente na Resolução Interna especificada, independente de " +"como a imagem é exibida durante a captura.
Resolução Interna Bruta: Usa a Resolução Interna (tamanho do XFB) sem aplicar nenhuma correção " +"para a proporção de tela, disponibilizando a captura mais bruta possível, " +"para uso com softwares de edição de terceiros.

Na " +"dúvida, selecione \"Resolução Interna com Proporção de Tela Corrigida\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11132,6 +11252,25 @@ msgid "" "normal circumstances.

If unsure, select Auto." msgstr "" +"Seleciona qual proporção de tela utilizar ao renderizar.

A proporção " +"de tela da imagem renderizada pelos consoles originas variava de acordo com " +"o jogo e raramente correspondia à exatos 4:3 ou 16:9. Parte da imagem era " +"recortada pelas bordas da TV, ou a imagem não preenchia a TV totalmente. Por " +"padrão, o Dolphin exibe a imagem inteira, sem distorcer suas proporções, " +"então é normal que a imagem não caiba totalmente na sua tela." +"

Automática: Imita uma TV com proporção de tela 4:3 ou 16:9, " +"dependendo de qual tipo de TV o jogo aparente ter como alvo." +"

Forçar 16:9: Imita uma TV com proporção de tela 16:9 " +"(widescreen).

Forçar 4:3: Imita uma TV com proporção de tela " +"4:3.

Esticar para a Janela: Estica a imagem para o tamanho da " +"janela, distorcendo as proporções da imagem.

Personalizada: " +"Imita uma TV com a proporção de tela especificada. Destinada principalmente " +"para utilização com cheats/modificações de proporção de tela." +"

Personalizada (Esticada): Semelhante à \"Personalizada\", mas " +"estica a imagem para a proporção de tela especificada. Isso distorce as " +"proporções da imagem, e não deve ser utilizada em condições normais." +"

Na dúvida, selecione \"Automática\"." #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" @@ -11422,7 +11561,7 @@ msgstr "Mostrar Plataformas" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" -msgstr "" +msgstr "Exibir Estatísticas de Projeção" #: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" @@ -11600,6 +11739,8 @@ msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." 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 msgid "" @@ -11899,7 +12040,7 @@ msgstr "Iniciar &NetPlay..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 msgid "Start Branch Watch" -msgstr "" +msgstr "Iniciar Branch Watch" #: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" @@ -11989,7 +12130,7 @@ msgstr "Passando" msgid "Stereo" msgstr "Estéreo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Modo de Estereoscopia 3D" @@ -12196,7 +12337,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12348,7 +12489,7 @@ msgstr "Testar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Arquivo de texto (*.txt);;Todos os arquivos (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12363,7 +12504,7 @@ msgstr "Precisão do Cache de Texturas" msgid "Texture Dumping" msgstr "Exportação de Texturas" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Filtragem de Textura" @@ -12442,7 +12583,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "A quantidade de dinheiro que esse Skylander possui. Entre 0 e 65000" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" @@ -12495,6 +12636,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"O valor padrão \"%1\" funcionará com um servidor tapserver local e com o " +"newserv. Você também pode especificar um local de rede (endereço:porta) para " +"conectar-se com um tapserver remoto." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12690,6 +12834,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"O nível de herói desse Skylander, visível apenas em Skylanders: Spyro's " +"Adventure. Entre 0 e 100" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12729,7 +12875,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "O apelido para esse 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." @@ -12911,7 +13057,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 msgid "There is nothing to save!" -msgstr "" +msgstr "Não há nada para salvar!" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -13123,7 +13269,7 @@ msgstr "Essa cópia é válida." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Aplicável apenas ao boot inicial do software emulado." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13205,6 +13351,9 @@ msgid "" "To filter for or against unconditional branches,\n" "use the Branch Type filter options." msgstr "" +"Isso filtrará também os branches incondicionais. Para filtrar todos (ou " +"nenhum) branch incondicional, utilize as opções de filtro nos Tipos de " +"Branch." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" @@ -13359,7 +13508,7 @@ msgstr "Falha na tokenização." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Tool Controls" -msgstr "" +msgstr "Controles da Ferramenta" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" @@ -13572,7 +13721,7 @@ msgstr "Não foi possível criar cópia do atualizador." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" -msgstr "Incapaz de modificar o Skylander!" +msgstr "Não foi possível modificar o Skylander!" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." @@ -14021,7 +14170,7 @@ msgstr "Usando o Qt %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1044 msgid "Using TTL %1 for probe packet" -msgstr "Usando o TTL %1 pro pacote de sondagem" +msgstr "Usando TTL %1 para o pacote de teste" #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" @@ -14554,7 +14703,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" -msgstr "" +msgstr "Resolução da Janela" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 @@ -14563,11 +14712,11 @@ msgstr "Tamanho da Janela" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "Limpar Dados de &Inspeção" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Wipe Recent Hits" -msgstr "" +msgstr "Limpar Acertos Recentes" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14584,7 +14733,7 @@ msgstr "Gravação" #: Source/Core/DolphinQt/MenuBar.cpp:931 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Salvar Despejo de Log do Bloco 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. @@ -14633,11 +14782,11 @@ msgstr "Revisão incorreta" #: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Escrito em \"%1\"." #: Source/Android/jni/MainAndroid.cpp:434 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Escrito em \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 @@ -14867,7 +15016,7 @@ msgstr "Código Zero 3 não é suportado" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 msgid "Zero candidates remaining." -msgstr "" +msgstr "Zero candidatos restantes." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14932,7 +15081,7 @@ msgstr "Falsa conclusão" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 msgid "false" -msgstr "" +msgstr "false" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -15009,7 +15158,7 @@ msgstr "este valor:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 msgid "true" -msgstr "" +msgstr "true" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 diff --git a/Languages/po/ro.po b/Languages/po/ro.po index 9bdb1fd0c10b..77d0461eae3e 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1076,7 +1076,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1366,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1426,7 +1426,7 @@ msgstr "Avansat" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1595,7 +1595,7 @@ msgstr "Unghi" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1619,7 +1619,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2290,7 +2290,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2636,7 +2636,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2951,7 +2951,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2959,7 +2959,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2968,7 +2968,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2993,7 +2993,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3593,7 +3593,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4473,7 +4473,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4507,7 +4507,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5719,7 +5719,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5729,7 +5729,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6279,7 +6279,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6948,7 +6948,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7145,7 +7145,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7733,7 +7733,7 @@ msgstr "" msgid "Maker:" msgstr "Marcaj:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8654,7 +8654,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8973,7 +8973,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9290,7 +9290,7 @@ msgstr "Roșu Stânga" msgid "Red Right" msgstr "Roșu Dreapta" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10228,7 +10228,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11048,7 +11048,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11245,7 +11245,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11403,7 +11403,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/ru.po b/Languages/po/ru.po index d5d1cb43ff22..393a63f1289e 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -9,6 +9,8 @@ # dffggff , 2013 # flashmozzg , 2014-2016 # Formerly Andying, 2021 +# Formerly Andying, 2021 +# gandalfthewhite19890404 , 2020 # gandalfthewhite19890404 , 2020 # Irina Fedulova , 2020 # Kein , 2011 @@ -19,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Sukharev Andrey , 2015-2022\n" +"Last-Translator: Илья Гредасов , 2021\n" "Language-Team: Russian (http://app.transifex.com/delroth/dolphin-emu/" "language/ru/)\n" "Language: ru\n" @@ -51,6 +53,11 @@ msgid "" "Because this title is not for retail Wii consoles, Dolphin cannot ensure " "that it hasn't been tampered with, even if signatures appear valid." msgstr "" +"\n" +"\n" +"Поскольку эта игра не предназначена для розничной продажи на консолях Wii, " +"Dolphin не может гарантировать, что она не была подделана, даже если подписи " +"кажутся действительными." #: Source/Core/DolphinQt/GameList/GameListModel.cpp:102 msgid " (Disc %1)" @@ -150,7 +157,7 @@ msgstr "%1 (медленно)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 msgid "" @@ -210,10 +217,12 @@ 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 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" -msgstr "" +msgstr "%1 разблокировал достижений: %2 из %3 в количестве очков: %4 из %5" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 msgid "%1 is not a valid ROM" @@ -225,7 +234,7 @@ msgstr "%1 теперь играет в гольф" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 msgid "%1 is playing %2" -msgstr "" +msgstr "%1 играет в %2" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 msgid "%1 memory ranges" @@ -239,7 +248,7 @@ msgstr "%1 мс" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 msgid "%1 points" -msgstr "" +msgstr "Очков: %1" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:265 msgid "%1 session found" @@ -264,17 +273,17 @@ msgstr "%1% (обычная скорость)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is changed" -msgstr "" +msgstr "Значение %1 изменено" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 msgid "%1's value is hit" -msgstr "" +msgstr "Достигнуто значение %1" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is used" -msgstr "" +msgstr "Используется значение %1" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:177 msgid "%1, %2, %3, %4" @@ -299,7 +308,7 @@ msgstr "%1[%2]: %3/%4 МиБ" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 #, c-format msgid "%1x MSAA" -msgstr "" +msgstr "%1x MSAA" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:98 msgid "%1x Native (%2x%3)" @@ -307,19 +316,19 @@ msgstr "Родное %1x (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "" +msgstr "Родное %1x (%2x%3) для %4" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 #, c-format msgid "%1x SSAA" -msgstr "" +msgstr "%1x SSAA" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:328 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:346 #, c-format msgctxt "" msgid "%n address(es) could not be accessed in emulated memory." -msgstr "" +msgstr "Не удалось получить доступ к адресам (%n) в эмулируемой памяти." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:319 #, c-format @@ -376,7 +385,7 @@ msgstr "&Добавить..." #: Source/Core/DolphinQt/MenuBar.cpp:543 msgid "&Assembler" -msgstr "" +msgstr "&Ассемблер" #: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "&Audio Settings" @@ -458,7 +467,7 @@ msgstr "&Удалить из наблюдения" #. It's not related to timekeeping devices. #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 msgid "&Delete Watches" -msgstr "" +msgstr "&Удалить из наблюдений" #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 @@ -480,15 +489,15 @@ msgstr "&Эмуляция" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" -msgstr "" +msgstr "&Экспорт" #: Source/Core/DolphinQt/GBAWidget.cpp:419 msgid "&Export Save Game..." -msgstr "" +msgstr "&Экспорт сохранения игры…" #: Source/Core/DolphinQt/GBAWidget.cpp:427 msgid "&Export State..." -msgstr "" +msgstr "&Экспорт состояния…" #: Source/Core/DolphinQt/GCMemcardManager.cpp:117 msgid "&Export as .gci..." @@ -534,15 +543,15 @@ msgstr "Горячие &клавиши" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:254 msgid "&Import" -msgstr "" +msgstr "&Импорт" #: Source/Core/DolphinQt/GBAWidget.cpp:416 msgid "&Import Save Game..." -msgstr "" +msgstr "&Импорт сохранения игры…" #: Source/Core/DolphinQt/GBAWidget.cpp:424 msgid "&Import State..." -msgstr "" +msgstr "&Импорт состояния…" #: Source/Core/DolphinQt/GCMemcardManager.cpp:127 msgid "&Import..." @@ -550,7 +559,7 @@ msgstr "&Импортировать..." #: Source/Core/DolphinQt/MenuBar.cpp:268 msgid "&Infinity Base" -msgstr "" +msgstr "&Infinity Base" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "&Insert blr" @@ -582,13 +591,13 @@ msgstr "&Загрузить карту символов" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" -msgstr "" +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 msgid "&Lock Watches" -msgstr "" +msgstr "&Зафиксировать наблюдения" #: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Lock Widgets In Place" @@ -604,7 +613,7 @@ msgstr "&Запись" #: Source/Core/DolphinQt/GBAWidget.cpp:430 msgid "&Mute" -msgstr "" +msgstr "&Выключить звук" #: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&Network" @@ -645,7 +654,7 @@ msgstr "Режим \"Только для &чтения\"" #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:68 msgid "&Refresh List" -msgstr "" +msgstr "&Обновить список" #: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Registers" @@ -683,11 +692,11 @@ msgstr "&Сохранить карту символов" #: Source/Core/DolphinQt/GBAWidget.cpp:406 msgid "&Scan e-Reader Card(s)..." -msgstr "" +msgstr "&Сканировать карту(ы) электронного ридера…" #: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "&Skylanders Portal" -msgstr "" +msgstr "&Портал Skylanders" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 msgid "&Speed Limit:" @@ -721,7 +730,7 @@ msgstr "&Выгрузить образ игры" #. It's not related to timekeeping devices. #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 msgid "&Unlock Watches" -msgstr "" +msgstr "&Разблокировать наблюдения" #: Source/Core/DolphinQt/MenuBar.cpp:443 msgid "&View" @@ -755,15 +764,15 @@ msgstr "'%1' не найден, ищем на замену распростра #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 msgid "(Dark)" -msgstr "" +msgstr "(Тёмная)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 msgid "(Light)" -msgstr "" +msgstr "(Светлая)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 msgid "(System)" -msgstr "" +msgstr "(Системная)" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" @@ -799,7 +808,7 @@ msgstr "--> %1" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 msgid "--Unknown--" -msgstr "" +msgstr "--Неизвестно--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 @@ -815,15 +824,15 @@ msgstr "/ Разделить" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 msgid "0" -msgstr "" +msgstr "0" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" -msgstr "" +msgstr "1 ГиБ" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1080p" -msgstr "" +msgstr "1080p" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31 msgid "128 Mbit (2043 blocks)" @@ -831,19 +840,19 @@ msgstr "128 Мбит (2043 блока)" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" -msgstr "" +msgstr "128 МиБ" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1440p" -msgstr "" +msgstr "1440p" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" -msgstr "" +msgstr "16 байт" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" -msgstr "" +msgstr "16 ГиБ (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:28 msgid "16 Mbit (251 blocks)" @@ -856,12 +865,12 @@ msgstr "16-бит" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:104 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:158 msgid "16-bit Signed Integer" -msgstr "" +msgstr "16-разрядное целое число со знаком" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:96 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:146 msgid "16-bit Unsigned Integer" -msgstr "" +msgstr "16-разрядное целое число без знака" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" @@ -869,7 +878,7 @@ msgstr "16:9" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117 msgid "16x Anisotropic" -msgstr "" +msgstr "Анизотропная 16x" #: Source/Core/Core/HotkeyManager.cpp:193 msgid "1x" @@ -877,11 +886,11 @@ msgstr "1x" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" -msgstr "" +msgstr "2 ГиБ" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" -msgstr "" +msgstr "256 МиБ" #: Source/Core/Core/HotkeyManager.cpp:194 msgid "2x" @@ -889,11 +898,11 @@ msgstr "2x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114 msgid "2x Anisotropic" -msgstr "" +msgstr "Анизотропная 2х" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:86 msgid "32 GiB (SDHC)" -msgstr "" +msgstr "32 ГиБ (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:29 msgid "32 Mbit (507 blocks)" @@ -906,17 +915,17 @@ msgstr "32-бита" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:110 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:167 msgid "32-bit Float" -msgstr "" +msgstr "32-разрядное число с плавающей точкой" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:106 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:161 msgid "32-bit Signed Integer" -msgstr "" +msgstr "32-разрядное целое число со знаком" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:98 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:149 msgid "32-bit Unsigned Integer" -msgstr "" +msgstr "32-разрядное целое число без знака" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 @@ -937,11 +946,11 @@ msgstr "3x" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" -msgstr "" +msgstr "4 байта" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" -msgstr "" +msgstr "16 ГиБ (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:26 msgid "4 Mbit (59 blocks)" @@ -953,7 +962,7 @@ msgstr "4:3" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "4K" -msgstr "" +msgstr "4К" #: Source/Core/Core/HotkeyManager.cpp:196 msgid "4x" @@ -961,15 +970,15 @@ msgstr "4x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115 msgid "4x Anisotropic" -msgstr "" +msgstr "Анизотропная 4х" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" -msgstr "" +msgstr "512 МиБ" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "5K" -msgstr "" +msgstr "5К" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30 msgid "64 Mbit (1019 blocks)" @@ -977,34 +986,34 @@ msgstr "64 Мбит (1019 блоков)" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" -msgstr "" +msgstr "64 МиБ" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 msgid "64-bit Float" -msgstr "" +msgstr "64-разрядное число с плавающей точкой" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:108 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:164 msgid "64-bit Signed Integer" -msgstr "" +msgstr "64-разрядное целое число со знаком" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:100 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:152 msgid "64-bit Unsigned Integer" -msgstr "" +msgstr "64-разрядное целое число без знака" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "720p" -msgstr "" +msgstr "720p" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" -msgstr "" +msgstr "8 байт" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" -msgstr "" +msgstr "8 ГиБ (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:27 msgid "8 Mbit (123 blocks)" @@ -1017,20 +1026,20 @@ msgstr "8-бит" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:102 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:155 msgid "8-bit Signed Integer" -msgstr "" +msgstr "8-разрядное целое число со знаком" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:94 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:143 msgid "8-bit Unsigned Integer" -msgstr "" +msgstr "8-разрядное целое число без знака" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:79 msgid "8K" -msgstr "" +msgstr "8K" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116 msgid "8x Anisotropic" -msgstr "" +msgstr "Анизотропная 8х" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290 msgid "< Less-than" @@ -1046,11 +1055,13 @@ msgstr "<Системный язык>" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 msgid "Disabled in Hardcore Mode." -msgstr "" +msgstr "Отключено в режиме Хардкор." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" +"Если вы не уверены, не устанавливайте этот флажок." #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 @@ -1058,6 +1069,8 @@ msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" +"Время ожидания автоперемещения истекло. Текущая " +"инструкция не применима." #: Source/Core/DolphinQt/Updater.cpp:64 msgid "" @@ -1074,12 +1087,16 @@ msgstr "" msgid "" "Error on line %1 col %2" msgstr "" +"Ошибка в строке %1 " +"столбца %2" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:528 msgid "" "Warning invalid base address, " "defaulting to 0" msgstr "" +"Предупреждение недопустимый базовый " +"адрес, по умолчанию принимает значение 0" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:289 msgid "> Greater-than" @@ -1110,11 +1127,13 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Диск уже должен быть вставлен." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." msgstr "" +"Группа функций, позволяющих сделать цвета более точными, соответствующими " +"цветовому пространству, для которого предназначались игры для Wii и GC." #: Source/Core/DolphinQt/Main.cpp:229 msgid "A save state cannot be loaded without specifying a game to launch." @@ -1133,6 +1152,8 @@ msgid "" "A supported Bluetooth device could not be found.\n" "You must manually connect your Wii Remote." msgstr "" +"Не удалось найти поддерживаемое устройство Bluetooth.\n" +"Необходимо вручную подключить пульт Wii Remote." #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:234 msgid "A sync can only be triggered when a Wii game is running." @@ -1145,7 +1166,7 @@ msgstr "" #. 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 "" @@ -1207,7 +1228,7 @@ msgstr "Акселерометр" #. i18n: Percentage value of accelerometer data (complementary filter coefficient). #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:44 msgid "Accelerometer Influence" -msgstr "" +msgstr "Влияние на акселерометр" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:78 msgid "Accuracy:" @@ -1215,18 +1236,20 @@ msgstr "Точность:" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "Параметры достижений" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 #: Source/Core/DolphinQt/MenuBar.cpp:281 msgid "Achievements" -msgstr "" +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" @@ -1321,7 +1344,7 @@ msgstr "Активна" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 msgid "Active Infinity Figures:" -msgstr "" +msgstr "Активные фигурки Infinity:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 msgid "Active thread queue" @@ -1392,7 +1415,7 @@ msgstr "Добавить в &наблюдение" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Add to watch" -msgstr "" +msgstr "Добавить в наблюдение" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 @@ -1421,7 +1444,7 @@ msgstr "Адресное пространство" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:126 msgid "Address space by CPU state" -msgstr "" +msgstr "Адресное пространство по состоянию ЦП" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:155 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:108 @@ -1429,7 +1452,7 @@ msgstr "" msgid "Address:" msgstr "Адрес:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1439,11 +1462,19 @@ msgid "" "option is incompatible with Manual Texture Sampling." "

If unsure, select 'Default'." msgstr "" +"Настройте фильтрацию текстур. Анизотропная фильтрация улучшает визуальное " +"качество текстур, расположенных под непрямым углом обзора. Принудительно " +"ближайшая и принудительно линейная переопределяют фильтр масштабирования " +"текстур, выбранный игрой.

Любой вариант, кроме «По умолчанию», " +"изменит внешний вид текстур игры и может вызвать проблемы в небольшом " +"количестве игр.

Эта опция несовместима с ручной выборкой текстур." +"

Если вы не уверены, выберите «По умолчанию».The " "performance mostly depends on the number of samples each method uses." @@ -1539,25 +1570,25 @@ msgstr "Африка" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:345 msgid "Air" -msgstr "" +msgstr "Воздух" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116 msgid "Aligned to data type length" -msgstr "" +msgstr "Выравнивание по длине типа данных" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:323 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:401 msgid "All" -msgstr "" +msgstr "Все" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:585 msgid "All Assembly files" -msgstr "" +msgstr "Все файлы сборки" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 msgid "All Double" -msgstr "" +msgstr "Все двойной точности с плавающей точкой" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:586 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:769 @@ -1579,7 +1610,7 @@ msgstr "Все файлы (*)" #. i18n: A floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 msgid "All Float" -msgstr "" +msgstr "Все с плавающей точкой" #: Source/Core/DolphinQt/MainWindow.cpp:775 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 @@ -1588,7 +1619,7 @@ msgstr "Все файлы GC/Wii" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 msgid "All Hexadecimal" -msgstr "" +msgstr "Все шестнадцатеричные" #: Source/Core/DolphinQt/MainWindow.cpp:1408 #: Source/Core/DolphinQt/MainWindow.cpp:1420 @@ -1597,15 +1628,15 @@ msgstr "Файлы быстрых сохранений (*.sav, *.s##);; Все #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 msgid "All Signed Integer" -msgstr "" +msgstr "Все целые числа со знаком" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 msgid "All Unsigned Integer" -msgstr "" +msgstr "Все целые числа без знака" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" -msgstr "" +msgstr "Все файлы (*)" #: Source/Core/Core/NetPlayServer.cpp:1210 msgid "All players' codes synchronized." @@ -1655,7 +1686,7 @@ msgstr "Всегда подключен" #: Source/Core/DolphinQt/GBAWidget.cpp:452 msgid "Always on &Top" -msgstr "" +msgstr "Поверх остальных &окон" #: Source/Core/Core/HW/DVD/DVDThread.cpp:115 msgid "An inserted disc was expected but not found." @@ -1677,9 +1708,9 @@ msgstr "Угол" #. i18n: Refers to the dead-zone setting of gyroscope input. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:41 msgid "Angular velocity to ignore and remap." -msgstr "" +msgstr "Угловая скорость, которую следует игнорировать и перезадать." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Сглаживание" @@ -1703,7 +1734,7 @@ msgstr "Добавить к &имеющемуся файлу с сигнатур msgid "Appl&y Signature File..." msgstr "Примени&ть файл с сигнатурами..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1749,7 +1780,7 @@ msgstr "Вы уверены?" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:142 msgid "Area Sampling" -msgstr "" +msgstr "Выборка по площади" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" @@ -1766,19 +1797,19 @@ msgstr "Соотношение сторон:" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" -msgstr "" +msgstr "Сборка" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "Assemble instruction" -msgstr "" +msgstr "Сборка инструкции" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" -msgstr "" +msgstr "Ассемблер" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" -msgstr "" +msgstr "Файл сборки" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Assign Controller Ports" @@ -1862,7 +1893,7 @@ msgstr "Обнаруживать RSO автоматически?" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" -msgstr "" +msgstr "Автоматически синхронизировать с папкой" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" @@ -1875,7 +1906,7 @@ 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). @@ -1948,7 +1979,7 @@ msgstr "Назад" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" -msgstr "" +msgstr "Задано некорректное значение" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 @@ -1991,7 +2022,7 @@ msgstr "Тремоло" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:417 msgid "Base Address" -msgstr "" +msgstr "Базовый адрес" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "Base priority" @@ -2027,19 +2058,19 @@ msgstr "BetterJoy, DS4Windows и т.д." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:134 msgid "Bicubic: B-Spline" -msgstr "" +msgstr "Бикубическая: B-сплайн" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:138 msgid "Bicubic: Catmull-Rom" -msgstr "" +msgstr "Бикубическая: Catmull-Rom" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:136 msgid "Bicubic: Mitchell-Netravali" -msgstr "" +msgstr "Бикубическая: Mitchell-Netravali" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:132 msgid "Bilinear" -msgstr "" +msgstr "Билинейная" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" @@ -2265,7 +2296,7 @@ msgstr "Точки останова" #: Source/Core/Core/HW/EXI/EXI_Device.h:107 msgid "Broadband Adapter (HLE)" -msgstr "" +msgstr "Широкополосный адаптер (HLE)" #: Source/Core/Core/HW/EXI/EXI_Device.h:100 msgid "Broadband Adapter (TAP)" @@ -2281,7 +2312,7 @@ msgstr "Широкополосный адаптер (tapserver)" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" -msgstr "" +msgstr "Параметры DNS широкополосного адаптера" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:134 msgid "Broadband Adapter Error" @@ -2349,7 +2380,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 @@ -2396,7 +2427,7 @@ msgstr "" msgid "Calculate" msgstr "Вычислить" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2423,15 +2454,15 @@ msgstr "Период калибровки" #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 msgid "Call display list at %1 with size %2" -msgstr "" +msgstr "Вызов списка отображения по адресу %1 с размером %2" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:145 msgid "Callers" -msgstr "" +msgstr "Вызывающие" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:141 msgid "Calls" -msgstr "" +msgstr "Вызовы" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:133 msgid "Callstack" @@ -2449,15 +2480,15 @@ msgstr "Поле зрения камеры (влияет на точность #: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 msgid "Can only generate AR code for values in virtual memory." -msgstr "" +msgstr "Может генерировать AR-код только для значений в виртуальной памяти." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:101 msgid "Can't be modified yet!" -msgstr "" +msgstr "Пока не удалось изменить" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:296 msgid "Can't edit villains for this trophy!" -msgstr "" +msgstr "Не удалось изменить злодеев для этого трофея." #: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1913 msgid "Can't find Wii Remote by connection handle {0:02x}" @@ -2507,7 +2538,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:288 msgid "Cannot compare against last value on first search." -msgstr "" +msgstr "Не удалось сравнить с последним значением при первом поиске." #: Source/Core/Core/Boot/Boot.cpp:629 msgid "Cannot find the GC IPL." @@ -2515,19 +2546,19 @@ msgstr "Не удалось найти IPL GC." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 msgid "Cannot generate AR code for this address." -msgstr "" +msgstr "Не удалось создать AR-код для этого адреса." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:438 msgid "Cannot refresh without results." -msgstr "" +msgstr "Не удалось обновить без результатов." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." -msgstr "" +msgstr "Не удалось установить папку GCI на пустой путь." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." -msgstr "" +msgstr "Не удалось установить карту памяти на пустой путь." #: Source/Core/Core/Boot/Boot.cpp:627 msgid "Cannot start the game, because the GC IPL could not be found." @@ -2537,7 +2568,7 @@ msgstr "Не удалось запустить игру, потому что IPL #. villain was just captured #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:319 msgid "Captured villain %1:" -msgstr "" +msgstr "Захваченный злодей %1:" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:41 msgid "Card Size" @@ -2551,7 +2582,7 @@ msgstr "Центр" #: Source/Core/Core/HotkeyManager.cpp:38 msgid "Center Mouse" -msgstr "" +msgstr "Центрировать курсор мыши" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:929 msgid "Center and Calibrate" @@ -2582,6 +2613,9 @@ msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." msgstr "" +"Изменяет цвет счетчика FPS в зависимости от скорости эмуляции скорости." +"

Если вы не уверены, оставьте этот флажок галочку.>\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" @@ -3017,7 +3107,7 @@ msgstr "Подключен" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 msgid "Connecting" -msgstr "" +msgstr "Подключение" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:196 msgid "Connection Type:" @@ -3075,8 +3165,13 @@ msgid "" "display.

HDR output is required for this setting to take effect." "

If unsure, leave this at 203." msgstr "" +"Регулирует базовую яркость чисто белой поверхности в нитах. Полезно для для " +"адаптации к различным условиям освещения при использовании HDR-дисплея." +"

Для того чтобы эта настройка начала действовать, требуется вывод " +"HDR.

Если не уверены, оставьте значение 203.
A " @@ -3088,7 +3183,7 @@ msgstr "" "находиться перед экраном.

Высокие значения создают более сильную " "видимость \"выпячивания\" обьектов из экрана, низкие – более комфортны." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3102,7 +3197,7 @@ msgstr "" "производительность.

Если не уверены – выберите " "Родное." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3135,7 +3230,7 @@ msgstr "" "Управляет тем, использовать высокоуровневую или низкоуровневую эмуляцию DSP. " "По умолчанию Да" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Сведение" @@ -3147,7 +3242,7 @@ msgstr "Сведение:" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." -msgstr "" +msgstr "Ошибка преобразования" #: Source/Core/DolphinQt/ConvertDialog.cpp:44 msgid "Convert" @@ -3157,7 +3252,7 @@ msgstr "Конвертация" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" -msgstr "" +msgstr "Преобразовать файл в папку" #: Source/Core/DolphinQt/GameList/GameList.cpp:419 msgid "Convert File..." @@ -3167,7 +3262,7 @@ msgstr "Конвертировать файл..." #: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" -msgstr "" +msgstr "Преобразовать папку в файл" #: Source/Core/DolphinQt/GameList/GameList.cpp:383 msgid "Convert Selected Files..." @@ -3212,6 +3307,16 @@ msgid "" "required to show all the colors from the PAL and NTSC-J color spaces." "

If unsure, leave this unchecked." msgstr "" +"Преобразует цвета из цветовых пространств, с которыми должны были работать " +"GC/Wii. в стандарт sRGB/Rec.709.

Невозможно узнать, для какого именно " +"цветового пространства предназначались игры, поскольку существует несколько " +"стандартов и большинство игр их не признавали, поэтому неверно предполагать, " +"что формат определяется регионом игрового диска. Просто выберите тот, " +"который кажется вам более естественным, или соотнесите его с регионом, в " +"котором была разработана игра.

Вывод HDR требуется для отображения " +"всех цветов из цветовых пространств PAL и NTSC-J. " +"

Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:47 msgid "" @@ -3219,6 +3324,10 @@ msgid "" "display targets.
Monitors often target sRGB. TVs often target 2.2." "

If unsure, leave this unchecked." msgstr "" +"Преобразует гамму из той, что была задана в игре, в ту, что задана на вашем " +"текущем SDR-дисплее.
Мониторы часто ориентируются на sRGB. Телевизоры " +"часто ориентируются на 2.2.

Если вы не уверены, не " +"устанавливайте этот флажок." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:706 @@ -3249,7 +3358,7 @@ msgstr "Скопировать hex-значение" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 msgid "Copy Value" -msgstr "" +msgstr "Скопировать значение" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 msgid "Copy code &line" @@ -3257,7 +3366,7 @@ msgstr "Скопировать код &строки" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 msgid "Copy tar&get address" -msgstr "" +msgstr "Скопировать целе&вой адрес" #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" @@ -3280,11 +3389,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" -msgstr "" +msgstr "Коррекция цветового пространства" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:93 msgid "Correct SDR Gamma" -msgstr "" +msgstr "Коррекция гаммы SDR" #. i18n: Performance cost, not monetary cost #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:92 @@ -3382,12 +3491,12 @@ msgstr "Не удалось распознать файл {0}" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:278 msgid "Could not save your changes!" -msgstr "" +msgstr "Не удалось сохранить изменения." #: Source/Core/UICommon/AutoUpdate.cpp:303 #: Source/Core/UICommon/AutoUpdate.cpp:309 msgid "Could not start updater process: {0}" -msgstr "" +msgstr "Не удалось запустить средство обновления: {0}" #: Source/Core/Core/HW/GCMemcard/GCMemcardRaw.cpp:139 msgid "" @@ -3429,11 +3538,11 @@ msgstr "Страна:" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" -msgstr "" +msgstr "Создать" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 msgid "Create Infinity File" -msgstr "" +msgstr "Создать файл Infinity" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:62 #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:74 @@ -3443,11 +3552,11 @@ msgstr "Создать новую карту памяти" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:521 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Create Skylander File" -msgstr "" +msgstr "Создать файл Skylander" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 msgid "Create mappings for other devices" -msgstr "" +msgstr "Создать сопоставления для других устройств" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:45 msgid "Create..." @@ -3472,6 +3581,10 @@ msgid "" "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." "

If unsure, leave this unchecked." msgstr "" +"Обрезает изображение, изменяя его исходное соотношение сторон (которое редко " +"точно соответствует 4:3 или 16:9), к конкретному целевому соотношению сторон " +"пользователя (например, 4:3 или 16:9).

Если вы не " +"уверены, оставьте этот параметр не отмеченным.
If unsure, " "leave this unchecked." msgstr "" +"Убирает вершины на процессоре, чтобы уменьшить количество вызовов отрисовки. " +"Может повлиять на производительность и статистику отрисовки." +"

Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Current Region" @@ -3511,7 +3628,7 @@ msgstr "Текущий поток" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" -msgstr "" +msgstr "Другое" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" @@ -3519,19 +3636,19 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" -msgstr "" +msgstr "Другое адресное пространство" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "" +msgstr "Другая высота в соотношении сторон" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "" +msgstr "Другая ширина в соотношении сторон" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "Другое соотношение сторон:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3539,11 +3656,11 @@ msgstr "Свои настройки времени" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:102 msgid "Custom:" -msgstr "" +msgstr "Другой:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:112 msgid "Customize" -msgstr "" +msgstr "Настроить" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 @@ -3618,7 +3735,7 @@ msgstr "Танцевальный коврик" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352 msgid "Dark" -msgstr "" +msgstr "Тьма" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 msgid "Data" @@ -3626,7 +3743,7 @@ msgstr "Данные" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:145 msgid "Data Partition (%1)" -msgstr "" +msgstr "Раздел с данными (%1)" #: Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp:46 msgid "Data Transfer" @@ -3702,7 +3819,7 @@ msgstr "Уменьшить внутреннее разрешение" #: Source/Core/Core/HotkeyManager.cpp:183 msgid "Decrease Selected State Slot" -msgstr "" +msgstr "Уменьшить выбранный слот сохранения" #: Source/Core/Core/FreeLookManager.cpp:108 msgid "Decrease X" @@ -3780,7 +3897,7 @@ msgstr "Удалить выбранные файлы..." msgid "Delete the existing file '{0}'?" msgstr "Удалить существующий файл '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Глубина" @@ -3809,7 +3926,7 @@ msgstr "Описание:" #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:221 msgid "Description: %1" -msgstr "" +msgstr "Описание: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 @@ -3882,7 +3999,7 @@ msgstr "Устройство:" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:151 msgid "Did not recognize %1 as a valid Riivolution XML file." -msgstr "" +msgstr "Не удалось распознать %1 как действительный XML-файл Riivolution." #: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." @@ -3898,7 +4015,7 @@ msgstr "Direct3D 11" #: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "Dis&connected" -msgstr "" +msgstr "Отк&лючено" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 @@ -3927,7 +4044,7 @@ msgstr "Отключить быструю память" #: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Fastmem Arena" -msgstr "" +msgstr "Отключить Fastmem Arena" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:154 msgid "Disable Fog" @@ -3939,11 +4056,11 @@ msgstr "Отключить кэш JIT" #: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Disable Large Entry Points Map" -msgstr "" +msgstr "Отключить карту больших точек входа" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:214 msgid "Disabled" -msgstr "" +msgstr "Отключено" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:278 msgid "" @@ -3966,7 +4083,7 @@ msgstr "" "в ОЗУ. Подавляет масштабирование.

Если не уверены – " "оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3991,11 +4108,11 @@ msgstr "Отменить" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" -msgstr "" +msgstr "Тип отображения" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:240 msgid "Display values in Hex" -msgstr "" +msgstr "Отображать значения в HEX-формате" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:257 msgid "" @@ -4044,7 +4161,7 @@ msgstr "Вы хотите остановить текущую эмуляцию?" #: Source/Core/DolphinQt/NANDRepairDialog.cpp:86 msgid "Do you want to try to repair the NAND?" -msgstr "" +msgstr "Вы хотите попытаться восстановить NAND?" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 msgid "Dolby Pro Logic II Decoder" @@ -4057,7 +4174,7 @@ msgstr "Лог Dolphin FIFO (*.dff)" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:344 msgid "Dolphin Game Mod Preset" -msgstr "" +msgstr "Предварительная установка игрового мода Dolphin" #: Source/Core/DolphinQt/MenuBar.cpp:1599 #: Source/Core/DolphinQt/MenuBar.cpp:1616 @@ -4088,6 +4205,14 @@ msgid "" "\n" "Do you want to continue anyway?" msgstr "" +"Dolphin не удалось преобразовать файлы NKit в файлы не-NKit. Преобразование " +"файла NKit в Dolphin приведёт к появлению другого файла NKit.\n" +"\n" +"Если вам необходимо преобразовать NKit-файл в не-NKit-файл, вы можете " +"использовать ту же программу, которую вы использовали при преобразовании " +"файла в формат NKit.\n" +"\n" +"Вы хотите продолжить?" #: Source/Core/DolphinQt/GameList/GameList.cpp:281 msgid "" @@ -4159,7 +4284,7 @@ msgstr "Сжатие образа диска завершено." #. Labeled 戸じめ (in Japanese) on the actual controller. #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:55 msgid "Doors Locked" -msgstr "" +msgstr "Двери заблокированы" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 @@ -4215,7 +4340,7 @@ msgstr "Двухъядерный режим" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:214 msgid "Dual View" -msgstr "" +msgstr "Двойное представление" #: Source/Core/Core/HW/EXI/EXI_Device.h:94 msgid "Dummy" @@ -4255,7 +4380,7 @@ msgstr "Дампить кадры" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381 msgid "Dump GameCube BBA traffic" -msgstr "" +msgstr "Создать дамп трафика GameCube BBA" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 msgid "Dump Mip Maps" @@ -4267,19 +4392,19 @@ msgstr "Путь к дампам:" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 msgid "Dump XFB Target" -msgstr "" +msgstr "Создать дамп конечного XFB" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:376 msgid "Dump decrypted SSL reads" -msgstr "" +msgstr "Создать дамп расшифрованных данных SSL" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:377 msgid "Dump decrypted SSL writes" -msgstr "" +msgstr "Создать дамп расшифрованных записей SSL" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:370 msgid "Dump options" -msgstr "" +msgstr "Параметры дампа" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:380 msgid "Dump peer certificates" @@ -4288,7 +4413,7 @@ msgstr "Дампить сертификаты" #. i18n: CA stands for certificate authority #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:379 msgid "Dump root CA certificates" -msgstr "" +msgstr "Создать дамп корневых сертификатов ЦС" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 msgid "" @@ -4338,7 +4463,7 @@ msgstr "&Закрыть" #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "EFB copy %1" -msgstr "" +msgstr "Копия EFB %1" #: Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp:216 msgid "" @@ -4371,7 +4496,7 @@ msgstr "Ранние обновления памяти" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339 msgid "Earth" -msgstr "" +msgstr "Земля" #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "East Asia" @@ -4380,11 +4505,11 @@ msgstr "Восточная Азия" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:40 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:60 msgid "Edit Breakpoint" -msgstr "" +msgstr "Изменить точку останова" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 msgid "Edit..." -msgstr "" +msgstr "Изменить…" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:200 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:201 @@ -4418,7 +4543,7 @@ msgstr "Извлечь диск" #. check the Skylanders SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:287 msgid "Element" -msgstr "" +msgstr "Элемент" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:45 msgid "Embedded Frame Buffer (EFB)" @@ -4434,15 +4559,15 @@ msgstr "Процесс эмулятора уже запущен" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:91 msgid "Emulate Disc Speed" -msgstr "" +msgstr "Эмулировать скорость воспроизведения диска" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" -msgstr "" +msgstr "Эмулировать Infinity Base" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:144 msgid "Emulate Skylander Portal" -msgstr "" +msgstr "Эмулировать портал Skylander" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:112 msgid "Emulate the Wii's Bluetooth adapter" @@ -4453,10 +4578,12 @@ msgid "" "Emulate the disc speed of real hardware. Disabling can cause instability. " "Defaults to True" msgstr "" +"Эмулирует скорость воспроизведения диска реального оборудования. Отключение " +"может привести к нестабильности. По умолчанию True" #: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Emulated USB Devices" -msgstr "" +msgstr "Эмулируемые устройства USB" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 msgid "Emulated Wii Remote" @@ -4492,11 +4619,11 @@ msgstr "Включить слои проверки API" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 msgid "Enable Achievement Badges" -msgstr "" +msgstr "Включить значки достижений" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 msgid "Enable Achievements" -msgstr "" +msgstr "Включить достижения" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" @@ -4508,7 +4635,7 @@ msgstr "Включить чит-коды" #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 msgid "Enable Controller Inpu&t" -msgstr "" +msgstr "Включить вход контроллера" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:162 msgid "Enable Custom RTC" @@ -4516,7 +4643,7 @@ msgstr "Включить переопределение времени" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 msgid "Enable Debugging UI" -msgstr "" +msgstr "Включить интерфейс отладки" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" @@ -4536,7 +4663,7 @@ msgstr "Включить переопределение эмулируемого #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 msgid "Enable Encore Achievements" -msgstr "" +msgstr "Включить достижения «На бис»" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:89 msgid "Enable FPRF" @@ -4544,11 +4671,11 @@ msgstr "Включить FPRF" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" -msgstr "" +msgstr "Включить графические моды" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "Включить режим Хардкор" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 msgid "" @@ -4567,6 +4694,20 @@ 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 в первую " +"очередь ориентированы на очки в режиме Хардкор (очки в режиме Софткор " +"учитываются, но не так сильно) и таблицы лидеров требуют включения режима " +"Хардкор.

Чтобы обеспечить такой опыт, следующие функции будут " +"отключены, так как они дают игрокам на эмуляторе преимущество перед игроками " +"на консоли:
- Загрузка состояний
-- Сохранение состояний " +"разрешено
- Скорость эмулятора ниже 100%
-- Продвижение кадра " +"отключено
-- Турбо разрешено
- Читы
- Патчи памяти
-- Патчи " +"файлов разрешены
- ПИ отладки
- Freelook

Не " +"может быть включён во время игры.
Закройте текущую " +"игру перед включением.
Имейте в виду, что выключение режима Хардкор во " +"время игры требует закрытия игры перед повторным включением." #: Source/Core/DolphinQt/MenuBar.cpp:924 msgid "Enable JIT Block Profiling" @@ -4574,7 +4715,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" -msgstr "" +msgstr "Включить таблицы лидеров" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 @@ -4583,7 +4724,7 @@ msgstr "Включить MMU" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 msgid "Enable Progress Notifications" -msgstr "" +msgstr "Включить уведомления о прогрессе" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" @@ -4591,11 +4732,11 @@ msgstr "Включить прогрессивную развёртку" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 msgid "Enable RetroAchievements.org Integration" -msgstr "" +msgstr "Включить интеграцию с RetroAchievements.org" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 msgid "Enable Rich Presence" -msgstr "" +msgstr "Включить Rich Presence" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 @@ -4612,7 +4753,7 @@ msgstr "Включить данные динамика" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 msgid "Enable Unofficial Achievements" -msgstr "" +msgstr "Включить неофициальные достижения" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 msgid "Enable Usage Statistics Reporting" @@ -4620,7 +4761,7 @@ msgstr "Включить отправку статистики об исполь #: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" -msgstr "" +msgstr "Включить WiiConnect24 с помощью WiiLink" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" @@ -4628,7 +4769,7 @@ msgstr "Включить каркас моделей" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:83 msgid "Enable Write-Back Cache (slow)" -msgstr "" +msgstr "Включить кэш с обратной записью (медленно)" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "" @@ -4636,12 +4777,17 @@ msgid "" "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 "" @@ -4650,12 +4796,19 @@ msgid "" "website. If this is disabled, the website will only report what game is " "being played.

This has no bearing on Discord rich presence." msgstr "" +"Включить подробности 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 " "problems in some games. (ON = Compatible, OFF = Unlocked)" msgstr "" +"Включить эмуляцию скорости воспроизведения диска. Отключение этого параметра " +"может привести к сбоям и другим проблемам в некоторых играх. (ВКЛ = выше " +"совместимость, ОТКЛ = разблокировка)" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "" @@ -4664,6 +4817,10 @@ msgid "" "account to use. Dolphin does not save your password locally and uses an API " "token to maintain login." msgstr "" +"Включить интеграцию с RetroAchievements для получения достижений и " +"соревнования в таблицах лидеров.

Для использования необходимо войти в " +"систему с учётной записью RetroAchievements. Dolphin не сохраняет ваш пароль " +"локально и использует API-токен для сохранения имени пользователя." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 msgid "" @@ -4671,6 +4828,10 @@ msgid "" "message whenever the player makes progress on an achievement that tracks an " "accumulated value, such as 60 out of 120 stars." msgstr "" +"Включить уведомления о прогрессе в достижениях.

Отображает краткое " +"всплывающее сообщение всякий раз, когда игрок добивается прогресса в " +"достижении, которое отслеживает накопленное значение, например 60 звёзд из " +"120." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 msgid "" @@ -4679,10 +4840,15 @@ msgid "" "will be notified if they meet the unlock conditions again, useful for custom " "speedrun criteria or simply for fun." msgstr "" +"Включить разблокировку достижений в режиме «На бис».

Режим «На бис» " +"повторно активирует достижения, которые игрок уже разблокировал на сайте, " +"так что игрок получит уведомление, если снова выполнит условия " +"разблокировки. Это полезно для пользовательских критериев скоростного " +"прохождения игры или просто для развлечения." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 msgid "Enable unlocking achievements.
" -msgstr "" +msgstr "Включить разблокировку достижений.
" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 msgid "" @@ -4691,6 +4857,11 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun." msgstr "" +"Включить возможность разблокировки неофициальных, а также официальных " +"достижений.

Неофициальные достижения могут быть необязательными или " +"незаконченными достижениями, которые не были признаны RetroAchievements " +"официальными и могут быть полезны для тестирования или просто для " +"развлечения." #: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" @@ -4709,7 +4880,7 @@ msgstr "" "result flag), необходимого для небольшого количества игр. (ВКЛ = лучше " "совместимость, ВЫКЛ = выше скорость)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4719,6 +4890,15 @@ msgid "" "Texture Decoding.

If unsure, leave this unchecked." msgstr "" +"Позволяет обнаружить произвольные MIP-текстуры, которые в некоторых играх " +"используются для специальных эффектов, основанных на расстоянии." +"

Могут быть ложные срабатывания, которые приводят к размытым " +"текстурам при повышенном внутреннем разрешении, например в играх, " +"использующих MIP-текстуры с очень низким разрешением. Отключение этой " +"функции также может уменьшить подвисание в играх, в которых часто " +"загружаются новые текстуры. Эта функция не совместима с декодированием " +"текстур на ГП.

Если вы не уверены, не " +"устанавливайте этот флажок." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:85 msgid "" @@ -4727,6 +4907,11 @@ msgid "" "absolutely needed.

If unsure, leave this unchecked." "" msgstr "" +"Включает эмуляцию кэша процессора с обратной записью.
Включение " +"значительно повлияет на производительность.
Эту функцию следует оставить " +"отключённой, если в ней нет крайней необходимости." +"

Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" @@ -4751,7 +4936,7 @@ msgstr "" "вызывает проблем в большинстве игр.

Если не уверены " "– оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4760,6 +4945,14 @@ msgid "" "

Note that games still render in SDR internally." "

If unsure, leave this unchecked." msgstr "" +"Включает вывод HDR scRGB (если поддерживается внутренним графическим " +"интерфейсом и монитором). Может потребоваться полноэкранный режим." +"

Это даёт шейдерам для постобработки больше пространства для " +"точности, позволяет работать шейдерам для постобработки «AutoHDR» и " +"позволяет полностью отображать цветовые пространства PAL и NTSC-J.

" +"Обратите внимание, что игры всё равно отображаются в SDR." +"

Если вы не уверены, не устанавливайте этот флажок." +"
If unsure, leave this unchecked." msgstr "" +"Включает декодирование текстур с помощью ГП вместо ЦП.

Это может " +"привести к к увеличению производительности в некоторых сценариях или в " +"системах, где ЦП является узким местом.

Эта опция несовместима с " +"функцией обнаружения произвольных MIP-текстур.

Если " +"вы не уверены, не устанавливайте этот флажок." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100 msgid "" @@ -4788,6 +4986,9 @@ msgid "" "OFF = Fast)

If unsure, leave this unchecked." msgstr "" +"Включает устройство управления памятью, необходимое для некоторых игр. (ВКЛ " +"= выше совместимость, ОТКЛ = выше скорость)

Если вы " +"не уверены, не устанавливайте этот флажок." #: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" @@ -4796,6 +4997,11 @@ msgid "" "such as the Forecast and Nintendo Channels\n" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +"Включает службу WiiLink для каналов WiiConnect24.\n" +"WiiLink является альтернативным источником для больше не поставляемых " +"каналов WiiConnect24, таких как Forecast и Nintendo.\n" +"Ознакомьтесь с условиями предоставления услуг на сайте: https://www." +"wiilink24.com/tos" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" @@ -4853,7 +5059,7 @@ msgstr "Улучшения" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" -msgstr "" +msgstr "Введите IP-адрес устройства, на котором запущен клиент XLink Kai:" #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:59 msgid "Enter USB device ID" @@ -4861,7 +5067,7 @@ msgstr "Введите ID USB-устройства" #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" -msgstr "" +msgstr "Введите адрес для наблюдения:" #. 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. @@ -4875,7 +5081,7 @@ msgstr "Введите пароль" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" -msgstr "" +msgstr "Введите сервер DNS:" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 msgid "" @@ -4974,7 +5180,7 @@ 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" @@ -4982,13 +5188,13 @@ msgstr "Ошибка открытия адаптера: %1" #: Source/Core/Core/NetPlayServer.cpp:1503 msgid "Error collecting save data!" -msgstr "" +msgstr "Ошибка сбора данных сохранения." #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" -msgstr "" +msgstr "Ошибка преобразования значения" #: Source/Core/DolphinQt/Translation.cpp:323 msgid "Error loading selected language. Falling back to system default." @@ -5001,7 +5207,7 @@ msgstr "Ошибка при получении списка сессий: %1" #: Source/Core/DolphinQt/MainWindow.cpp:306 msgid "Error occurred while loading some texture packs" -msgstr "" +msgstr "Возникла ошибка при загрузке некоторых пакетов текстур" #: Source/Core/Core/NetPlayClient.cpp:1852 msgid "Error processing codes." @@ -5284,11 +5490,11 @@ msgstr "Не удалось добавить данные в файл с сиг #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:669 msgid "Failed to claim interface for BT passthrough: {0}" -msgstr "" +msgstr "Не удалось получить интерфейс для прямого доступа к Bluetooth: {0}" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664 msgid "Failed to clear Skylander!" -msgstr "" +msgstr "Не удалось очистить Skylander." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" @@ -5321,11 +5527,11 @@ msgstr "Не удалось создать фабрику DXGI" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Failed to create Infinity file" -msgstr "" +msgstr "Не удалось создать файл Infinity." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 msgid "Failed to create Skylander file!" -msgstr "" +msgstr "Не удалось создать файл Skylander." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 msgid "" @@ -5339,6 +5545,7 @@ msgstr "" msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" +"Не удалось удалить файл сохранения NetPlay GBA{0}. Проверьте права на запись." #: Source/Core/Core/NetPlayClient.cpp:1082 msgid "Failed to delete NetPlay memory card. Verify your write permissions." @@ -5441,6 +5648,9 @@ msgid "" "Make sure your video card supports at least D3D 10.0\n" "{0}" msgstr "" +"Не удалось инициализировать Direct3D.\n" +"Убедитесь, что ваша видеокарта поддерживает хотя бы D3D 10.0\n" +"{0}" #: Source/Core/VideoCommon/VideoBackendBase.cpp:374 msgid "Failed to initialize renderer classes" @@ -5482,7 +5692,7 @@ msgstr "Не удалось загрузить файл с картой '%1'" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 msgid "Failed to load the Skylander file!" -msgstr "" +msgstr "Не удалось загрузить файл Skylander." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 msgid "" @@ -5504,7 +5714,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:651 msgid "Failed to modify Skylander!" -msgstr "" +msgstr "Не удалось изменить Skylander." #: Source/Core/DolphinQt/MenuBar.cpp:215 msgid "Failed to open \"%1\" for writing." @@ -5534,7 +5744,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}\"." @@ -5564,7 +5774,7 @@ msgstr "Не удалось открыть сервер" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 msgid "Failed to open the Infinity file!" -msgstr "" +msgstr "Не удалось открыть файл Infinity." #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 msgid "" @@ -5576,7 +5786,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" -msgstr "" +msgstr "Не удалось открыть файл Skylander." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 msgid "" @@ -5608,7 +5818,7 @@ msgstr "Не удалось обработать данные с Redump.org" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:301 msgid "Failed to parse given value into target data type." -msgstr "" +msgstr "Не удалось разобрать значение, заданное в целевом типе данных." #: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:213 msgid "Failed to read DFF file." @@ -5630,7 +5840,7 @@ msgstr "Не удалось прочитать выбранные файлы с #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 msgid "Failed to read the Infinity file!" -msgstr "" +msgstr "Не удалось прочитать файл Infinity." #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 msgid "" @@ -5642,7 +5852,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" -msgstr "" +msgstr "Не удалось прочитать файл Skylander." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 msgid "" @@ -5695,6 +5905,7 @@ msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1143 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" +"Не удалось сбросить папку перенаправления NetPlay. Проверьте права на запись." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 msgid "Failed to save Branch Watch snapshot \"%1\"" @@ -5726,6 +5937,10 @@ msgid "" "discarded on next boot if you do not manually re-issue a resync in Config > " "Wii > SD Card Settings > Convert File to Folder Now!" msgstr "" +"Не удалось синхронизировать SD-карту с папкой. Все изменения, сделанные в " +"этом сеансе, будут отменены при следующей загрузке, если вы вручную не " +"выполните повторную синхронизацию в меню Конфигурация > Wii > Параметры SD-" +"карты > Преобразовать файл в папку сейчас" #: Source/Core/DolphinQt/ResourcePackManager.cpp:226 msgid "Failed to uninstall pack: %1" @@ -5755,7 +5970,7 @@ msgstr "Не удалось записать изменённую карту п #: Source/Core/Core/NetPlayClient.cpp:1271 msgid "Failed to write redirected save." -msgstr "" +msgstr "Не удалось записать перенаправленное сохранение." #: Source/Core/DolphinQt/GCMemcardManager.cpp:448 msgid "Failed to write savefile to disk." @@ -5813,11 +6028,11 @@ msgstr "Поле зрения" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 msgid "Figure Number:" -msgstr "" +msgstr "Номер фигурки:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:367 msgid "Figure type" -msgstr "" +msgstr "Тип фигурки" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:46 msgid "File Details" @@ -5920,7 +6135,7 @@ msgstr "" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336 msgid "Fire" -msgstr "" +msgstr "Огонь" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:47 msgid "First Person" @@ -5937,7 +6152,7 @@ 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 @@ -5970,12 +6185,16 @@ msgid "" "For setup instructions, refer to this page." msgstr "" +"Инструкции по установке доступны на этой странице." #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:91 msgid "" "For setup instructions, refer to this page." msgstr "" +"Инструкции по установке доступны на этой странице." #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" @@ -5991,23 +6210,23 @@ msgstr "Принудительно 4:3" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:119 msgid "Force Linear" -msgstr "" +msgstr "Принудительно линейная" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:126 msgid "Force Linear and 16x Anisotropic" -msgstr "" +msgstr "Принудительно линейная и анизотропная 16х" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120 msgid "Force Linear and 2x Anisotropic" -msgstr "" +msgstr "Принудительно линейная и анизотропная 2х" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122 msgid "Force Linear and 4x Anisotropic" -msgstr "" +msgstr "Принудительно линейная и анизотропная 4х" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:124 msgid "Force Linear and 8x Anisotropic" -msgstr "" +msgstr "Принудительно линейная и анизотропная 8х" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:139 msgid "Force Listen Port:" @@ -6015,17 +6234,18 @@ msgstr "Принудительно слушать порт:" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118 msgid "Force Nearest" -msgstr "" +msgstr "Принудительно метод ближайших соседей" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." -msgstr "" +msgstr "Принудительно отключено, поскольку %1 не поддерживает расширение VS." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" +"Принудительно включено, поскольку %1 не поддерживает геометрические шейдеры." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6034,8 +6254,15 @@ msgid "" "available.

If unsure, leave this unchecked." msgstr "" +"Вынуждает игру выводить графику с любым соотношением сторон, расширяя " +"область обзора без растяжения изображения
Это хак, и его результаты могут " +"сильно отличаться в разных играх (часто он приводит к растягиванию " +"пользовательского интерфейса).
Если есть возможность, предпочтительнее " +"использовать исправления для соотношения сторон AR/Gecko-кода, " +"ориентированные на конкретную игру.

Если вы не " +"уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6207,7 +6434,7 @@ msgstr "GBA (внеш. эмулятор по TCP)" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:115 msgid "GBA Cartridge Path:" -msgstr "" +msgstr "Путь к картриджу GBA" #: Source/Core/Core/HotkeyManager.cpp:358 msgid "GBA Core" @@ -6223,7 +6450,7 @@ msgstr "Настройки GBA" #: Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp:27 msgid "GBA TAS Input %1" -msgstr "" +msgstr "Ввод TAS %1 GBA" #: Source/Core/Core/HotkeyManager.cpp:359 msgid "GBA Volume" @@ -6235,11 +6462,11 @@ msgstr "Размер окна GBA" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 msgid "GBA%1 ROM changed to \"%2\"" -msgstr "" +msgstr "ROM GBA%1 изменён на «%2»" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 msgid "GBA%1 ROM disabled" -msgstr "" +msgstr "ROM GBA%1 отключён" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:38 msgid "GC Port %1" @@ -6251,7 +6478,7 @@ msgstr "Папка GCI" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:121 msgid "GCI Folder Path:" -msgstr "" +msgstr "Путь к папке GCI:" #: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:428 msgid "GCMemcardDirectory: ClearBlock called with invalid block address" @@ -6270,6 +6497,12 @@ 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" +"\n" +"{3}\n" +"\n" +"Дальнейшие ошибки будут отправлены в журнал графического движка, и, скорее " +"всего, произойдёт сбой или зависание Dolphin." #: Source/Core/VideoBackends/OGL/OGLMain.cpp:181 msgid "GL_MAX_TEXTURE_SIZE is {0} - must be at least 1024." @@ -6374,11 +6607,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 msgid "Game Boy Advance at Port %1" -msgstr "" +msgstr "Game Boy Advance в порту %1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:73 msgid "Game Color Space:" -msgstr "" +msgstr "Цветовое пространство игры:" #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:69 msgid "Game Config" @@ -6394,11 +6627,11 @@ msgstr "Папки с играми" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:88 msgid "Game Gamma" -msgstr "" +msgstr "Гамма игры" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:86 msgid "Game Gamma:" -msgstr "" +msgstr "Гамма игры:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/MenuBar.cpp:688 @@ -6423,14 +6656,17 @@ 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 msgid "Game has a different disc number" -msgstr "" +msgstr "Игра имеет другой номер диска" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 msgid "Game has a different revision" -msgstr "" +msgstr "Игра имеет другую версию" #: Source/Core/Core/NetPlayClient.cpp:1749 msgid "Game is already running!" @@ -6445,7 +6681,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 msgid "Game region does not match" -msgstr "" +msgstr "Игровой регион не соответствует" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:149 msgid "Game-Specific Settings" @@ -6506,23 +6742,23 @@ msgstr "Ввод GameCube TAS %1" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:80 msgid "Gamma" -msgstr "" +msgstr "Гамма" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:103 msgid "Gate Size" -msgstr "" +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/Config/PropertiesDialog.cpp:73 @@ -6572,7 +6808,7 @@ msgstr "Германия" #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:161 msgid "GetDeviceList failed: {0}" -msgstr "" +msgstr "Ошибка GetDeviceList: {0}" #: Source/Core/UICommon/UICommon.cpp:551 msgid "GiB" @@ -6581,13 +6817,13 @@ msgstr "ГиБ" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 msgid "Giant" -msgstr "" +msgstr "Гигант" #. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries #. it was released in. It was not released in Japan. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:265 msgid "Giants" -msgstr "" +msgstr "Гиганты" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 msgid "Golf Mode" @@ -6605,7 +6841,7 @@ msgstr "Графика" #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:75 msgid "Graphics Mods" -msgstr "" +msgstr "Графические моды" #: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 @@ -6614,9 +6850,9 @@ msgstr "Переключатели графики" #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:59 msgid "Graphics mods are currently disabled." -msgstr "" +msgstr "Графические моды сейчас отключены." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6663,19 +6899,19 @@ msgstr "HDMI 3D" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:130 msgid "HDR" -msgstr "" +msgstr "HDR" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:139 msgid "HDR Paper White Nits" -msgstr "" +msgstr "Яркость белого дисплея HDR в нитах" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:137 msgid "HDR Paper White Nits:" -msgstr "" +msgstr "Яркость белого дисплея HDR в нитах:" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:161 msgid "HDR Post-Processing" -msgstr "" +msgstr "Постобработка HDR" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:62 msgid "Hacks" @@ -6691,27 +6927,27 @@ msgstr "Помощь" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:130 msgid "Hero level:" -msgstr "" +msgstr "Уровень героя:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121 msgid "Hex" -msgstr "" +msgstr "Шестнадцатеричное" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:190 msgid "Hex 16" -msgstr "" +msgstr "16 (шестнадцатер.)" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:191 msgid "Hex 32" -msgstr "" +msgstr "32 (шестнадцатер.)" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:189 msgid "Hex 8" -msgstr "" +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/WatchWidget.cpp:91 @@ -6842,11 +7078,11 @@ msgstr "ID" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 msgid "ID entered is invalid!" -msgstr "" +msgstr "Введён недопустимый ID." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" -msgstr "" +msgstr "ID:" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:136 msgid "IOS Version:" @@ -6969,6 +7205,9 @@ msgid "" "being started. Useful when switching games mid-session. Has no effect if No " "Save Data is selected." msgstr "" +"Если флажок установлен, будут использоваться все сохранения Wii, а не только " +"сохранение запускаемой игры. Полезно при переключении игры в середине " +"сеанса. Не влияет, если выбрано значение «Нет данных сохранения»." #: Source/Core/Core/HW/GCPadEmu.cpp:88 msgid "" @@ -6986,6 +7225,10 @@ msgid "" "

Causes issues with many fifologs, but can be useful for testing." "

If unsure, leave this unchecked." msgstr "" +"Если включено, то все обновления памяти происходят одновременно перед первым " +"кадром

Вызывает проблемы со многими журналами FIFO, но может быть " +"полезно для тестирования.

Если вы не уверены, не " +"устанавливайте этот флажок." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 msgid "" @@ -6993,6 +7236,10 @@ msgid "" "

This is generally only useful when a frame-dumping option is enabled." "

If unsure, leave this checked." msgstr "" +"Если флажок не установлен, то воспроизведение журнала FIFO останавливается " +"после последнего

Это обычно полезно только в том случае, если " +"включена опция дампирования кадров.

Если вы не " +"уверены, не устанавливайте этот флажок." #: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:55 #: qtbase/src/gui/kernel/qplatformtheme.cpp:728 @@ -7105,27 +7352,27 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" -msgstr "" +msgstr "Некорректное значение уровня героя" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" -msgstr "" +msgstr "Некорректное время последнего размещения" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:240 msgid "Incorrect last reset time!" -msgstr "" +msgstr "Некорректное время последнего сброса" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:217 msgid "Incorrect money value!" -msgstr "" +msgstr "Некорректное количество денег" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" -msgstr "" +msgstr "Некорректное прозвище" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" -msgstr "" +msgstr "Некорректное значение игрового времени" #: Source/Core/Core/FreeLookManager.cpp:98 msgid "Increase" @@ -7150,7 +7397,7 @@ msgstr "Увеличить внутреннее разрешение" #: Source/Core/Core/HotkeyManager.cpp:182 msgid "Increase Selected State Slot" -msgstr "" +msgstr "Увеличить выбранный слот сохранения" #: Source/Core/Core/FreeLookManager.cpp:107 msgid "Increase X" @@ -7162,24 +7409,24 @@ msgstr "Увеличить по Y" #: Source/Core/Core/FreeLookManager.cpp:113 msgid "Incremental Rotation" -msgstr "" +msgstr "Увеличивающееся вращение" #: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:43 msgid "Incremental Rotation (rad/sec)" -msgstr "" +msgstr "Увеличивающееся вращение (рад/с)" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 msgid "Infinity Figure Creator" -msgstr "" +msgstr "Создатель фигурок Infinity" #. i18n: Window for managing Disney Infinity figures #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 msgid "Infinity Manager" -msgstr "" +msgstr "Менеджер Infinity" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Infinity Object (*.bin);;" -msgstr "" +msgstr "Объект Infinity (*.bin);;" #. i18n: Refers to a setting controling the influence of accelerometer data. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:48 @@ -7187,6 +7434,8 @@ msgid "" "Influence of accelerometer data on pitch and roll. Higher values will reduce " "drift at the cost of noise. Consider values between 1% and 3%." msgstr "" +"Влияние данных акселерометра на тангаж и крен. Более высокие значения " +"уменьшают дрейф за счёт шума. Рассматривайте значения от 1 до 3 %." #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:48 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:76 @@ -7208,7 +7457,7 @@ msgstr "Запретить скринсейвер во время эмуляци #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:370 msgid "Inject" -msgstr "" +msgstr "Ввести" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 @@ -7227,7 +7476,7 @@ msgstr "Сила ввода, требуемая для активации." #. i18n: Refers to the dead-zone setting of gamepad inputs. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:47 msgid "Input strength to ignore and remap." -msgstr "" +msgstr "Входная сила, которую следует игнорировать и перезадать." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 msgid "Insert &BLR" @@ -7301,6 +7550,10 @@ msgid "" "Registers: %2\n" "Memory: %3" msgstr "" +"Выполненные инструкции: %1\n" +"Значение, содержащееся в:\n" +"Регистры: %2\n" +"Память: %3" #. i18n: Refers to the intensity of shaking an emulated wiimote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:141 @@ -7313,19 +7566,20 @@ msgstr "Интерфейс" #: Source/Core/Core/State.cpp:684 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" -msgstr "" +msgstr "Внутренняя ошибка LZ4 — попытка распаковки {0} байт" #: Source/Core/Core/State.cpp:337 msgid "Internal LZ4 Error - compression failed" -msgstr "" +msgstr "Внутренняя ошибка LZ4 — ошибка сжатия" #: Source/Core/Core/State.cpp:704 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" -msgstr "" +msgstr "Внутренняя ошибка LZ4 — ошибка распаковки ({0}, {1}, {2})" #: Source/Core/Core/State.cpp:717 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" +"Внутренняя ошибка LZ4 — несоответствие размера полезной нагрузки ({0} / {1}))" #: Source/Core/Core/NetPlayCommon.cpp:67 Source/Core/Core/NetPlayCommon.cpp:151 msgid "Internal LZO Error - compression failed" @@ -7341,20 +7595,26 @@ msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" +"Внутренняя ошибка LZO — ошибка распаковки ({0}) ({1}). \n" +"Не удалось получить информацию об устаревшей версии savestate." #: Source/Core/Core/State.cpp:561 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 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:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Внутреннее разрешение" @@ -7365,7 +7625,7 @@ msgstr "Внутреннее разрешение:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 msgid "Internal error while generating AR code." -msgstr "" +msgstr "Внутренняя ошибка генерации AR-кода" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:31 msgid "Interpreter (slowest)" @@ -7381,7 +7641,7 @@ msgstr "Некорректное выражение." #: Source/Core/UICommon/AutoUpdate.cpp:214 msgid "Invalid JSON received from auto-update service : {0}" -msgstr "" +msgstr "От службы автообновления получен недопустимый JSON: {0}" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:166 msgid "Invalid Mixed Code" @@ -7410,7 +7670,7 @@ msgstr "Некорректные контрольные суммы." #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:158 msgid "Invalid game." -msgstr "" +msgstr "Недопустимая игра." #: Source/Core/Core/NetPlayClient.cpp:1984 msgid "Invalid host" @@ -7431,7 +7691,7 @@ msgstr "Некорректный литерал." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:373 msgid "Invalid parameters given to search." -msgstr "" +msgstr "Заданы недопустимые параметры для поиска." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 msgid "Invalid password provided." @@ -7459,7 +7719,7 @@ msgstr "Неверный ID продукта." #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" -msgstr "" +msgstr "Недопустимый адрес наблюдения: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 @@ -7474,7 +7734,7 @@ msgstr "Италия" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:413 msgid "Item" -msgstr "" +msgstr "Элемент" #: Source/Core/DolphinQt/MenuBar.cpp:863 msgid "JIT" @@ -7549,7 +7809,7 @@ msgid "JIT SystemRegisters Off" msgstr "Отключить JIT SystemRegisters" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7583,11 +7843,13 @@ msgid "" "Kaos is the only villain for this trophy and is always unlocked. No need to " "edit anything!" msgstr "" +"Kaos — единственный злодей для этого трофея, и он всегда разблокирован. Не " +"нужно ничего редактировать." #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 msgid "Keep Running" -msgstr "" +msgstr "Оставить запущенным" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 msgid "Keep Window on Top" @@ -7600,7 +7862,7 @@ msgstr "Держать окно поверх остальных" #. up on the idea of having them form a sentence depending on the grammar of your target language. #: Source/Core/DolphinQt/CheatSearchWidget.cpp:186 msgid "Keep addresses where value in memory" -msgstr "" +msgstr "Сохраняйте в памяти адреса, по которым хранятся значения" #: Source/Core/Core/HW/GCKeyboard.cpp:20 msgid "Keyboard" @@ -7608,7 +7870,7 @@ msgstr "Клавиатура" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:45 msgid "Keyboard Controller" -msgstr "" +msgstr "Контроллер клавиатуры" #: Source/Core/Core/HW/GCKeyboardEmu.cpp:60 #: Source/Core/Core/HW/GCKeyboardEmu.cpp:64 @@ -7645,7 +7907,7 @@ msgstr "L" #: Source/Core/DolphinQt/GBAWidget.cpp:398 msgid "L&oad ROM..." -msgstr "" +msgstr "З&агрузить ROM…" #. i18n: The left trigger button (labeled L on real controllers) used as an analog input #: Source/Core/Core/HW/GCPadEmu.h:77 @@ -7668,12 +7930,12 @@ msgstr "Посл. значение" #. i18n: A timestamp for when the Skylander was most recently used #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:158 msgid "Last placed:" -msgstr "" +msgstr "Последнее размещение:" #. i18n: A timestamp for when the Skylander was most recently reset #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:148 msgid "Last reset:" -msgstr "" +msgstr "Последний сброс:" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" @@ -7697,11 +7959,11 @@ msgstr "Задержка: ~80 мс" #: Source/Core/DolphinQt/NANDRepairDialog.cpp:81 msgid "Launching these titles may also fix the issues." -msgstr "" +msgstr "Запуск этих игр также может устранить проблемы." #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 msgid "Leaderboards" -msgstr "" +msgstr "Таблицы лидеров" #: Source/Core/Core/FreeLookManager.cpp:90 #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:36 @@ -7765,7 +8027,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" -msgstr "" +msgstr "Рычаги" #: Source/Core/DolphinQt/AboutDialog.cpp:77 msgid "License" @@ -7775,12 +8037,12 @@ msgstr "Лицензия" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342 msgid "Life" -msgstr "" +msgstr "Жизнь" #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:35 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:53 msgid "Lift" -msgstr "" +msgstr "Подъёмник" #. i18n: Noun. This is used as a label for a control group that represents lights on controllers. #. i18n: One of the elements in the Skylanders games. For official translations @@ -7789,7 +8051,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355 msgid "Light" -msgstr "" +msgstr "Свет" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:141 msgid "Limit Chunked Upload Speed:" @@ -7837,7 +8099,7 @@ msgstr "Загружать свои текстуры" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:113 msgid "Load File" -msgstr "" +msgstr "Загрузить файл" #: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Load GameCube Main Menu" @@ -7845,7 +8107,7 @@ msgstr "Загрузить главное меню GameCube" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 msgid "Load Host's Save Data Only" -msgstr "" +msgstr "Загрузка только данных сохранений хоста" #: Source/Core/Core/HotkeyManager.cpp:356 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 @@ -7862,7 +8124,7 @@ msgstr "Загрузить образ игры" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:115 msgid "Load Slot" -msgstr "" +msgstr "Загрузить слот" #: Source/Core/Core/HotkeyManager.cpp:181 #: Source/Core/Core/HotkeyManager.cpp:353 @@ -7967,7 +8229,7 @@ msgstr "Загрузить системное меню Wii %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 msgid "Load and Write Host's Save Data" -msgstr "" +msgstr "Загрузка и запись данных сохранений хоста" #: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load from Selected Slot" @@ -7984,7 +8246,7 @@ msgstr "Загрузить файл с картой" #: Source/Core/DolphinQt/MenuBar.cpp:1085 msgid "Load vWii System Menu %1" -msgstr "" +msgstr "Загрузить системное меню vWii %1" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 msgid "Load..." @@ -8009,6 +8271,9 @@ msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" +"Загружает графические моды из User/Load/GraphicsMods/." +"

Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 msgid "Local" @@ -8021,7 +8286,7 @@ msgstr "Захватывать курсор мыши" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" -msgstr "" +msgstr "Заблокировано" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 @@ -8034,7 +8299,7 @@ msgstr "Настройка логирования" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 msgid "Log In" -msgstr "" +msgstr "Войти" #: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Log JIT Instruction Coverage" @@ -8042,7 +8307,7 @@ msgstr "Логировать покрытие инструкций JIT" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 msgid "Log Out" -msgstr "" +msgstr "Выйти" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" @@ -8058,7 +8323,7 @@ msgstr "Вывод логов" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Login Failed" -msgstr "" +msgstr "Не удалось выполнить вход" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" @@ -8073,7 +8338,7 @@ msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Loop" -msgstr "" +msgstr "Повторять" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 msgid "Lost connection to NetPlay server..." @@ -8108,7 +8373,7 @@ msgstr "Файлы Gameshark MadCatz" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327 msgid "Magic" -msgstr "" +msgstr "Магия" #: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:29 msgid "Main Stick" @@ -8116,31 +8381,32 @@ msgstr "Основной стик" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224 msgid "Make sure that the hero level value is between 0 and 100!" -msgstr "" +msgstr "Убедитесь, что значение уровня героя составляет от 0 до 100." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:247 msgid "Make sure that the last placed datetime value is valid!" msgstr "" +"Убедитесь, что значение времени последнего размещения является допустимым." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241 msgid "Make sure that the last reset datetime value is valid!" -msgstr "" +msgstr "Убедитесь, что значение времени последнего сброса является допустимым." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218 msgid "Make sure that the money value is between 0 and 65000!" -msgstr "" +msgstr "Убедитесь, что количество денег составляет от 0 до 65000." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" -msgstr "" +msgstr "Убедитесь, что прозвище содержит от 0 до 15 символов." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" -msgstr "" +msgstr "Убедитесь, что значение игрового времени является допустимым." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:652 msgid "Make sure there is a Skylander in slot %1!" -msgstr "" +msgstr "Убедитесь, что в слоте %1 есть Skylander." #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 @@ -8153,7 +8419,7 @@ msgstr "Создатель" msgid "Maker:" msgstr "Создатель:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8173,7 +8439,7 @@ msgstr "Управлять NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" -msgstr "" +msgstr "Ручная выборка текстур" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 msgid "Mapping" @@ -8181,7 +8447,7 @@ msgstr "Порты" #: Source/Core/Core/HW/EXI/EXI_Device.h:96 msgid "Mask ROM" -msgstr "" +msgstr "Масочное ПЗУ" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" @@ -8227,7 +8493,7 @@ msgstr "Менеджер карт памяти" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:109 msgid "Memory Card Path:" -msgstr "" +msgstr "Путь к карте памяти:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:120 msgid "Memory Override" @@ -8273,7 +8539,7 @@ msgstr "Микрофон" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 msgid "Mini" -msgstr "" +msgstr "Мини" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" @@ -8337,12 +8603,12 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" -msgstr "" +msgstr "Изменить слот" #. i18n: %1 is a name #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" -msgstr "" +msgstr "Изменение Skylander: %1" #: Source/Core/DolphinQt/MenuBar.cpp:1387 #: Source/Core/DolphinQt/MenuBar.cpp:1538 @@ -8351,7 +8617,7 @@ msgstr "Найдено модулей: %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:126 msgid "Money:" -msgstr "" +msgstr "Деньги:" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" @@ -8380,20 +8646,21 @@ msgstr "Мотор" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 msgid "Mouse Cursor Visibility" -msgstr "" +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 "" +msgstr "Курсор мыши будет отображаться всегда." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" +msgstr "Курсор мыши не будет отображаться, если игра запущена." #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 @@ -8410,6 +8677,8 @@ 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 msgid "Multiple errors while generating AR codes." @@ -8418,7 +8687,7 @@ msgstr "" #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 msgid "Multiplier" -msgstr "" +msgstr "Множитель" #: qtbase/src/gui/kernel/qplatformtheme.cpp:722 msgid "N&o to All" @@ -8443,7 +8712,7 @@ 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 @@ -8452,7 +8721,7 @@ 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 "" @@ -8462,6 +8731,12 @@ msgid "" "match it here.

If unsure, leave this at 2.35." msgstr "" +"NTSC-M и NTSC-J ориентированы на гамму ~2.2.; PAL ориентирован на гамму ~2.8." +"
Ни один из них не был обязательно использован в играх или телевизорах." +"
2.35 — приемлемое общее значение для всех регионов.

Если игра " +"позволяет выбрать значение гаммы, подберите его здесь." +"

Если вы не уверены, оставьте значение 2.35." #: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 @@ -8528,6 +8803,9 @@ 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 "" +"Netplay начнёт использовать данные сохранений хоста, и все данные " +"сохранений, созданные или изменённые во время сеанса Netplay, останутся в " +"локальных сохранениях хоста." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 msgid "" @@ -8535,12 +8813,17 @@ msgid "" "modified during the Netplay session will be discarded at the end of the " "session." msgstr "" +"Netplay начнет использовать данные сохранений хоста, но все данные " +"сохранений, созданные или изменённые во время сеанса Netplay, будут " +"отброшены в конце сеанса." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" +"Netplay будет запущена без данных сохранений, а созданные данные сохранений " +"будут удалены по окончании сеанса Netplay." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 @@ -8571,11 +8854,11 @@ msgstr "Новая точка останова" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:706 msgid "New File" -msgstr "" +msgstr "Создать файл" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:708 msgid "New File (%1)" -msgstr "" +msgstr "Создать файл (%1)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" @@ -8632,7 +8915,7 @@ msgstr "Адаптеров не обнаружено" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:206 msgid "No Alignment" -msgstr "" +msgstr "Без выравнивания" #: Source/Core/Core/Config/MainSettings.h:17 msgid "No Audio Output" @@ -8650,11 +8933,11 @@ msgstr "Нет совпадений" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 msgid "No Save Data" -msgstr "" +msgstr "Нет данных сохранений" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:84 msgid "No data to modify!" -msgstr "" +msgstr "Нет данных для изменения." #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 @@ -8679,20 +8962,20 @@ msgstr "Файл не загружен / записан." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:370 msgid "No game is running." -msgstr "" +msgstr "Ни одной игры не запущено." #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." -msgstr "" +msgstr "Ни одной игры не запущено." #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:197 msgid "No graphics mod selected" -msgstr "" +msgstr "Графический мод не выбран." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:59 #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:107 msgid "No input" -msgstr "" +msgstr "Нет входных данных" #: Source/Core/DolphinQt/MenuBar.cpp:1226 msgid "No issues have been detected." @@ -8700,7 +8983,7 @@ msgstr "Проблем не обнаружено." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 msgid "No matching game was found" -msgstr "" +msgstr "Соответствующая игра не найдена" #: Source/Core/Core/Boot/Boot.cpp:98 msgid "No paths found in the M3U file \"{0}\"" @@ -8785,7 +9068,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 msgid "Not found" -msgstr "" +msgstr "Не найдено" #: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:28 msgid "" @@ -8831,7 +9114,7 @@ msgstr "Нунчак" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 msgid "Nunchuk Accelerometer" -msgstr "" +msgstr "Акселерометр Nunchuk" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 msgid "Nunchuk Buttons" @@ -8923,7 +9206,7 @@ msgstr "Вкл" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "On Movement" -msgstr "" +msgstr "При перемещении" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" @@ -8931,6 +9214,10 @@ msgid "" "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" +"На серверных частях, поддерживающих использование как геометрического " +"шейдера, так и вершинного шейдера для расширения точек и линий, выбирается " +"вершинный шейдер для выполнения задания. Может влиять на производительность." +"

%1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 msgid "" @@ -8953,7 +9240,7 @@ msgstr "Онлайн-&документация" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:50 msgid "Only Show Collection" -msgstr "" +msgstr "Показывать только коллекцию" #: Source/Core/DolphinQt/MenuBar.cpp:1711 msgid "" @@ -8984,7 +9271,7 @@ msgstr "Открыть &папку с образом" #: Source/Core/DolphinQt/MenuBar.cpp:247 msgid "Open &User Folder" -msgstr "" +msgstr "Открыть папку &пользователя" #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 @@ -9109,19 +9396,19 @@ msgstr "Другой игры..." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:446 msgid "Output" -msgstr "" +msgstr "Результаты" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" -msgstr "" +msgstr "Результаты повторной выборки" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:176 msgid "Output Resampling:" -msgstr "" +msgstr "Результаты повторной выборки:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 msgid "Overwritten" -msgstr "" +msgstr "Перезаписано" #: Source/Core/DolphinQt/MenuBar.cpp:788 msgid "P&lay Input Recording..." @@ -9134,7 +9421,7 @@ 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 @@ -9176,7 +9463,7 @@ msgstr "Параметры" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:217 msgid "Parse as Hex" -msgstr "" +msgstr "Разбор в шестнадцатеричном формате" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:149 #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:236 @@ -9243,7 +9530,7 @@ msgstr "Пауза при потере фокуса" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:75 msgid "Pause on Panic" -msgstr "" +msgstr "Пауза при ошибке" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77 msgid "" @@ -9252,6 +9539,11 @@ msgid "" "as having Enable MMU on.

If unsure, leave this " "unchecked." msgstr "" +"Приостанавливает эмуляцию, если возникает ошибка при чтении/записи или " +"неизвестной инструкции.
Включение повлияет на производительность." +"
Влияние на производительность такое же, как и при включении MMU." +"

Если вы не уверены, не устанавливайте этот флажок." +"" #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9282,15 +9574,15 @@ msgstr "Выполнить обновление системы" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" -msgstr "" +msgstr "Окно образца производительности (мс)" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" -msgstr "" +msgstr "Окно образца производительности (мс):" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" -msgstr "" +msgstr "Статистика производительности" #. i18n: One of the options shown below "Address Space". "Physical" is the address space that #. reflects how devices (e.g. RAM) is physically wired up. @@ -9300,7 +9592,7 @@ msgstr "Физическое" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:129 msgid "Physical address space" -msgstr "" +msgstr "Физическое адресное пространство" #: Source/Core/UICommon/UICommon.cpp:552 msgid "PiB" @@ -9341,7 +9633,7 @@ msgstr "Проиграть записанное" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 msgid "Play Set/Power Disc" -msgstr "" +msgstr "Play Set/Power Disc" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 msgid "Playback Options" @@ -9353,27 +9645,27 @@ msgstr "Игрок" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Player One" -msgstr "" +msgstr "Игрок 1" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Player One Ability One" -msgstr "" +msgstr "Игрок 1 Способность 1" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One Ability Two" -msgstr "" +msgstr "Игрок 1 Способность 2" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player Two" -msgstr "" +msgstr "Игрок 2" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player Two Ability One" -msgstr "" +msgstr "Игрок 2 Способность 1" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two Ability Two" -msgstr "" +msgstr "Игрок 2 Способность 2" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 @@ -9383,7 +9675,7 @@ msgstr "Игроки" #. i18n: The total amount of time the Skylander has been used for #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:142 msgid "Playtime:" -msgstr "" +msgstr "Игровое время:" #. i18n: Please leave SyncOnSkipIdle and True untranslated. #. The user needs to enter these terms as-is in an INI file. @@ -9392,11 +9684,13 @@ msgid "" "Please change the \"SyncOnSkipIdle\" setting to \"True\"! It's currently " "disabled, which makes this problem very likely to happen." msgstr "" +"Измените настройку «SyncOnSkipIdle» на «True». В настоящее время она " +"отключена, что делает эту проблему очень вероятной." #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." -msgstr "" +msgstr "Прежде чем начать поиск в стандартных областях памяти, запустите игру." #. i18n: "Point" refers to the action of pointing a Wii Remote. #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:229 @@ -9415,7 +9709,7 @@ msgstr "Порт %1" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" -msgstr "" +msgstr "ROM на порту %1:" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:103 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:137 @@ -9424,7 +9718,7 @@ msgstr "Порт:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" -msgstr "" +msgstr "Слоты портала" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 msgid "Possible desync detected: %1 might have desynced at frame %2" @@ -9432,7 +9726,7 @@ msgstr "" "Обнаружена возможная рассинхронизация: %1, вероятно, рассинхронизовался на " "кадре %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Эффект пост-обработки" @@ -9447,7 +9741,7 @@ msgstr "Конфигурация шейдеров пост-обработки" #. i18n: VS is short for vertex shaders. #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" -msgstr "" +msgstr "Предпочтение VS для расширения точек/линий" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" @@ -9584,7 +9878,7 @@ msgstr "Очистить кэш списка игр" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 msgid "Put IPL ROMs in User/GC/." -msgstr "" +msgstr "Поместите ПЗУ IPL в User/GC/<регион>." #: qtbase/src/gui/kernel/qguiapplication.cpp:234 msgctxt "" @@ -9666,11 +9960,11 @@ msgstr "Начало диапазона: " #: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 msgid "Rank %1" -msgstr "" +msgstr "Место %1" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:409 msgid "Raw" -msgstr "" +msgstr "Raw (без обработки)" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" @@ -9718,7 +10012,7 @@ msgstr "Настоящий Wii Remote" #: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:388 msgid "Received invalid Wii Remote data from Netplay." -msgstr "" +msgstr "От Netplay получены неверные данные Wii Remote." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 @@ -9763,7 +10057,7 @@ msgstr "Красная слева" msgid "Red Right" msgstr "Красная справа" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9919,11 +10213,11 @@ msgstr "Сбросить" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:249 msgid "Reset All" -msgstr "" +msgstr "Сбросить все" #: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "Reset Ignore Panic Handler" -msgstr "" +msgstr "Сброс игнорирования обработчика ошибок" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:230 msgid "Reset Results" @@ -10021,7 +10315,7 @@ msgstr "Правый диск" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 msgid "Riivolution XML files" -msgstr "" +msgstr "Файлы XML Riivolution" #. i18n: Refers to the "rim" of a TaTaCon drum. #: Source/Core/Core/HW/WiimoteEmu/Extension/TaTaCon.cpp:50 @@ -10066,6 +10360,11 @@ msgid "" "used.

If unsure, leave this unchecked." msgstr "" +"Округляет 2D-вершины до целых пикселей и округляет размер области просмотра " +"до целого числа.

Устраняет графические проблемы в некоторых играх при " +"более высоких внутренних разрешениях. Эта настройка не влияет, если " +"используется родное внутреннее разрешение

Если вы " +"не уверены, не устанавливайте этот флажок." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 msgid "" @@ -10110,15 +10409,15 @@ msgstr "Запускать ядра GBA в выделенных потоках" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 msgid "Run until" -msgstr "" +msgstr "Выполнить до" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 msgid "Run until (ignoring breakpoints)" -msgstr "" +msgstr "Выполнить до (игнорирование точек останова)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 msgid "Run until hit (ignoring breakpoints)" -msgstr "" +msgstr "Выполнить до достижения (игнорирование точек останова)" #: Source/Core/DiscIO/Enums.cpp:51 msgid "Russia" @@ -10130,7 +10429,7 @@ msgstr "SD-карты" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" -msgstr "" +msgstr "Размер файла SD-карты:" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" @@ -10142,19 +10441,19 @@ msgstr "Путь к SD-карте:" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" -msgstr "" +msgstr "Параметры SD-карты" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:186 msgid "SD Root:" -msgstr "" +msgstr "Корневой каталог SD-карты:" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" -msgstr "" +msgstr "Папка синхронизации:" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:97 msgid "SDR Display Gamma Target" -msgstr "" +msgstr "Целевая гамма дисплея SDR" #: Source/Core/Core/HW/GBAPadEmu.h:45 #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:42 @@ -10167,7 +10466,7 @@ msgstr "SHA-1:" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:43 msgid "SHA1 Digest" -msgstr "" +msgstr "Хэш SHA1" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" @@ -10235,11 +10534,11 @@ msgstr "Сохранить файл в" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 msgid "Save Game" -msgstr "" +msgstr "Сохранение игры" #: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" -msgstr "" +msgstr "Файлы сохранений игры (*.sav);;Все файлы (*)" #: Source/Core/DolphinQt/MenuBar.cpp:1142 #: Source/Core/DolphinQt/MenuBar.cpp:1151 @@ -10255,11 +10554,11 @@ msgstr "Сохранить самое старое сохранение" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:342 msgid "Save Preset" -msgstr "" +msgstr "Сохранить предустановку" #: Source/Core/DolphinQt/MainWindow.cpp:1933 msgid "Save Recording File As" -msgstr "" +msgstr "Сохранить файл записи как" #: Source/Core/Core/HotkeyManager.cpp:180 #: Source/Core/Core/HotkeyManager.cpp:354 @@ -10337,7 +10636,7 @@ msgstr "Быстрые сохранение и загрузка" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:68 msgid "Save as Preset..." -msgstr "" +msgstr "Сохранить как предустановку…" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:183 msgid "Save as..." @@ -10453,7 +10752,7 @@ msgstr "Поиск инструкции" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" -msgstr "" +msgstr "Поиск:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:59 msgid "Section that contains all Action Replay cheat codes." @@ -10500,7 +10799,7 @@ msgstr "Выберите папку для экспорта" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 msgid "Select Figure File" -msgstr "" +msgstr "Выберите файл фигурки" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 msgid "Select GBA BIOS" @@ -10528,15 +10827,15 @@ msgstr "Выберите путь к наборам ресурсов" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:138 msgid "Select Riivolution XML file" -msgstr "" +msgstr "Выберите файл XML Riivolution" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" -msgstr "" +msgstr "Выберите коллекцию Skylander" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" -msgstr "" +msgstr "Выберите файл Skylander" #: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "Select Slot %1 - %2" @@ -10592,7 +10891,7 @@ msgstr "Выбрать слот сохранения 9" #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" -msgstr "" +msgstr "Выберите путь к WFS" #: Source/Core/DolphinQt/Settings/PathPane.cpp:60 msgid "Select Wii NAND Root" @@ -10615,7 +10914,7 @@ msgstr "Выберите файл" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" -msgstr "" +msgstr "Выберите папку для синхронизации с образом SD-карты" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" @@ -10627,7 +10926,7 @@ msgstr "Выберите образ SD-карты" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" -msgstr "" +msgstr "Выберите файл" #: Source/Core/DolphinQt/NetPlay/GameListDialog.cpp:18 msgid "Select a game" @@ -10647,11 +10946,11 @@ msgstr "Выберите адрес модуля RSO:" #: Source/Core/DolphinQt/MainWindow.cpp:1855 msgid "Select the Recording File to Play" -msgstr "" +msgstr "Выберите файл записи, который следует воспроизвести" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:192 msgid "Select the Virtual SD Card Root" -msgstr "" +msgstr "Выберите коренной каталог виртуальной SD-карты" #: Source/Core/DolphinQt/MainWindow.cpp:1832 msgid "Select the keys file (OTP/SEEPROM dump)" @@ -10729,7 +11028,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10875,12 +11174,17 @@ msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." 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 "" +"Устанавливает поиск с использованием стандартных сопоставлений MEM1 и (на " +"Wii) MEM2 в виртуальном адресном пространстве. Это подходит для подавляющего " +"большинства игр." #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 @@ -10908,20 +11212,20 @@ msgstr "Встряска" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:140 msgid "Sharp Bilinear" -msgstr "" +msgstr "Резкая билинейная" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:232 msgid "Shinkansen" -msgstr "" +msgstr "Shinkansen" #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:23 msgid "Shinkansen Controller" -msgstr "" +msgstr "Контроллер Shinkansen" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" -msgstr "" +msgstr "Показывать % скорости" #: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show &Log" @@ -10950,7 +11254,7 @@ msgstr "Показывать текущую игру в Discord" #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" -msgstr "" +msgstr "Показывать отключённые коды первыми" #: Source/Core/DolphinQt/MenuBar.cpp:719 msgid "Show ELF/DOL" @@ -10959,7 +11263,7 @@ msgstr "ELF/DOL-файлы" #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" -msgstr "" +msgstr "Показывать включённые коды первыми" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" @@ -10971,7 +11275,7 @@ msgstr "Показывать счётчик кадров" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" -msgstr "" +msgstr "Показывать время кадра" #: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show France" @@ -10991,7 +11295,7 @@ msgstr "Показывать оверлей режима гольфа" #: Source/Core/Core/HotkeyManager.cpp:199 msgid "Show Infinity Base" -msgstr "" +msgstr "Показать Infinity Base" #: Source/Core/DolphinQt/MenuBar.cpp:833 msgid "Show Input Display" @@ -11003,7 +11307,7 @@ msgstr "Италия" #: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show JPN" -msgstr "" +msgstr "Япония" #: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Korea" @@ -11048,7 +11352,7 @@ msgstr "Показать СК" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" -msgstr "" +msgstr "Показывать графики производительности" #: Source/Core/DolphinQt/MenuBar.cpp:722 msgid "Show Platforms" @@ -11064,7 +11368,7 @@ msgstr "Отображать игры регионов" #: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Rerecord Counter" -msgstr "" +msgstr "Показывать счётчик перезаписей" #: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Russia" @@ -11072,7 +11376,7 @@ msgstr "Россия" #: Source/Core/Core/HotkeyManager.cpp:198 msgid "Show Skylanders Portal" -msgstr "" +msgstr "Показать портал Skylanders" #: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show Spain" @@ -11080,7 +11384,7 @@ msgstr "Испания" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" -msgstr "" +msgstr "Отображение цветов в зависимости от скорости" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" @@ -11104,11 +11408,11 @@ msgstr "Неизвестный" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" -msgstr "" +msgstr "Показывать длительность VBlank" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" -msgstr "" +msgstr "Показывать VPS" #: Source/Core/DolphinQt/MenuBar.cpp:718 msgid "Show WAD" @@ -11128,12 +11432,12 @@ msgstr "Показать в &памяти" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 msgid "Show in Code" -msgstr "" +msgstr "Показать в коде" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 msgid "Show in Memory" -msgstr "" +msgstr "Показать в памяти" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 msgid "Show in code" @@ -11141,7 +11445,7 @@ msgstr "Показать в коде" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 msgid "Show in memory" -msgstr "" +msgstr "Показать в памяти" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:143 msgid "Show in server browser" @@ -11149,7 +11453,7 @@ msgstr "Показывать в списке серверов" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 msgid "Show target in memor&y" -msgstr "" +msgstr "Показать целевой объект в памят&и" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" @@ -11166,6 +11470,10 @@ msgid "" "performance.

If unsure, leave this unchecked." msgstr "" +"Показывает график времени кадров вместе со статистикой в качестве " +"представления производительности эмуляции производительности." +"

Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format @@ -11173,6 +11481,9 @@ msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" +"Показывает % скорости эмуляции по сравнению с полной " +"

Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" @@ -11180,6 +11491,9 @@ msgid "" "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" +"Показывает среднее время в мс между каждым отдельным отображаемым кадром, а " +"также стандартное отклонение.

Если вы не уверены, " +"не устанавливайте этот флажок." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" @@ -11187,6 +11501,9 @@ msgid "" "standard deviation.

If unsure, leave this unchecked." "" msgstr "" +"Показывает среднее время в мс между каждым отображаемым кадром, а также " +"стандартное отклонение.

Если вы не уверены, не " +"устанавливайте этот флажок." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" @@ -11194,6 +11511,9 @@ msgid "" "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" +"Показывает количество отдельных кадров, отображаемых в секунду, как " +"показатель визуальной плавности.

Если вы не " +"уверены, установите этот флажок." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" @@ -11251,17 +11571,17 @@ msgstr "База данных сигнатур" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:145 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:196 msgid "Signed 16" -msgstr "" +msgstr "16-разрядное число со знаком" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:146 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:197 msgid "Signed 32" -msgstr "" +msgstr "32-разрядное число со знаком" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:144 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:195 msgid "Signed 8" -msgstr "" +msgstr "8-разрядное число со знаком" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 msgid "Signed Integer" @@ -11321,6 +11641,11 @@ msgid "" "issues.


If unsure, leave this " "unchecked." msgstr "" +"Пропускает прерывания по вертикали при обнаружении задержки, обеспечивая " +"плавное воспроизведение звука, когда скорость эмуляции не достигает 100%. " +"

ПРЕДУПРЕЖДЕНИЕ: может вызывать зависания и " +"проблемы с совместимостью.

Если " +"вы не уверены, не устанавливайте этот флажок." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:262 msgid "" @@ -11340,28 +11665,28 @@ msgstr "" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:403 msgid "Skylander" -msgstr "" +msgstr "Skylander" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:175 msgid "Skylander %1" -msgstr "" +msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky);;Все файлы (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" -msgstr "" +msgstr "Путь к коллекции Skylander:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" -msgstr "" +msgstr "Skylander не найден в этой коллекции. Создать новый файл?" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:45 msgid "Skylanders Manager" -msgstr "" +msgstr "Менеджер Skylanders" #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:97 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:140 @@ -11449,7 +11774,7 @@ msgstr "Громкость динамика:" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" -msgstr "" +msgstr "Специализированные (по умолчанию)" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Specific" @@ -11467,6 +11792,15 @@ msgid "" "less time.

If unsure, leave this at 6." msgstr "" +"Указывает уровень сжатия zlib при сохранении изображений PNG (как для " +"снимков экрана, так и для дампов кадров).

Поскольку PNG использует " +"сжатие без потерь, это не влияет на качество изображения; напротив, это " +"компромисс между размером файла и временем сжатия.

При значении 0 " +"сжатие вообще не используется. При значении 1 сжатие очень слабое, а при " +"максимальном значении 9 — сильное сжатие. Однако для файлов PNG уровни от 3 " +"до 6, как правило, не уступают уровню 9, но завершаются за гораздо меньшее " +"время.

Если вы не уверены, оставьте значение 6." #: Source/Core/Core/FreeLookManager.cpp:95 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:24 @@ -11478,7 +11812,7 @@ msgstr "Скорость" #. 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 msgid "Stack end" @@ -11524,11 +11858,11 @@ msgstr "Запускать во весь экран" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:48 msgid "Start with Riivolution Patches" -msgstr "" +msgstr "Запуск с исправлениями Riivolution" #: Source/Core/DolphinQt/GameList/GameList.cpp:411 msgid "Start with Riivolution Patches..." -msgstr "" +msgstr "Запуск с исправлениями Riivolution…" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 msgid "Started game" @@ -11594,7 +11928,7 @@ msgstr "Шаги" msgid "Stereo" msgstr "Стерео" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Стереоскопический 3D-режим" @@ -11690,7 +12024,7 @@ msgstr "Бренчание" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 msgid "Style:" -msgstr "" +msgstr "Стиль:" #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:29 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:48 @@ -11763,7 +12097,7 @@ msgstr "Данный продукт успешно удалён из NAND." #. all countries they were released in. They were not released in Japan. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275 msgid "SuperChargers" -msgstr "" +msgstr "SuperChargers" #: Source/Core/DolphinQt/AboutDialog.cpp:79 msgid "Support" @@ -11794,14 +12128,14 @@ msgstr "Поменять ракурсы местами" #. it was released in. It was not released in Japan. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:268 msgid "Swap Force" -msgstr "" +msgstr "Swap Force" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:407 msgid "Swapper" -msgstr "" +msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11872,7 +12206,7 @@ msgstr "" msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." -msgstr "" +msgstr "Синхронизация SD-карты с папкой при запуске и завершении эмуляции." #: Source/Core/Core/NetPlayClient.cpp:1434 msgid "Synchronizing AR codes..." @@ -11928,19 +12262,21 @@ msgstr "Сделать скриншот" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:666 msgid "Target address range is invalid." -msgstr "" +msgstr "Диапазон целевых адресов является недопустимым." #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" msgstr "" +"Целевое значение было перезаписано текущей инструкцией.\n" +"Выполнены инструкции: %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 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333 msgid "Tech" -msgstr "" +msgstr "Техника" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:263 msgid "Test" @@ -11965,13 +12301,13 @@ msgstr "Точность кэширования текстур" msgid "Texture Dumping" msgstr "Дамп текстур" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" -msgstr "" +msgstr "Фильтрация текстур" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:172 msgid "Texture Filtering:" -msgstr "" +msgstr "Фильтрация текстур:" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" @@ -11993,6 +12329,12 @@ msgid "" "\n" "Do you really want to switch to Direct3D 11? If unsure, select 'No'." msgstr "" +"Рендерер Direct3D 11 требует поддержки функций, не поддерживаемых вашей " +"конфигурацией системы. Вы можете продолжать использовать этот бэкэнд, но при " +"этом вы столкнетесь с графические артефакты в некоторых играх.\n" +"\n" +"Вы действительно хотите перейти на Direct3D 11? Если не уверены, выберите " +"\"Нет\"." #: Source/Core/DiscIO/VolumeVerifier.cpp:601 msgid "The H3 hash table for the {0} partition is not correct." @@ -12030,6 +12372,9 @@ msgid "" "Card, the Wii System Menu will not launch it anymore and will also refuse to " "copy or move it back to the NAND." msgstr "" +"TMD подписан неправильно. Если переместить или скопировать эту игру на SD-" +"карту, системное меню Wii больше не будет запускать её, а также не позволит " +"скопировать или переместить её обратно на NAND." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" @@ -12042,6 +12387,10 @@ msgid "" "slower it will be to update.

If unsure, leave this " "at 1000ms." msgstr "" +"Количество времени, используемое счётчиками FPS и VPS для выборки." +"

Чем больше значение, тем стабильнее будет счётчик FPS/VPS, но тем " +"медленнее он будет обновляться.

Если вы не уверены, " +"оставьте значение 1000 мс." #: Source/Core/DiscIO/VolumeVerifier.cpp:467 msgid "The channel partition is missing." @@ -12084,6 +12433,9 @@ msgid "" "\n" "Please select another destination path for \"%1\"" msgstr "" +"Файл назначения не может быть таким же, как исходный файл\n" +"\n" +"Выберите другой путь назначения для «%1»" #: Source/Core/Core/Movie.cpp:362 msgid "" @@ -12106,6 +12458,8 @@ msgid "" "The emulated NAND is damaged. System titles such as the Wii Menu and the Wii " "Shop Channel may not work correctly." msgstr "" +"Эмулированная NAND повреждена. Такие системные элементы, как меню Wii и " +"канал магазина Wii, могут работать некорректно." #: Source/Core/DolphinQt/WiiUpdate.cpp:34 msgid "The emulated Wii console has been updated." @@ -12119,7 +12473,7 @@ msgstr "Эмулируемой консоли Wii не требуется обн #. interface (physical) like a serial number. "MAC" should be kept in translations. #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:137 msgid "The entered MAC address is invalid." -msgstr "" +msgstr "Введён недопустимый MAC-адрес." #. i18n: Here, PID means Product ID (for a USB device). #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 @@ -12160,6 +12514,8 @@ msgid "" "The file associated to this file was closed! Did you clear the slot before " "saving?" msgstr "" +"Файл, связанный с этим файлом, был закрыт. Вы очистили слот перед " +"сохранением?" #: Source/Core/AudioCommon/WaveFile.cpp:60 msgid "" @@ -12179,6 +12535,9 @@ msgid "" "cards. Please rename this file to either %2, %3, or %4, matching the region " "of the save files that are on it." msgstr "" +"Имя файла %1 не соответствует формату кодов регионов Dolphin для карт " +"памяти. Переименуйте этот файл в %2, %3 или %4 в зависимости от региона " +"файлов, которые он содержит." #: Source/Core/DiscIO/VolumeVerifier.cpp:431 msgid "The filesystem is invalid or could not be read." @@ -12190,6 +12549,9 @@ msgid "" "folders. Please rename this folder to either %2, %3, or %4, matching the " "region of the save files that are in it." msgstr "" +"Папка %1 не соответствует формату кодов регионов Dolphin для папок GCI. " +"Переименуйте эту папку в %2, %3 или %4 в зависимости от региона файлов, " +"которые он содержит." #: Source/Core/DiscIO/VolumeVerifier.cpp:781 msgid "" @@ -12268,13 +12630,15 @@ 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 "" "The last time the figure has been reset. If the figure has never been reset, " "the first time the figure was placed on a portal" msgstr "" +"Последний раз, когда фигурка была сброшена. Если фигурка никогда не " +"сбрасывалась, то первый раз, когда фигурка была размещена на портале" #: Source/Core/Core/HW/EXI/EXI.cpp:50 msgid "" @@ -12283,6 +12647,10 @@ msgid "" "sync properly, please change the selected device to Memory Card or GCI " "Folder." msgstr "" +"Ролик показывает, что карта памяти должна быть вставлена в {0:n}, но в " +"данный момент она не вставлена (вместо неё вставлена {1}). Чтобы ролик " +"синхронизировался правильно, измените выбранное устройство на карту памяти " +"или папку GCI." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" @@ -12291,6 +12659,7 @@ msgstr "" #: 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 @@ -12319,11 +12688,15 @@ msgstr "Полученный расшифрованный AR-код не сод 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 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" +"Одна и та же папка не может использоваться в нескольких слотах; она уже " +"используется %1." #: Source/Core/Core/NetPlayClient.cpp:287 msgid "The server and client's NetPlay versions are incompatible." @@ -12364,6 +12737,8 @@ 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 "" +"Зарезервированная системой часть NAND содержит блоки (%1) данных (%2 КиБ), " +"из максимально допустимых %3 (%4 КиБ)." #: Source/Core/DolphinQt/GCMemcardManager.cpp:544 msgid "The target memory card already contains a file \"%1\"." @@ -12376,11 +12751,11 @@ msgstr "Билет некорректно подписан." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:180 msgid "The total time this figure has been used inside a game in seconds" -msgstr "" +msgstr "Общее время использования этой фигурки в игре в секундах" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:174 msgid "The toy code for this figure. Only available for real figures." -msgstr "" +msgstr "Код игрушки для этой фигурки. Доступен только для настоящих фигурок." #: Source/Core/DiscIO/VolumeVerifier.cpp:523 msgid "The type of a partition could not be read." @@ -12389,15 +12764,17 @@ msgstr "Не удалось прочитать тип раздела." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:85 msgid "The type of this Skylander does not have any data that can be modified!" msgstr "" +"Тип этого скайлендера не содержит данных, которые можно было бы изменить." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:92 msgid "The type of this Skylander is unknown!" -msgstr "" +msgstr "Тип этого скайлендера неизвестен." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" msgstr "" +"Тип этого скайлендера неизвестен или не может быть изменён в настоящее время." #: Source/Core/DolphinQt/WiiUpdate.cpp:60 msgid "" @@ -12425,6 +12802,8 @@ 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 "" +"Доступная пользователю часть вашей NAND содержит блоки (%1) данных (%2 КиБ), " +"из максимально допустимых %3 (%4 КиБ)." #: Source/Core/DiscIO/VolumeVerifier.cpp:643 msgid "The {0} partition does not have a valid file system." @@ -12452,6 +12831,9 @@ msgid "" "\n" "Do you want to save before closing?" msgstr "" +"В «%1» есть несохранённые изменения.\n" +"\n" +"Сохранить изменения перед закрытием?" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 @@ -12502,7 +12884,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" -msgstr "" +msgstr "Этот тип скайлендера пока не может быть изменён." #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." @@ -12529,6 +12911,8 @@ msgid "" "This build of Dolphin is not natively compiled for your CPU.\n" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" +"Эта сборка Dolphin не скомпилирована для вашего процессора.\n" +"Запустите сборку Dolphin для ARM64 для наилучшей работы." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 @@ -12599,11 +12983,11 @@ 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." -msgstr "" +msgstr "Этот файл не содержит корректной файловой системы Wii." #: Source/Core/DiscIO/NANDImporter.cpp:55 msgid "This file does not look like a BootMii NAND backup." @@ -12788,7 +13172,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 msgid "Timed Out" -msgstr "" +msgstr "Время ожидания истекло" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 @@ -12907,7 +13291,7 @@ msgstr "Вертикальная стереопара" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Total Hits" -msgstr "" +msgstr "Всего достижений" #. i18n: Refers to an amount of rotational movement about the "pitch" axis. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:55 @@ -12944,7 +13328,7 @@ msgstr "Тач-панель" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:121 msgid "Toy code:" -msgstr "" +msgstr "Код игрушки:" #: Source/Core/DiscIO/Enums.cpp:101 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 @@ -12954,18 +13338,18 @@ msgstr "Традиц. китайский" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420 msgid "Trap" -msgstr "" +msgstr "Ловушка" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:409 msgid "Trap Master" -msgstr "" +msgstr "Мастер ловушек" #. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries #. it was released in. It was not released in Japan. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:271 msgid "Trap Team" -msgstr "" +msgstr "Команда ловушек" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 @@ -12990,7 +13374,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:101 msgid "Triforce AM Baseboard" -msgstr "" +msgstr "Системная плата Triforce AM" #: Source/Core/Core/HW/GCPadEmu.h:60 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:222 @@ -13004,7 +13388,7 @@ msgstr "Рычажки" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" -msgstr "" +msgstr "Трофей" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 @@ -13015,11 +13399,11 @@ msgstr "Тип" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:205 msgid "Type-based Alignment" -msgstr "" +msgstr "Выравнивание по типу" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49 msgid "Typical GameCube/Wii Address Space" -msgstr "" +msgstr "Обычное адресное пространство GameCube/Wii" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "UNKNOWN" @@ -13031,15 +13415,15 @@ msgstr "США" #: Source/Core/DolphinQt/Config/Mapping/HotkeyUSBEmu.cpp:21 msgid "USB Device Emulation" -msgstr "" +msgstr "Эмуляция устройства USB" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "USB Emulation" -msgstr "" +msgstr "Эмуляция USB" #: Source/Core/Core/HotkeyManager.cpp:361 msgid "USB Emulation Devices" -msgstr "" +msgstr "Устройства эмуляции USB" #: Source/Core/Core/HW/EXI/EXI_Device.h:102 msgid "USB Gecko" @@ -13095,19 +13479,19 @@ msgstr "Не удалось автоматически обнаружить мо #: Source/Core/UICommon/AutoUpdate.cpp:204 msgid "Unable to contact update server." -msgstr "" +msgstr "Не удалось подключиться к серверу обновлений." #: Source/Core/UICommon/AutoUpdate.cpp:276 msgid "Unable to create updater copy." -msgstr "" +msgstr "Не удалось создать копию средства обновления." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" -msgstr "" +msgstr "Не удалось изменить Skylander." #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." -msgstr "" +msgstr "Не удалось открыть файл." #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:150 msgid "" @@ -13135,11 +13519,11 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:714 msgid "Unable to read file." -msgstr "" +msgstr "Не удалось прочитать файл." #: Source/Core/UICommon/AutoUpdate.cpp:281 msgid "Unable to set permissions on updater copy." -msgstr "" +msgstr "Не удалось установить разрешения для копии средства обновления." #: Source/Core/DiscIO/NANDImporter.cpp:297 msgid "Unable to write to file {0}" @@ -13158,7 +13542,7 @@ msgstr "Несжатые образы GC/Wii (*.iso *.gcm)" #. https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349 msgid "Undead" -msgstr "" +msgstr "Нежить" #: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Undo Load State" @@ -13203,7 +13587,7 @@ msgstr "Неизвестно" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 msgid "Unknown (Id:%1 Var:%2)" -msgstr "" +msgstr "Неизвестно (Ид.:%1 Пер.:%2)" #: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 msgid "Unknown DVD command {0:08x} - fatal error" @@ -13211,7 +13595,7 @@ msgstr "Неизвестная команда DVD {0:08x} - критическа #: Source/Core/Core/NetPlayClient.cpp:1334 msgid "Unknown SYNC_CODES message received with id: {0}" -msgstr "" +msgstr "Получено неизвестное сообщение SYNC_CODES с идентификатором: {0}" #: Source/Core/Core/NetPlayServer.cpp:1239 msgid "" @@ -13235,19 +13619,19 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" -msgstr "" +msgstr "Неизвестный тип скайлендера." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" -msgstr "" +msgstr "Неизвестное адресное пространство" #: Source/Core/DolphinQt/ResourcePackManager.cpp:120 msgid "Unknown author" -msgstr "" +msgstr "Неизвестный автор" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:173 msgid "Unknown data type" -msgstr "" +msgstr "Неизвестный тип данных" #: Source/Core/DiscIO/VolumeVerifier.cpp:357 msgid "Unknown disc" @@ -13277,12 +13661,12 @@ msgstr "Получено неизвестное сообщение с id: {0} о #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:537 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:621 msgid "Unknown(%1 %2).sky" -msgstr "" +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 msgid "Unknown(%1).bin" -msgstr "" +msgstr "Неизвестный(%1).bin" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 msgid "Unlimited" @@ -13298,19 +13682,19 @@ msgstr "Разблок. курсор" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 msgid "Unlocked" -msgstr "" +msgstr "Разблокировано" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 msgid "Unlocked %1 times this session" -msgstr "" +msgstr "Разблокировано %1 раз(а) в этом сеансе" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 msgid "Unlocked (Casual)" -msgstr "" +msgstr "Разблокировано (казуальная игра)" #: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 msgid "Unlocked this session" -msgstr "" +msgstr "Разблокировано в этом сеансе" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13319,22 +13703,22 @@ 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 msgid "Unsigned 16" -msgstr "" +msgstr "16-разрядное число без знака" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:194 msgid "Unsigned 32" -msgstr "" +msgstr "32-разрядное число без знака" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:141 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:192 msgid "Unsigned 8" -msgstr "" +msgstr "8-разрядное число без знака" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Unsigned Integer" @@ -13415,10 +13799,12 @@ msgstr "Настройки отправки статистики об испол #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:81 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 msgid "Use All Wii Save Data" -msgstr "" +msgstr "Использовать все данные сохранений Wii" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 msgid "Use Built-In Database of Game Names" @@ -13430,7 +13816,7 @@ msgstr "Использовать кодек без потерь (FFV1)" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" -msgstr "" +msgstr "Использовать наведение с помощью мыши" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" @@ -13490,10 +13876,14 @@ msgid "" "You can use them to save or retrieve values between\n" "inputs and outputs of the same parent controller." msgstr "" +"Определяемые пользователем переменные, используемые в управляющем " +"выражении.\n" +"Вы можете использовать их для сохранения и извлечения значений между\n" +"входами и выходами одного и того же родительского контроллера." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 msgid "Username" -msgstr "" +msgstr "Имя пользователя" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -13533,7 +13923,7 @@ msgstr "Используется Qt %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1044 msgid "Using TTL %1 for probe packet" -msgstr "" +msgstr "Использование TTL %1 для тестового пакета" #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:597 msgid "Usually used for light objects" @@ -13565,7 +13955,7 @@ msgstr "Вертикальная синхронизация" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:113 msgid "VBI Skip" -msgstr "" +msgstr "Пропускать VBI" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:126 msgid "Value" @@ -13573,7 +13963,7 @@ msgstr "Значение" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:712 msgid "Value tracked to current instruction." -msgstr "" +msgstr "Значение, отслеживаемое в текущей инструкции." #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:157 msgid "Value:" @@ -13581,17 +13971,17 @@ msgstr "Значение:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Variant entered is invalid!" -msgstr "" +msgstr "Введён недопустимый вариант." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:577 msgid "Variant:" -msgstr "" +msgstr "Вариант:" #. i18n: One of the figure types in the Skylanders games. For official translations #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418 msgid "Vehicle" -msgstr "" +msgstr "Транспортное средство" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:36 msgid "Velocity" @@ -13750,7 +14140,7 @@ msgstr "WASAPI (Эксклюзивный режим)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:231 msgid "WFS Path:" -msgstr "" +msgstr "Путь к WFS:" #: Source/Core/DolphinQt/ConvertDialog.cpp:353 msgid "WIA GC/Wii images (*.wia)" @@ -13820,6 +14210,9 @@ msgid "" "Warning: A GCI folder override path is currently configured for this slot. " "Adjusting the GCI path here will have no effect." msgstr "" +"Предупреждение: в настоящее время для этого слота настроен путь " +"переопределения папки GCI. Изменение пути к GCI здесь не будет иметь " +"никакого эффекта." #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 msgid "" @@ -13914,7 +14307,7 @@ msgstr "Наблюдение" #. in other languages, check the SuperChargers manual at https://support.activision.com/manuals #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330 msgid "Water" -msgstr "" +msgstr "Вода" #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Website" diff --git a/Languages/po/sr.po b/Languages/po/sr.po index 1267716314e6..0dddc086a000 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1076,7 +1076,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1366,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1426,7 +1426,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1595,7 +1595,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1619,7 +1619,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2290,7 +2290,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2636,7 +2636,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2951,7 +2951,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2959,7 +2959,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2968,7 +2968,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2993,7 +2993,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3593,7 +3593,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4473,7 +4473,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4507,7 +4507,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5715,7 +5715,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5725,7 +5725,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6275,7 +6275,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6944,7 +6944,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7139,7 +7139,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7724,7 +7724,7 @@ msgstr "" msgid "Maker:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8645,7 +8645,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8964,7 +8964,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9281,7 +9281,7 @@ msgstr "" msgid "Red Right" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10219,7 +10219,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11039,7 +11039,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11236,7 +11236,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11394,7 +11394,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/sv.po b/Languages/po/sv.po index 2be0f630a2dc..c3cecfef967e 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1116,7 +1116,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1442,7 +1442,7 @@ msgstr "Adressutrymme enligt CPU:ns tillstånd" msgid "Address:" msgstr "Adress:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1521,7 +1521,7 @@ msgstr "Avancerat" msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1692,7 +1692,7 @@ msgstr "Vinkel" msgid "Angular velocity to ignore and remap." msgstr "Vinkelhastighet att ignorera samt skala med." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Kantutjämning" @@ -1716,7 +1716,7 @@ msgstr "Lägg till i &existerande signaturfil..." msgid "Appl&y Signature File..." msgstr "Appli&cera signaturfil..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2409,7 +2409,7 @@ msgstr "" msgid "Calculate" msgstr "Beräkna" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2779,7 +2779,7 @@ msgstr "Kod:" msgid "Codes received!" msgstr "Koder mottagna!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Färgkorrigering" @@ -3094,7 +3094,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3106,7 +3106,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3121,7 +3121,7 @@ msgstr "" "

Om du är osäker kan du välja Ursprunglig." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3154,7 +3154,7 @@ msgstr "" "Styr vilken DSP-emulering som ska användas; hög eller låg nivå. Förval är " "Sant" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Konvergens" @@ -3808,7 +3808,7 @@ msgstr "Radera valda filer..." msgid "Delete the existing file '{0}'?" msgstr "Radera den existerande filen '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Djup" @@ -3994,7 +3994,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:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4749,7 +4749,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4791,7 +4791,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:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6079,7 +6079,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:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6089,7 +6089,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6676,7 +6676,7 @@ msgstr "Växla grafikalternativ" msgid "Graphics mods are currently disabled." msgstr "Grafikmoddar är avstängda." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7436,7 +7436,7 @@ msgstr "" "{1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Intern upplösning" @@ -7631,7 +7631,7 @@ msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters av" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8240,7 +8240,7 @@ msgstr "Skapare" msgid "Maker:" msgstr "Skapare:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9204,7 +9204,7 @@ msgstr "Annat spel..." msgid "Output" msgstr "Utdata" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9530,7 +9530,7 @@ msgstr "" "Möjlig desynkronisation upptäcktes: %1 kan ha desynkroniserat under bildruta " "%2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "Efterbehandlingseffekt" @@ -9861,7 +9861,7 @@ msgstr "Röd vänster" msgid "Red Right" msgstr "Röd höger" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10826,7 +10826,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11708,7 +11708,7 @@ msgstr "Stega" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "Läge för stereoskopisk 3D" @@ -11915,7 +11915,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12081,7 +12081,7 @@ msgstr "Texturcachenoggrannhet" msgid "Texture Dumping" msgstr "Texturdumpning" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "Texturfiltrering" @@ -14615,7 +14615,7 @@ msgstr "fake-completion" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 msgid "false" -msgstr "" +msgstr "false" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -14692,7 +14692,7 @@ msgstr "följande värde:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 msgid "true" -msgstr "" +msgstr "true" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 diff --git a/Languages/po/tr.po b/Languages/po/tr.po index e64de273e051..5360abae0d96 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -1122,7 +1122,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:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1447,7 +1447,7 @@ msgstr "CPU durumuna göre adres alanı" msgid "Address:" msgstr "Adres:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1533,7 +1533,7 @@ msgstr "Gelişmiş" msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1704,7 +1704,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:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "Kenar Yumuşatma" @@ -1728,7 +1728,7 @@ msgstr "&Mevcut İmza Dosyasına Ekle..." msgid "Appl&y Signature File..." msgstr "İmza Dosyasını &Uygula..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2421,7 +2421,7 @@ msgstr "" msgid "Calculate" msgstr "Hesapla" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2787,7 +2787,7 @@ msgstr "Code:" msgid "Codes received!" msgstr "Kodlar alındı!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "Renk Düzeltme" @@ -3161,7 +3161,7 @@ msgstr "" "

Emin değilsen, bunu 203'te bırak." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3172,7 +3172,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:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3186,7 +3186,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:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3221,7 +3221,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:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "Yakınsama" @@ -3887,7 +3887,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:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "Derinlik" @@ -4073,7 +4073,7 @@ msgstr "" "yukarı ölçeklendirmeyi engeller.

Emin değilseniz, " "bunu işaretlemeyin." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4870,7 +4870,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:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4924,7 +4924,7 @@ msgstr "" "

Emin değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -6191,7 +6191,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6201,7 +6201,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6751,7 +6751,7 @@ msgstr "Grafik Geçişleri" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7420,7 +7420,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Dahili Çözünürlük" @@ -7615,7 +7615,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -8203,7 +8203,7 @@ msgstr "" msgid "Maker:" msgstr "Yapımcı:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -9124,7 +9124,7 @@ msgstr "Diğer oyun..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -9443,7 +9443,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9762,7 +9762,7 @@ msgstr "Kırmızı Sol" msgid "Red Right" msgstr "Kırmızı Sağ" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10702,7 +10702,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11527,7 +11527,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11724,7 +11724,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11882,7 +11882,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "" diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index 649b2c63d23d..cf5090f6f262 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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/" @@ -180,7 +180,7 @@ msgstr "%1 MB (内存2)" #. 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 "在 %2 前 %1 次提交" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -438,7 +438,7 @@ msgstr "控制器设置(&C)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 msgid "&Copy Address" -msgstr "" +msgstr "复制地址(&C)" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 msgid "&Copy address" @@ -575,7 +575,7 @@ msgstr "语言(&L):" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 msgid "&Load Branch Watch" -msgstr "" +msgstr "载入分支监视(&L)" #: Source/Core/DolphinQt/MenuBar.cpp:378 msgid "&Load State" @@ -680,7 +680,7 @@ msgstr "资源包管理器(&R)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 msgid "&Save Branch Watch" -msgstr "" +msgstr "保存分支监视(&S)" #: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "&Save Symbol Map" @@ -712,7 +712,7 @@ msgstr "线程(&T)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "&Tool" -msgstr "" +msgstr "工具(&T)" #: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "&Tools" @@ -1115,7 +1115,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "光盘已可插入。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1147,7 +1147,7 @@ msgstr "只有在 Wii 游戏运行时同步才能触发。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 msgid "A&uto Save" -msgstr "" +msgstr "自动保存(&U)" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1431,7 +1431,7 @@ msgstr "按 CPU 状态划分的地址空间" msgid "Address:" msgstr "地址:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1509,7 +1509,7 @@ msgstr "高级" msgid "Advanced Settings" msgstr "高级设置" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1531,6 +1531,20 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"影响游戏画面缩放到窗口分辨率的方式。
性能主要取决于每个方式使用的样本数。" +"
与 SSAA 相比,如果输出窗口
分辨率不是模拟分辨率的倍数,重采样将非常有" +"用。

默认 - [最快]
使用未进行伽玛校正的 GPU 内部双线性采样" +"器。
如果强制启用伽玛校正,则可能忽略此设置。

双线性 - [4 样" +"本数]
经过伽玛校正后像素间的线性插值。

双三次插值 - [16 样本" +"数]
经过伽玛校正后像素间的三次插值。
在接近目的分辨率时缩放效果良好。" +"如 1080p 和 1440p。
其他方式:
B样条曲线:模糊,但能避免伪影" +"
Mitchell-Netravali 过滤:在模糊与伪影间取得良好平衡
Catmull-" +"Rom 插值:画面更锐利,但可能导致伪影

锐利双线性 - [1-4 样本" +"数]
与近邻取样类似,保持清晰锐利的画面,
但进行了一些混合以避免闪烁。" +"
适用于低分辨率下的 2D 游戏。

区域取样 - [最高 324 样本" +"数]
按像素所占面积的百分比对像素进行加权。经伽玛校正。
适用于缩放倍数" +"在 2 倍以上的场合。

如无法确定,请选择“默认”。" #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1680,7 +1694,7 @@ msgstr "角度" msgid "Angular velocity to ignore and remap." msgstr "要忽略并重新映射的角速度。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "抗锯齿" @@ -1704,7 +1718,7 @@ msgstr "附加到现有签名文件...(&E)" msgid "Appl&y Signature File..." msgstr "应用签名文件...(&Y)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1754,16 +1768,16 @@ msgstr "区域取样" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" -msgstr "长宽比" +msgstr "宽高比" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "宽高比已校正的内部分辨率" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" -msgstr "长宽比:" +msgstr "宽高比:" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" @@ -1900,7 +1914,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "BBA 目标地址" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -2060,6 +2074,10 @@ msgid "" "\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 @@ -2122,71 +2140,71 @@ msgstr "底部" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 msgid "Branch" -msgstr "" +msgstr "分支" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 msgid "Branch (LR saved)" -msgstr "" +msgstr "分支(LR 已保存)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 msgid "Branch Conditional" -msgstr "" +msgstr "条件分支" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 msgid "Branch Conditional (LR saved)" -msgstr "" +msgstr "条件分支(LR 已保存)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch Conditional to Count Register" -msgstr "" +msgstr "条件分支到计数寄存器" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "条件分支到计数寄存器(LR 已保存)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch Conditional to Link Register" -msgstr "" +msgstr "条件分支到链接寄存器" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "条件分支到链接寄存器(LR 已保存)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Not Overwritten" -msgstr "" +msgstr "分支未被覆盖" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch Type" -msgstr "" +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 "分支监视" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "分支监视工具" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "分支监视工具帮助 (1/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "分支监视工具帮助 (2/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "分支监视工具帮助 (3/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "分支监视工具帮助 (4/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 msgid "" @@ -2204,6 +2222,14 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"分支监视是一种代码搜索工具,可以通过测试简单标准的候选分支来隔离模拟 CPU 所跟" +"踪的分支。如果您熟悉 Cheat Engine 的 Ultimap,那么分支监视与此类似。\n" +"\n" +"按下“开始分支监视”按钮以激活分支监视。分支监视在模拟会话中持续存在,并且可以" +"将进度快照保存到用户目录或从用户目录加载,以便在 Dolphin 模拟器关闭后保留进" +"度。“另存为...”和“加载自...”操作也可使用,并且可以启用自动保存使得在搜索的每" +"一步都能保存快照。“暂停分支监视”按钮将中止分支监视跟踪进一步的分支命中,直到" +"被告知恢复。按下“清除分支监视”按钮可清除所有候选数据并返回黑名单阶段。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 msgid "" @@ -2214,22 +2240,26 @@ 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 "" +"分支监视从黑名单阶段开始,这意味着尚未选择任何候选数据,但可以通过按“代码路径" +"未采用”、“分支已被覆盖”和“分支未被覆盖”按钮将迄今为止发现的候选记录排除在候选" +"资格之外 。一旦按下“代码路径已采用”按钮后,分支监视将切换到缩减阶段,并且表格" +"将填充所有符合条件的候选数据。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch to Count Register" -msgstr "" +msgstr "分支到计数寄存器" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Count Register (LR saved)" -msgstr "" +msgstr "分支到计数寄存器(LR 已保存)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "分支到链接寄存器" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "分支到链接寄存器(LR 已保存)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2264,7 +2294,7 @@ msgstr "宽带适配器 (HLE)" #: Source/Core/Core/HW/EXI/EXI_Device.h:100 msgid "Broadband Adapter (TAP)" -msgstr "宽带适配器 (TAP)" +msgstr "宽带适配器 (分接)" #: Source/Core/Core/HW/EXI/EXI_Device.h:105 msgid "Broadband Adapter (XLink Kai)" @@ -2272,7 +2302,7 @@ msgstr "宽带适配器 (XLink Kai)" #: Source/Core/Core/HW/EXI/EXI_Device.h:106 msgid "Broadband Adapter (tapserver)" -msgstr "宽带适配器(tap 服务器)" +msgstr "宽带适配器 (分接服务器)" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:83 msgid "Broadband Adapter DNS setting" @@ -2390,7 +2420,7 @@ msgstr "" msgid "Calculate" msgstr "计算" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2477,15 +2507,15 @@ msgstr "取消校准" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 msgid "Candidates: %1" -msgstr "" +msgstr "候选: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "候选: %1 | 排除: %2 | 剩余: %3" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 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." @@ -2699,7 +2729,7 @@ msgstr "清除" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 msgid "Clear Branch Watch" -msgstr "" +msgstr "清除分支监视" #: Source/Core/DolphinQt/MenuBar.cpp:913 msgid "Clear Cache" @@ -2732,11 +2762,11 @@ msgstr "代码" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Not Taken" -msgstr "" +msgstr "代码路径未采用" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Code Path Was Taken" -msgstr "" +msgstr "代码路径已采用" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2746,7 +2776,7 @@ msgstr "代码:" msgid "Codes received!" msgstr "代码已接收!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "色彩校正" @@ -2764,7 +2794,7 @@ msgstr "色彩空间" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 msgid "Column &Visibility" -msgstr "" +msgstr "表列可见性(&V)" #: Source/Core/DolphinQt/MenuBar.cpp:1054 msgid "Combine &Two Signature Files..." @@ -2822,7 +2852,7 @@ msgstr "压缩:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 msgid "Cond." -msgstr "" +msgstr "条件。" #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. @@ -3108,7 +3138,7 @@ msgstr "" "明条件进行亮度调整。

此设置需要 HDR 输出才能生效。" "

如无法确定,请将其保持为 203。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -3118,7 +3148,7 @@ msgstr "" "控制会聚平面的距离。即虚拟物体看起来出现在屏幕前方的距离。

数值越高凸" "出屏幕效果越强,而数值越低观感会越舒适。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3130,7 +3160,7 @@ msgstr "" "GPU 负荷且可能在一些游戏中引起故障。一般而言,内部分辨率越低,性能将越高。" "

如无法确定,请选择“原生”。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3158,7 +3188,7 @@ msgid "" "True" msgstr "控制使用高级还是低级 DSP 模拟。默认值为 True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "会聚" @@ -3306,7 +3336,7 @@ msgstr "核心" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 msgid "Core is uninitialized." -msgstr "" +msgstr "核心未初始化。" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3494,8 +3524,8 @@ msgid "" "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." "

If unsure, leave this unchecked." msgstr "" -"将图像由原生长宽比(很少情况下与 4:3 或 16:9 完全匹配)裁切为用户特定的目标长" -"宽比(例如 4:3 或 16:9)。

如无法确定,请不要选中此" +"将图像由原生宽高比(很少情况下与 4:3 或 16:9 完全匹配)裁切为用户特定的目标宽" +"高比(例如 4:3 或 16:9)。

如无法确定,请不要选中此" "项。" #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:82 @@ -3542,7 +3572,7 @@ msgstr "自定义" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" -msgstr "" +msgstr "自定义(拉伸)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" @@ -3550,15 +3580,15 @@ msgstr "自定义地址空间" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "自定义长宽比宽度" +msgstr "自定义宽高比高度" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "自定义长宽比长度" +msgstr "自定义宽高比宽度" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "自定义长宽比:" +msgstr "自定义宽高比:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3801,7 +3831,7 @@ msgstr "删除所选文件..." msgid "Delete the existing file '{0}'?" msgstr "删除已经存在的文件 ‘{0}’ 吗?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "深度" @@ -3835,29 +3865,29 @@ msgstr "说明:%1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 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 msgid "Destination Max" -msgstr "" +msgstr "目标最大" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 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 msgid "Destination Symbol" -msgstr "" +msgstr "目标符号" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 msgid "Detached" @@ -3984,7 +4014,7 @@ msgstr "" "禁用 VRAM 中的 EFB 副本,而强制从 RAM 中读取。所有放大将不可用。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4588,7 +4618,7 @@ msgstr "" #: Source/Core/DolphinQt/MenuBar.cpp:924 msgid "Enable JIT Block Profiling" -msgstr "" +msgstr "启用 JIT 区块分析" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Leaderboards" @@ -4740,7 +4770,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "启用浮点结果标记运算,一些游戏需要。(开 = 兼容,关 = 快速)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4787,7 +4817,7 @@ msgstr "" "启用逐行扫描模拟支持该特性的软件。对多数游戏无任何影响。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4925,7 +4955,7 @@ msgstr "输入要使用的 DNS 服务器:" msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." -msgstr "" +msgstr "输入要连接的分接服务器实例 IP 地址和端口。" #: Source/Core/DolphinQt/MenuBar.cpp:1359 msgid "Enter the RSO module address:" @@ -5335,7 +5365,7 @@ msgstr "清除 Skylander 失败!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "清除插槽 %1 的 Skylander 失败!" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5377,6 +5407,10 @@ msgid "" "\n" "The Skylander may already be on the portal." msgstr "" +"创建 Skylander 文件失败:\n" +"%1\n" +"\n" +"此 Skylander 可能已在传送门上。" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5444,7 +5478,7 @@ msgstr "无法找到一个或多个 D3D 符号" #: Source/Core/DolphinQt/GCMemcardManager.cpp:566 msgid "Failed to import \"%1\"." -msgstr "导入 \"%1\" 失败。" +msgstr "导入 “%1” 失败。" #: Source/Core/DolphinQt/MenuBar.cpp:1161 msgid "" @@ -5525,6 +5559,8 @@ msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"载入 Skylander 文件失败:\n" +"%1" #: Source/Core/Core/Boot/Boot.cpp:585 msgid "Failed to load the executable to memory." @@ -5542,11 +5578,11 @@ msgstr "修改 Skylander 失败!" #: Source/Core/DolphinQt/MenuBar.cpp:215 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "打开 “%1” 进行写入失败。" #: Source/Android/jni/MainAndroid.cpp:428 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "打开 “{0}” 进行写入失败。" #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/MainWindow.cpp:1722 @@ -5560,7 +5596,7 @@ msgstr "打开蓝牙设备失败: {0} " #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "打开分支监视快照 “%1” 失败" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5605,6 +5641,10 @@ msgid "" "\n" "The file may already be in use on the base." msgstr "" +"打开 Infinity 文件失败:\n" +"%1\n" +"\n" +"此文件可能已在底座上。" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 msgid "Failed to open the Skylander file!" @@ -5617,10 +5657,14 @@ msgid "" "\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\"." -msgstr "打开输入文件 \"%1\" 失败。" +msgstr "打开输入文件 “%1” 失败。" #: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58 #: Source/Core/DiscIO/WIABlob.cpp:2043 @@ -5670,6 +5714,10 @@ msgid "" "\n" "The file was too small." msgstr "" +"读取 Infinity 文件 (%1) 失败:\n" +"%1\n" +"\n" +"文件过小。" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 msgid "Failed to read the Skylander file!" @@ -5682,12 +5730,18 @@ msgid "" "\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 msgid "Failed to read {0}" @@ -5703,7 +5757,7 @@ msgid "" "\n" "Would you like to convert it without removing junk data?" msgstr "" -"从文件 \"%1\" 中移除垃圾数据失败。\n" +"从文件 “%1” 中移除垃圾数据失败。\n" "\n" "是否要在不移除垃圾数据的情况下进行转换?" @@ -5725,7 +5779,7 @@ msgstr "重置联机重定向文件夹失败。请验证你的写入权限。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 msgid "Failed to save Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "保存分支监视快照 “%1” 失败" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 msgid "Failed to save FIFO log." @@ -6053,7 +6107,7 @@ msgstr "已强制关闭,因为 %1 不支持顶点着色器扩展。" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "已强制打开,因为 %1 不支持几何着色器。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -6062,12 +6116,12 @@ msgid "" "available.

If unsure, leave this unchecked." msgstr "" -"通过不拉伸图像扩展视锥体,强制游戏以任意长宽比输出图形。
这是一种破坏性修" -"改,其结果会因游戏而异(通常会导致 UI 拉伸)。
游戏特定的 AR/Gecko 码长宽" -"比补丁如有效则推荐用长宽比补丁。

如无法确定,请不要" +"通过不拉伸图像扩展视锥体,强制游戏以任意宽高比输出图形。
这是一种破坏性修" +"改,其结果会因游戏而异(通常会导致 UI 拉伸)。
游戏特定的 AR/Gecko 码宽高" +"比补丁如有效则推荐用宽高比补丁。

如无法确定,请不要" "选中此选项。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 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,7 +6149,7 @@ msgstr "转发端口(UPnP)" #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 msgid "Found %1 results for \"%2\"" -msgstr "已找到 \"%2\" 的 %1 个结果 " +msgstr "已找到 “%2” 的 %1 个结果 " #: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format @@ -6264,7 +6318,7 @@ msgstr "GBA 窗口大小" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 msgid "GBA%1 ROM changed to \"%2\"" -msgstr "GBA%1 ROM 更改为 \"%2\"" +msgstr "GBA%1 ROM 更改为 “%2”" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 msgid "GBA%1 ROM disabled" @@ -6449,7 +6503,7 @@ msgstr "游戏状态" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 msgid "Game changed to \"%1\"" -msgstr "游戏更改为 \"%1\"" +msgstr "游戏更改为 “%1”" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "" @@ -6579,7 +6633,7 @@ msgstr "常规和选项" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "生成 Action Replay 代码" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 msgid "Generate a New Statistics Identity" @@ -6587,7 +6641,7 @@ msgstr "生成一个新的统计标识" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 msgid "Generated AR code(s)." -msgstr "" +msgstr "已生成 AR 代码。" #: Source/Core/DolphinQt/MenuBar.cpp:1337 msgid "Generated symbol names from '%1'" @@ -6649,7 +6703,7 @@ msgstr "图形切换" msgid "Graphics mods are currently disabled." msgstr "图形模组当前已禁用。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6754,7 +6808,7 @@ msgstr "隐藏" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 msgid "Hide &Controls" -msgstr "" +msgstr "隐藏控件(&C)" #: Source/Core/DolphinQt/MenuBar.cpp:758 msgid "Hide All" @@ -7027,7 +7081,7 @@ msgstr "忽略" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "忽略应用加载器分支命中(&A)" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7253,15 +7307,15 @@ msgstr "要忽略并重新映射的输入力度。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 msgid "Insert &BLR" -msgstr "" +msgstr "插入 BLR (&B)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 msgid "Insert &BLR at start" -msgstr "" +msgstr "在开头插入 BLR (&B)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 msgid "Insert &NOP" -msgstr "" +msgstr "插入 NOP (&N)" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "Insert &nop" @@ -7382,7 +7436,7 @@ msgid "" msgstr "内部 LZO 错误 - 无法解析解压缩的版本字符串 ({0} / {1})" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "内部分辨率" @@ -7446,7 +7500,7 @@ msgstr "无效主机" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:256 msgid "Invalid input for the field \"%1\"" -msgstr "字段 \"%1\" 的输入无效" +msgstr "字段 “%1” 的输入无效" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 @@ -7577,7 +7631,7 @@ msgid "JIT SystemRegisters Off" msgstr "关闭 JIT 系统寄存器" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7587,7 +7641,7 @@ msgstr "" #: Source/Android/jni/MainAndroid.cpp:417 msgid "JIT is not active" -msgstr "" +msgstr "JIT 未激活" #: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Japan" @@ -7852,11 +7906,11 @@ msgstr "载入其他映射文件(&O)..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "载入分支监视...(&F)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "载入分支监视快照" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8181,7 +8235,7 @@ msgstr "制作者" msgid "Maker:" msgstr "制作者:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8310,7 +8364,7 @@ msgstr "其它设置" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 msgid "Misc. Controls" -msgstr "" +msgstr "其他控件" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8340,7 +8394,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "调制解调器适配器 (分接服务器)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 @@ -8434,7 +8488,7 @@ msgstr "影片 {0} 表示从一个保存状态开始播放,但 {1} 不存在 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 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 @@ -8875,51 +8929,51 @@ 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 msgid "Object Range" @@ -8969,6 +9023,13 @@ 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 msgid "Online &Documentation" @@ -9083,25 +9144,25 @@ msgstr "轨道式" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Origin" -msgstr "" +msgstr "起始" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 msgid "Origin Max" -msgstr "" +msgstr "起始最大" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 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 msgid "Origin Symbol" -msgstr "" +msgstr "起始符号" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 msgid "Origin and Destination" -msgstr "" +msgstr "起始和目标" #: Source/Core/Core/FreeLookManager.cpp:101 #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 @@ -9134,7 +9195,7 @@ msgstr "其他游戏..." msgid "Output" msgstr "输出" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "输出重采样" @@ -9254,7 +9315,7 @@ msgstr "暂停" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 msgid "Pause Branch Watch" -msgstr "" +msgstr "暂停分支监视" #: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Pause at End of Movie" @@ -9433,7 +9494,7 @@ 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 @@ -9457,7 +9518,7 @@ msgstr "传送门插槽" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "检测到可能的非同步异常: %1 或许已在帧 %2 处不同步 " -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "后处理效果" @@ -9690,7 +9751,7 @@ msgstr "Raw" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" -msgstr "" +msgstr "原始内部分辨率" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 msgid "Re&place instruction" @@ -9739,7 +9800,7 @@ msgstr "从联机中接收到无效的 Wii 遥控器数据。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Recent Hits" -msgstr "" +msgstr "最近命中" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 @@ -9779,7 +9840,7 @@ msgstr "红 左" msgid "Red Right" msgstr "红 右" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9965,7 +10026,7 @@ msgstr "重置所有保存的 Wii 遥控器配对" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" -msgstr "" +msgstr "分辨率类型:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10105,6 +10166,20 @@ msgid "" "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 @@ -10224,11 +10299,11 @@ msgstr "保存全部" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "另存分支监视为...(&A)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "保存分支监视快照" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 @@ -10492,7 +10567,7 @@ msgstr "选择" msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" -msgstr "" +msgstr "选择分支监视快照自动保存文件(在用户文件夹位置,可取消)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" @@ -10733,8 +10808,18 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"选择如何捕获帧转储(视频)和屏幕截图。
如果游戏或窗口分辨率在录制过程中发" +"生变化,可能会创建多个视频文件。
请注意,捕获始终会忽略色彩校正和裁剪。" +"

窗口分辨率:使用输出窗口分辨率(无黑边)。
这是一个简单的转" +"储选项,将大致捕获您所看到的图像。
宽高比校正内部分辨率:使用内部分" +"辨率(XFB 大小),并通过目标宽高比对其进行校正。
无论图像在录制过程中如何" +"显示,此选项都将始终以指定的内部分辨率进行转储。
原始内部分辨率:使" +"用内部分辨率(XFB 大小),而不进行目标宽高比校正。
这将提供干净的转储没有" +"任何宽高比校正,因此用户可以为外部编辑软件提供尽可能原始的输入源。" +"

如无法确定,请将其保留为“宽高比校正内部分辨率”。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10771,6 +10856,17 @@ 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 msgid "" @@ -11055,7 +11151,7 @@ msgstr "显示平台" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" -msgstr "" +msgstr "显示投影统计数据" #: Source/Core/DolphinQt/MenuBar.cpp:756 msgid "Show Regions" @@ -11225,6 +11321,8 @@ msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"显示各种投影统计数据。

如无法确定,请不要选中此项。" +"" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" @@ -11514,7 +11612,7 @@ msgstr "开始联机...(&N)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 msgid "Start Branch Watch" -msgstr "" +msgstr "开始分支监视" #: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" @@ -11604,7 +11702,7 @@ msgstr "步进" msgid "Stereo" msgstr "立体声" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "立体 3D 模式" @@ -11807,7 +11905,7 @@ msgstr "交换力量" msgid "Swapper" msgstr "交换者" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11955,7 +12053,7 @@ msgstr "测试" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "文本文件 (*.txt);;所有文件 (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -11970,7 +12068,7 @@ msgstr "纹理缓存精度" msgid "Texture Dumping" msgstr "转储纹理" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr "纹理过滤" @@ -12040,7 +12138,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "此 Skylander 拥有的金钱数量。介于 0 至 65000 之间" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" @@ -12086,6 +12184,8 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"默认值 “%1” 将与本地分接服务器 和 newserv 服务一起使用。 您还可以输入网络位置" +"(地址:端口)以连接到远程分接服务器。" #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12095,7 +12195,7 @@ msgid "" msgstr "" "目标文件不能与源文件相同\n" "\n" -"请为“ %1 ”选择另一个目标路径" +"请为 “%1” 选择另一个目标路径" #: Source/Core/Core/Movie.cpp:362 msgid "" @@ -12267,6 +12367,7 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"此 Skylander 的英雄等级。仅在《小龙斯派罗大冒险》中出场。介于 0 至 100 之间" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12304,7 +12405,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Skylander 的昵称。不能超过 15 个字符" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12468,14 +12569,14 @@ msgid "" "\n" "Do you want to save before closing?" msgstr "" -"\"%1\" 中有未保存的更改。\n" +"“%1” 中有未保存的更改。\n" "\n" "您要在关闭前保存吗?" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 msgid "There is nothing to save!" -msgstr "" +msgstr "没有需要保存的内容!" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -12666,7 +12767,7 @@ msgstr "这是一个正确的转储。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "这仅适用于模拟软件的初始启动。" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -12739,6 +12840,9 @@ msgid "" "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 "" @@ -12827,7 +12931,7 @@ 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 @@ -12888,7 +12992,7 @@ msgstr "标记化失败。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Tool Controls" -msgstr "" +msgstr "工具控件" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" @@ -14018,7 +14122,7 @@ msgstr "只要有活动窗口就把鼠标光标锁定到渲染部件。你可以 #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" -msgstr "" +msgstr "窗口分辨率" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 @@ -14027,11 +14131,11 @@ msgstr "窗口大小" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "擦除检验数据(&I)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Wipe Recent Hits" -msgstr "" +msgstr "擦除最近命中" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14048,7 +14152,7 @@ msgstr "写入" #: Source/Core/DolphinQt/MenuBar.cpp:931 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. @@ -14097,11 +14201,11 @@ msgstr "错误修订版" #: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "已写入 “%1”。" #: Source/Android/jni/MainAndroid.cpp:434 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 @@ -14313,7 +14417,7 @@ msgstr "Zero 3 代码不支持" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 msgid "Zero candidates remaining." -msgstr "" +msgstr "剩余候选项为零。" #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14378,7 +14482,7 @@ msgstr "伪完成" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 msgid "false" -msgstr "" +msgstr "假" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -14455,7 +14559,7 @@ msgstr "这个值:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 msgid "true" -msgstr "" +msgstr "真" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index 98e634dc1c60..e0efff902e03 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-22 08:41+0200\n" +"POT-Creation-Date: 2024-04-29 20:55+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-" @@ -1081,7 +1081,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:547 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1371,7 +1371,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:509 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1431,7 +1431,7 @@ msgstr "進階" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:516 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1600,7 +1600,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:621 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 msgid "Anti-Aliasing" msgstr "" @@ -1624,7 +1624,7 @@ msgstr "" msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -2295,7 +2295,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:558 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2641,7 +2641,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:630 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 msgid "Color Correction" msgstr "" @@ -2956,7 +2956,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 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 " @@ -2964,7 +2964,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2973,7 +2973,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -2998,7 +2998,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:658 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" msgstr "" @@ -3598,7 +3598,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:655 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 msgid "Depth" msgstr "" @@ -3777,7 +3777,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:597 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4478,7 +4478,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4512,7 +4512,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5720,7 +5720,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:564 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 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 " @@ -5730,7 +5730,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:592 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6280,7 +6280,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:553 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6949,7 +6949,7 @@ msgid "" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7144,7 +7144,7 @@ msgid "JIT SystemRegisters Off" msgstr "" #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:982 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 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." @@ -7732,7 +7732,7 @@ msgstr "" msgid "Maker:" msgstr "廠商:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:570 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8653,7 +8653,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:627 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" msgstr "" @@ -8972,7 +8972,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:633 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 msgid "Post-Processing Effect" msgstr "" @@ -9289,7 +9289,7 @@ msgstr "紅 左" msgid "Red Right" msgstr "紅 右" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10227,7 +10227,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11047,7 +11047,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:652 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11244,7 +11244,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:589 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11402,7 +11402,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" msgstr ""